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

org.opentripplanner.geocoder.google.GoogleGeocoderResult Maven / Gradle / Ivy

There is a newer version: 2.5.0
Show newest version
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 - 2024 Weber Informatics LLC | Privacy Policy