安卓; MapView,如何设置默认位置?
使用android中的MapView,如何设置默认位置,以便每次加载此应用程序时,它都会自动将位置集中/缩放到伦敦?
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?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
首先,获取给定地图的控制器:
然后调用:
这将在给定的 GeoPoint 上设置地图的中心。
请参阅 MapView 和 MapController 了解更多信息
Firstly, get the controller for the given map:
and then call:
This will set the center of the map on the given GeoPoint.
See docs for MapView and MapController for more info
对于新的 Google Maps API,您需要执行以下操作:
在
setUpMaps(GoogleMap googleMap)
内,您应该将相机移动到默认位置:For new Google Maps API you need to do this:
And inside
setUpMaps(GoogleMap googleMap)
you should move camera to your default location: