com.google.gwt.maps.client.maptypes
Interface TileUrlCallBack


public interface TileUrlCallBack


Method Summary
 String getTileUrl(Point point, int zoomLevel)
          Returns a string (URL) for given tile coordinate (x, y) and zoom level.
 

Method Detail

getTileUrl

String getTileUrl(Point point,
                  int zoomLevel)
Returns a string (URL) for given tile coordinate (x, y) and zoom level. This function should have a signature of: getTileUrl(Point, number):string

See MapTypes API Doc Something like can be done: "http://mt3.google.com/mapstt?zoom=" + zoomLevel + "&x=" + point.getX() + "&y=" + point.getY() + "&client=api";

Parameters:
point - x,y coordinates
zoomLevel - zoomLevel


Copyright © 2011-2013 GWT Maps API V3. All Rights Reserved.