org.opentripplanner.geocoder.google.GoogleGeocoderResult Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of otp Show documentation
Show all versions of otp Show documentation
The OpenTripPlanner multimodal journey planning system
package org.opentripplanner.geocoder.google;
public class GoogleGeocoderResult {
private Geometry geometry;
private String formatted_address;
public Geometry getGeometry() {
return geometry;
}
public void setGeometry(Geometry geometry) {
this.geometry = geometry;
}
public String getFormatted_address() {
return formatted_address;
}
public void setFormatted_address(String formattedAddress) {
formatted_address = formattedAddress;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy