Is there any way to implement zoomToSpan functionality in custom Maps in Android which is not Google Map. ?
Say I have a class M which extends surfaceView (I’m loading my custom map on the surfaceview), I have no functionality in my program to handle automatically set the zoomlevel accordingly when there are more than 10 markers. I want to set my zoomlevel accordingly.
Here i found one basic example of
Zoom and span on a cluster of points
http://www.anddev.org/zoom_and_span_on_a_cluster_of_points-t464.html
If u want to handle zoom controller , you should take one Timer which will check every 5 second your zoom level (Its works smiler like zoom control listener ).
Good Luck !!