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

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

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

public class Location {
	private Double lat;
	private Double lng;

	public Double getLat() {
		return lat;
	}
	public void setLat(Double lat) {
		this.lat = lat;
	}
	public Double getLng() {
		return lng;
	}
	public void setLng(Double lng) {
		this.lng = lng;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy