Package com.google.gwt.maps.client.impl.GeocoderImpl

Examples of com.google.gwt.maps.client.impl.GeocoderImpl.LocationsCallback


   *
   * @param address the address to search for.
   * @param callback methods to call when the query returns.
   */
  public void getLocations(String address, final LocationCallback callback) {
    GeocoderImpl.impl.getLocations(jsoPeer, address, new LocationsCallback() {
      @Override
      public void callback(Response response) {
        int statusCode = response.getStatus().getCode();
        if (statusCode == StatusCodes.SUCCESS) {
          JSList<Placemark> placemarkList = response.getPlacemarks();
View Full Code Here

TOP

Related Classes of com.google.gwt.maps.client.impl.GeocoderImpl.LocationsCallback

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.