如何在MapView上显示特定位置?

发布于 2024-11-11 18:00:01 字数 335 浏览 2 评论 0原文

我有一个位置,我需要显示它。格式如下:

lat: 59.915494, lng: 30.409456

我还需要显示用户的当前位置。以下代码:

    MyLocationOverlay myLocationOverlay = new MyLocationOverlay(this, mapView);
    mapView.getOverlays().add(myLocationOverlay); 
    myLocationOverlay.enableMyLocation(); 

不会将地图置于当前位置的中心。

I have a position, which I need to display. The format is like:

lat: 59.915494, lng: 30.409456

Also I need to display current position of the user. The following code:

    MyLocationOverlay myLocationOverlay = new MyLocationOverlay(this, mapView);
    mapView.getOverlays().add(myLocationOverlay); 
    myLocationOverlay.enableMyLocation(); 

doesn't center map on the current position.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

拥抱没勇气 2024-11-18 18:00:01

为了调整地图的中心位置或放大位置,您需要获取MapController

MapController controller = mMapView.getController();
controller.animateTo(geoPoint);
// Or if you just want it to snap there
controller.setCenter(geoPoint);

controller.setZoom(5); 

您想要显示的这一点需要添加一个Overlay。这是相关的文档,还有一个不错的教程了解如何执行此操作。

In order to adjust where the map is centered on or zoomed into you need to get the MapController.

MapController controller = mMapView.getController();
controller.animateTo(geoPoint);
// Or if you just want it to snap there
controller.setCenter(geoPoint);

controller.setZoom(5); 

That point that you want to show you're going to need to add an Overlay. Here is the documentation for that and a nice tutorial on how to do it.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文