Is it possible to control DefaultZoomIndicator? I use StoredMap. I write mapComponent.setZoomLevelIndicator(new DefaultZoomIndicator(13, 17)); but ZoomIndicator show all zoom(0-17). I only want to show zoom from 13 to 17.
The DefaultZoomIndicator assumes that you use same min/maxzoom values like for your map. Otherwise you would see broken indicator. Following is source of DefaultZoomIndicator.java, you can modify it in your own application.
The DefaultZoomIndicator assumes that you use same min/maxzoom values like for your map. Otherwise you would see broken indicator. Following is source of DefaultZoomIndicator.java, you can modify it in your own application.
/JaakL