From f66d407c43f5c4076707166711464302cc3b799c Mon Sep 17 00:00:00 2001 From: Dmitrij Koniajev Date: Sat, 5 Oct 2013 18:25:36 +0300 Subject: [PATCH] fixed getTileUrl method signature of ImageMapTypeOptions interface --- googlemaps/google.maps.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/googlemaps/google.maps.d.ts b/googlemaps/google.maps.d.ts index 4eef2d2cd..1bd9c491f 100644 --- a/googlemaps/google.maps.d.ts +++ b/googlemaps/google.maps.d.ts @@ -866,7 +866,7 @@ declare module google.maps { export interface ImageMapTypeOptions { alt?: string; - getTileUrl: (Point: number) => string; + getTileUrl: (tileCoord: Point, zoom: number) => string; maxZoom?: number; minZoom?: number; name?: string;