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?

link|improve this question

feedback

1 Answer

up vote 17 down vote accepted

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

link|improve this answer
Brilliant, just what I need. Thanks :) – James.Elsey Aug 30 '10 at 13:48
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.