org.osmdroid.api.IMapView Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of osmdroid-packager Show documentation
Show all versions of osmdroid-packager Show documentation
A tool to package OpenStreetMap tiles
The newest version!
package org.osmdroid.api;
/**
* An interface that resembles the Google Maps API MapView class
* and is implemented by the osmdroid {@link org.osmdroid.views.MapView} class.
*
* @author Neil Boyd
*
*/
public interface IMapView {
public static String LOGTAG="OsmDroid";
IMapController getController();
IProjection getProjection();
int getZoomLevel();
int getMaxZoomLevel();
int getLatitudeSpan();
int getLongitudeSpan();
IGeoPoint getMapCenter();
// some methods from View
// (well, just one for now)
void setBackgroundColor(int color);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy