Merge pull request #8486 from ChristianBeilschmidt/patch-1

Added method `getExtent` to ol.proj.Projection
This commit is contained in:
Masahiro Wakame
2016-03-12 01:20:19 +09:00
+3 -1
View File
@@ -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;
}
}