android 缩放地图查看像地图应用程序

发布于 2024-11-10 07:10:46 字数 155 浏览 1 评论 0原文

当我停止在地图视图上缩放(捏合缩放)时,缩放会继续,直到达到缩放级别,而 Google 地图应用程序会停止。 我想要有类似地图的行为。 我可以要那个吗? 谢谢

编辑:我可以有一个 onZoomListener 用于捏合缩放(如 ZoomsButtonscontroller)吗?

when I stop to zoom (pinch to zoom) on a mapView, the zoom continues until it reaches a zoom level whereas Google maps app stop.
I would like to have maps-like behavior.
Can I have that ?
thanks

edit : can i have an onZoomListener for pinch to zoom (like for zoomsButtonscontroller) ?

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

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

发布评论

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

评论(2

再可℃爱ぅ一点好了 2024-11-17 07:10:46

我不确定您到底想要什么,但这可能会帮助您: mapView.setBuiltInZoomControls(true);

来自文档:

设置是否启用内置缩放控件。如果启用,MapView 将自动显示这些缩放控件。

参数:
on - 是否启用内置缩放控件。如果为 false,客户端将处理显示缩放控件的 UI。

I'm not sure what you want exactly but this might help you: mapView.setBuiltInZoomControls(true);

From the documentation:

Sets whether to enable the built-in zoom controls. If enabled, the MapView will show these zoom controls automatically.

Parameters:
on - Whether the built-in zoom controls are enabled. If false, the client handles showing the UI for zoom controls.

等你爱我 2024-11-17 07:10:46
mapView = (MapView) findViewById(R.id.mapView);
mapView.setBuiltInZoomControls(true);

MapController mc;
mc = mapView.getController();

使用它你可能会得到你的解决方案。

mapView = (MapView) findViewById(R.id.mapView);
mapView.setBuiltInZoomControls(true);

MapController mc;
mc = mapView.getController();

Use it you may be got your solution.

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