From bb221faa3a2a4b5dad611711b4323e49b8d7b3c1 Mon Sep 17 00:00:00 2001 From: Gasperi <32667788+gasperiguillaume@users.noreply.github.com> Date: Fri, 27 Oct 2017 15:59:56 +0200 Subject: [PATCH] Add showLabels to GraticuleOptions interface --- types/openlayers/index.d.ts | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/types/openlayers/index.d.ts b/types/openlayers/index.d.ts index efb79ed942..3d62c4262c 100644 --- a/types/openlayers/index.d.ts +++ b/types/openlayers/index.d.ts @@ -14503,6 +14503,13 @@ declare module olx { maxLines?: number; strokeStyle?: ol.style.Stroke; targetSize?: number; + showLabels?: boolean; + lonLabelFormatter?: ((lon: number) => string); + latLabelFormatter?: ((lat: number) => string); + lonLabelPosition?: number; + latLabelPosition?: number; + lonLabelStyle?: ol.style.Text; + latLabelStyle?: ol.style.Text; }