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

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

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