Is there a way to always show the zoom controls on a MapView? I have added the zoom controls using
map=(MapView)findViewById(R.id.map);
map.setBuiltInZoomControls(true);
but the zoom controls fade in and out. I want them to always be visible.
|
|
|
|
|
|
|
Solved this by putting my own ZoomControls in my layout xml:
and then setting up onClickListeners for then to handle the zoom:
|
||
|
|