All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.schoellerfamily.geoservice.geocoder.GeoCoder Maven / Gradle / Ivy

There is a newer version: 1.3.0-RC2
Show newest version
package org.schoellerfamily.geoservice.geocoder;

import com.google.maps.model.GeocodingResult;

/**
 * This interface defines the standard wrapper around a geocoder. The current
 * presumed behavior is to return a result in Google's Geocoding API format.
 *
 * @author Dick Schoeller
 */
public interface GeoCoder {
    /**
     * Request the geocode from Google.
     *
     * @param placeName the place name to find
     * @return the geo-coding result
     */
    GeocodingResult[] geocode(String placeName);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy