Follow us on GitHub

com.google.gwt.maps.client.services
Class GeocoderRequest

java.lang.Object
  extended by com.google.gwt.core.client.JavaScriptObject
      extended by com.google.gwt.maps.client.services.GeocoderRequest

public class GeocoderRequest
extends JavaScriptObject

The specification for a geocoding request to be sent to the Geocoder.

See GeocoderRequest API Doc


Constructor Summary
protected GeocoderRequest()
          use newInstance();
 
Method Summary
 String getAddress()
          Address.
 LatLngBounds getBounds()
          LatLngBounds within which to search.
 LatLng getLocation()
          LatLng about which to search.
 String getRegion()
          Country code top-level domain within which to search.
static GeocoderRequest newInstance()
          The specification for a geocoding request to be sent to the Geocoder.
 void setAddress(String address)
          Address.
 void setBounds(LatLngBounds bounds)
          LatLngBounds within which to search.
 void setLocation(LatLng location)
          LatLng about which to search.
 void setRegion(String region)
          Country code top-level domain within which to search.
 
Methods inherited from class com.google.gwt.core.client.JavaScriptObject
cast, createArray, createFunction, createObject, equals, hashCode, toSource, toString
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
 

Constructor Detail

GeocoderRequest

protected GeocoderRequest()
use newInstance();

Method Detail

newInstance

public static final GeocoderRequest newInstance()
The specification for a geocoding request to be sent to the Geocoder.


setAddress

public final void setAddress(String address)
Address. Optional.

Parameters:
address -

getAddress

public final String getAddress()
Address. Optional.


setBounds

public final void setBounds(LatLngBounds bounds)
LatLngBounds within which to search. Optional.

Parameters:
bounds -

getBounds

public final LatLngBounds getBounds()
LatLngBounds within which to search. Optional.


setLocation

public final void setLocation(LatLng location)
LatLng about which to search. Optional.

Parameters:
location -

getLocation

public final LatLng getLocation()
LatLng about which to search. Optional.


setRegion

public final void setRegion(String region)
Country code top-level domain within which to search. Optional.

Parameters:
region -

getRegion

public final String getRegion()
Country code top-level domain within which to search. Optional.



Follow us on GitHub

Copyright © 2011-2012 Gone Vertical LLC. All Rights Reserved.