Updated "google.maps.geometry.poly" to static

The 'poly' class should be static (as already correctly marked on the 'spherical' class).
This commit is contained in:
Simon Lovely
2014-09-22 18:08:22 +01:00
parent b0b4af1223
commit b4571c30c2
+2 -2
View File
@@ -1263,8 +1263,8 @@ declare module google.maps {
}
export class poly {
containsLocation(point: LatLng, polygon: Polygon): boolean;
isLocationOnEdge(point: LatLng, poly: any, tolerance?: number): boolean;
static containsLocation(point: LatLng, polygon: Polygon): boolean;
static isLocationOnEdge(point: LatLng, poly: any, tolerance?: number): boolean;
}
}