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

org.opentripplanner.geocoder.GeocoderNullImpl Maven / Gradle / Ivy

There is a newer version: 2.5.0
Show newest version
package org.opentripplanner.geocoder;

import org.locationtech.jts.geom.Envelope;

public class GeocoderNullImpl implements Geocoder {
    
    static final String ERROR_MSG = "no geocoder configured";
    
    @Override
    public GeocoderResults geocode(String address, Envelope bbox) {
        return new GeocoderResults(ERROR_MSG);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy