如何在 Android MapView 中禁用捏合功能

发布于 2024-10-11 01:11:49 字数 40 浏览 4 评论 0原文

如何禁用 Android MapView 中的捏合或多点触控功能?

How can you disable pinch or multitouch functionality in an Android MapView?

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

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

发布评论

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

评论(4

一杯敬自由 2024-10-18 01:11:50

禁用所有手势:

mapView.getMap().getUiSettings().setAllGesturesEnabled(false);

仅禁用缩放

mapView.getMap().getUiSettings().setZoomControlsEnabled(false);

Disable all Gestures:

mapView.getMap().getUiSettings().setAllGesturesEnabled(false);

Disable just Zoom

mapView.getMap().getUiSettings().setZoomControlsEnabled(false);
只是我以为 2024-10-18 01:11:50

我花了一点时间,但我有一个解决方案。我所做的是,如果超过一根手指触摸屏幕,则停止事件传播。

mapView.setOnTouchListener(new OnTouchListener() {
        public boolean onTouch(View v, MotionEvent event) {
            if(event.getPointerCount() > 1) {
                return true;
            }
            return false;
        }
    });

It took me a little time but I have a solution for this. What I did is stop the event propagation if more than one finger is touching the screen.

mapView.setOnTouchListener(new OnTouchListener() {
        public boolean onTouch(View v, MotionEvent event) {
            if(event.getPointerCount() > 1) {
                return true;
            }
            return false;
        }
    });
心碎无痕… 2024-10-18 01:11:50
final UiSettings uiSettings = map.getUiSettings();
uiSettings.setZoomControlsEnabled(true);
uiSettings.setZoomGesturesEnabled(false);
final UiSettings uiSettings = map.getUiSettings();
uiSettings.setZoomControlsEnabled(true);
uiSettings.setZoomGesturesEnabled(false);
临风闻羌笛 2024-10-18 01:11:50

这里有一个欺骗缩放的小技巧:P(设置缩放级别并设置与 maxZoom 相同的级别

var myOptions1 = { 
            //Coordinates of the map's center
            center: new google.maps.LatLng(152,125), 
            //Zoom level
            zoom: 15, // or any level of zoom you want to preload your map
            maxZoom:15 // same as the zoom value makes sure the map is not zoomed,

//其他选项根据您的要求

Here is a little trick to fool pinch zoom :P (set a Zoom level and set the same level as maxZoom

var myOptions1 = { 
            //Coordinates of the map's center
            center: new google.maps.LatLng(152,125), 
            //Zoom level
            zoom: 15, // or any level of zoom you want to preload your map
            maxZoom:15 // same as the zoom value makes sure the map is not zoomed,

//Other options are as per your requirements

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