From 183edda70ef2bd19d749bd1e53b5a1f460c6b33d Mon Sep 17 00:00:00 2001 From: donghongyu Date: Tue, 15 Feb 2022 20:08:22 +0800 Subject: [PATCH] =?UTF-8?q?[Change]=20=E5=8D=87=E7=BA=A7=E9=AB=98=E7=B2=BE?= =?UTF-8?q?=E5=9C=B0=E5=9B=BE=E7=89=88=E6=9C=AC=EF=BC=8C=E5=8E=BB=E6=8E=89?= =?UTF-8?q?=E5=85=89=E6=B3=A2=E6=95=88=E6=9E=9C=EF=BC=8C=E5=8D=A0=E7=94=A8?= =?UTF-8?q?=E5=86=85=E5=AD=98=E8=BF=87=E5=A4=A7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: donghongyu --- gradle.properties | 2 +- .../main/java/com/mogo/map/impl/custom/AMapViewWrapper.java | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/gradle.properties b/gradle.properties index 797e015c01..f60602ebe5 100644 --- a/gradle.properties +++ b/gradle.properties @@ -80,7 +80,7 @@ MOGO_TRAFFICLIVE_VERSION=1.3.18 MOGO_LOCATION_VERSION=1.3.18 ######## MogoAiCloudSDK Version ######## # 自研地图 -MAP_SDK_VERSION=2.0.0.24 +MAP_SDK_VERSION=2.0.1 MAP_SDK_OPERATION_VERSION=1.0.11 # websocket WEBSOCKET_VERSION=1.1.7 diff --git a/libraries/map-custom/src/main/java/com/mogo/map/impl/custom/AMapViewWrapper.java b/libraries/map-custom/src/main/java/com/mogo/map/impl/custom/AMapViewWrapper.java index a6e0ea23b6..ba15a9157a 100644 --- a/libraries/map-custom/src/main/java/com/mogo/map/impl/custom/AMapViewWrapper.java +++ b/libraries/map-custom/src/main/java/com/mogo/map/impl/custom/AMapViewWrapper.java @@ -131,9 +131,9 @@ public class AMapViewWrapper implements IMogoMapView, //设置手势是否可以缩放 isCanZoom true 可缩放 false 不可缩放 options.setZoomGesturesEnabled(true); options.setScaleVRMode(true); -// if (options.getMyLocationStyle() != null) { -// options.getMyLocationStyle().setDisplayAnimEnable(false); -// } + if (options.getMyLocationStyle() != null) { + options.getMyLocationStyle().setDisplayAnimEnable(false); + } // 设置自车的图片对象 //options.setMyLocationStyle(options.getMyLocationStyle().myLocationIcon(DEFAULT_OPTION.getCarCursorRes())); }