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

org.osmdroid.api.IGeoPoint Maven / Gradle / Ivy

There is a newer version: 5.2
Show newest version
package org.osmdroid.api;

/**
 * An interface that resembles the Google Maps API GeoPoint class.
 */
public interface IGeoPoint {
	int getLatitudeE6();
	int getLongitudeE6();
	double getLatitude();
	double getLongitude();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy