From acef51322616b0aef982d3e97ce5697332a5d125 Mon Sep 17 00:00:00 2001 From: zhongchao Date: Mon, 20 Nov 2023 12:05:14 +0800 Subject: [PATCH] [6.2.0]close the mapview gesture --- .../main/java/com/mogo/eagle/core/function/view/MapBizView.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/function-impl/mogo-core-function-map/src/main/java/com/mogo/eagle/core/function/view/MapBizView.kt b/core/function-impl/mogo-core-function-map/src/main/java/com/mogo/eagle/core/function/view/MapBizView.kt index 157bd466c8..9c43535bfb 100644 --- a/core/function-impl/mogo-core-function-map/src/main/java/com/mogo/eagle/core/function/view/MapBizView.kt +++ b/core/function-impl/mogo-core-function-map/src/main/java/com/mogo/eagle/core/function/view/MapBizView.kt @@ -63,7 +63,7 @@ class MapBizView(context: Context?, attrs: AttributeSet?) : MogoMapView(context, //设置缩放按钮是否可见。 it.setZoomControlsEnabled(false) //设置双指缩放手势是否可用。 - it.setZoomGesturesEnabled(true) + it.setZoomGesturesEnabled(false) } }