From b4571c30c2c1402cffab00f2db0420c69408f1d0 Mon Sep 17 00:00:00 2001 From: Simon Lovely Date: Mon, 22 Sep 2014 18:08:22 +0100 Subject: [PATCH] Updated "google.maps.geometry.poly" to static The 'poly' class should be static (as already correctly marked on the 'spherical' class). --- googlemaps/google.maps.d.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/googlemaps/google.maps.d.ts b/googlemaps/google.maps.d.ts index 27275f098..cf51d84c1 100644 --- a/googlemaps/google.maps.d.ts +++ b/googlemaps/google.maps.d.ts @@ -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; } }