gpt4 book ai didi

android - 限制滚动和缩放 Google Maps Android API v2

转载 作者:IT老高 更新时间:2023-10-28 23:29:19 27 4
gpt4 key购买 nike

我已添加 GroundOverlay映射并希望限制此区域内的滚动和缩放。

如何在 android 谷歌地图的某些范围内限制滚动?

是否可以从 MapFragment 中即时获取运动点?

请帮帮我。

最佳答案

Google Play Services 9.4 版本中(终于!)添加了限制相机功能——您可以调用 setLatLngBoundsForCameraTarget(LatLngBounds bounds)设置允许的平移区域。

// Create a LatLngBounds that includes the city of Adelaide in Australia.
final LatLngBounds ADELAIDE = new LatLngBounds(
new LatLng(-35.0, 138.58), new LatLng(-34.9, 138.61));

// Constrain the camera target to the Adelaide bounds.
mMap.setLatLngBoundsForCameraTarget(ADELAIDE);

您可以在文档中找到详尽的解释:Restricting the user's panning to a given areasample activity in GitHub .

关于android - 限制滚动和缩放 Google Maps Android API v2,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14977078/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com