Merge pull request #1115 from dimchansky/google-maps-fix

fixed getTileUrl method signature of ImageMapTypeOptions interface
This commit is contained in:
basarat
2013-10-05 09:11:35 -07:00
+1 -1
View File
@@ -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;