I want to save the actual zoom level in the shared preferences, so that the map is created with the last settings.
I set the zoom level with:
mapView.setZoomLevel((byte) 12);
I add an InputListener with a callback-method in case of a zoom event
mapView.addInputListener(new InputListener() {
@Override
public void onZoomEvent() {
...
}
But how do I get the actual ZoomLevel?
Thank's a lot for your help.