org.osmdroid.api.IGeoPoint Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of osmdroid-android Show documentation
Show all versions of osmdroid-android Show documentation
An Android library to display OpenStreetMap views.
package org.osmdroid.api;
import org.osmdroid.util.GeoPoint;
/**
* An interface that resembles the Google Maps API GeoPoint class
* and is implemented by the osmdroid {@link GeoPoint} class.
*
* @author Neil Boyd
*
*/
public interface IGeoPoint {
int getLatitudeE6();
int getLongitudeE6();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy