com.google.gwt.maps.client.geocode
Interface LatLngCallback


public interface LatLngCallback

Used as an argument to Geocoder.getLatLng(String,LatLngCallback).


Method Summary
 void onFailure()
          Invoked when the geocoding call fails.
 void onSuccess(LatLng point)
          Invoked when the geocoding call succeeds.
 

Method Detail

onFailure

void onFailure()
Invoked when the geocoding call fails.


onSuccess

void onSuccess(LatLng point)
Invoked when the geocoding call succeeds.

Parameters:
point - the point returned from the Google geocoder server.