Issue
Using the MapView in android, how can I set a default location, so that everytime I load up this application, it automatically centers/zooms location in on London?
Solution
Firstly, get the controller for the given map:
MapController myMapController = myMapView.getController();
and then call:
myMapController.setCenter(new GeoPoint())
This will set the center of the map on the given GeoPoint.
See docs for MapView and MapController for more info
Answered By - matekm
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.