com.google.maps.gwt.client
Class MaxZoomService

java.lang.Object
  extended by JavaScriptObject
      extended by com.google.maps.gwt.client.MaxZoomService

public class MaxZoomService
extends JavaScriptObject

A service for obtaining the highest zoom level at which satellite imagery is available for a given location. THIS SOURCE CODE IS GENERATED, DO NOT MODIFY


Nested Class Summary
static interface MaxZoomService.Callback
          Callback type for handling asynchronous responses from getMaxZoomAtLatLng.
 
Constructor Summary
protected MaxZoomService()
          Protected constructor avoids default public constructor.
 
Method Summary
static MaxZoomService create()
          Creates a new instance of a MaxZoomService that can be used to send queries about the maximum zoom level available for satellite imagery.
 void getMaxZoomAtLatLng(LatLng latlng, MaxZoomService.Callback callback)
          Returns the maximum zoom level available at a particular LatLng for the Satellite map type.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

MaxZoomService

protected MaxZoomService()
Protected constructor avoids default public constructor.

Method Detail

create

public static MaxZoomService create()
Creates a new instance of a MaxZoomService that can be used to send queries about the maximum zoom level available for satellite imagery.


getMaxZoomAtLatLng

public final void getMaxZoomAtLatLng(LatLng latlng,
                                     MaxZoomService.Callback callback)
Returns the maximum zoom level available at a particular LatLng for the Satellite map type. As this request is asynchronous, you must pass a callback function which will be executed upon completion of the request, being passed a MaxZoomResult .