From 9efdd51da471ca25f64531a689f47126e662991c Mon Sep 17 00:00:00 2001 From: Christian Beilschmidt Date: Thu, 10 Mar 2016 17:08:59 +0100 Subject: [PATCH] Added method `getExtent` to ol.proj.Projection --- openlayers/openlayers.d.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/openlayers/openlayers.d.ts b/openlayers/openlayers.d.ts index f16b21fa10..1d4d55cede 100644 --- a/openlayers/openlayers.d.ts +++ b/openlayers/openlayers.d.ts @@ -4051,7 +4051,9 @@ declare module ol { function transformExtent(extent: Extent, source: ProjectionLike, destination: ProjectionLike): Extent; class Projection { - constructor(options: olx.Projection) + constructor(options: olx.Projection); + + getExtent(): Extent; } }