diff --git a/modules/mogo-module-common/src/main/java/com/mogo/module/common/entity/V2XPushMessageEntity.java b/modules/mogo-module-common/src/main/java/com/mogo/module/common/entity/V2XPushMessageEntity.java index dbcd153c22..1ae810cffc 100644 --- a/modules/mogo-module-common/src/main/java/com/mogo/module/common/entity/V2XPushMessageEntity.java +++ b/modules/mogo-module-common/src/main/java/com/mogo/module/common/entity/V2XPushMessageEntity.java @@ -48,6 +48,8 @@ public class V2XPushMessageEntity implements Serializable { private List polyline; + private List moveTrack; + public int getViewType() { return viewType; } @@ -279,6 +281,14 @@ public class V2XPushMessageEntity implements Serializable { this.polyline = polyline; } + public List getMoveTrack() { + return moveTrack; + } + + public void setMoveTrack(List moveTrack) { + this.moveTrack = moveTrack; + } + @Override public boolean equals(Object o) { if (this == o) { diff --git a/modules/mogo-module-v2x/src/main/java/com/mogo/module/v2x/marker/V2XMarkerAdapter.java b/modules/mogo-module-v2x/src/main/java/com/mogo/module/v2x/marker/V2XMarkerAdapter.java index 4e17b03803..443a466bed 100644 --- a/modules/mogo-module-v2x/src/main/java/com/mogo/module/v2x/marker/V2XMarkerAdapter.java +++ b/modules/mogo-module-v2x/src/main/java/com/mogo/module/v2x/marker/V2XMarkerAdapter.java @@ -5,8 +5,11 @@ import android.graphics.Bitmap; import com.mogo.module.common.entity.MarkerShowEntity; import com.mogo.module.common.entity.V2XPoiTypeEnum; +import com.mogo.module.common.entity.V2XPushMessageEntity; import com.mogo.module.common.entity.V2XRoadEventEntity; import com.mogo.module.v2x.R; +import com.mogo.module.v2x.utils.ImageUtil; +import com.mogo.module.v2x.utils.V2XUtils; import java.util.ArrayList; @@ -146,4 +149,39 @@ public class V2XMarkerAdapter { } } + + /** + * TODO 都是模拟数据 + * 获取VR道路事件 + */ + public static Bitmap getV2XVRRoadEventViewPng(V2XPushMessageEntity alarmMessage) { + Bitmap bitmap = ImageUtil.createBitmap(V2XUtils.getApp(), + R.drawable.v2x_vr_ziche); + switch (alarmMessage.getSceneId()) { + case "200001"://后方VIP车辆提示 + bitmap = ImageUtil.createBitmap(V2XUtils.getApp(), + R.drawable.v2x_duixiang_laiche_che); + break; + case "200002"://前车急刹 + break; + case "200003"://后方危险车辆预警 + break; + case "200004"://逆向车辆路线预判 + bitmap = ImageUtil.createBitmap(V2XUtils.getApp(), + R.drawable.v2x_duixiang_laiche_che); + break; + case "200005"://VIP变灯通行 + break; + case "200006"://障碍物绕行 + break; + case "200007"://行人预警,行人路线预测 + break; + case "200008"://拥堵路线推荐 + break; + case "200009"://双闪车辆,自动绕行 + break; + } + + return bitmap; + } } diff --git a/modules/mogo-module-v2x/src/main/java/com/mogo/module/v2x/scenario/scene/pushVR/V2XPushVREventMarker.java b/modules/mogo-module-v2x/src/main/java/com/mogo/module/v2x/scenario/scene/pushVR/V2XPushVREventMarker.java index 06f4f4cea3..2b180bda09 100644 --- a/modules/mogo-module-v2x/src/main/java/com/mogo/module/v2x/scenario/scene/pushVR/V2XPushVREventMarker.java +++ b/modules/mogo-module-v2x/src/main/java/com/mogo/module/v2x/scenario/scene/pushVR/V2XPushVREventMarker.java @@ -1,18 +1,26 @@ package com.mogo.module.v2x.scenario.scene.pushVR; +import android.util.Log; + import com.mogo.map.MogoLatLng; +import com.mogo.map.marker.IMogoMarker; +import com.mogo.map.marker.MogoMarkerOptions; import com.mogo.map.overlay.IMogoPolyline; import com.mogo.map.overlay.MogoPolylineOptions; import com.mogo.module.common.entity.V2XPushMessageEntity; import com.mogo.module.v2x.V2XConst; import com.mogo.module.v2x.V2XServiceManager; +import com.mogo.module.v2x.marker.V2XMarkerAdapter; import com.mogo.module.v2x.scenario.view.IV2XMarker; import com.mogo.module.v2x.utils.MarkerUtils; import com.mogo.utils.logger.Logger; import java.util.ArrayList; +import java.util.LinkedList; import java.util.List; +import static com.mogo.module.v2x.V2XConst.V2X_EVENT_ALARM_POI; + /** * author : donghongyu * e-mail : 1358506549@qq.com @@ -25,6 +33,10 @@ public class V2XPushVREventMarker implements IV2XMarker { private static IMogoPolyline mMogoPolyline; + // 上次的道路事件的预警Marker + private static IMogoMarker mAlarmInfoMarker; + + @Override public void drawPOI(V2XPushMessageEntity entity) { Logger.w(V2XConst.MODULE_NAME + "_" + TAG, "drawPOI 绘制VR Marker"); @@ -38,31 +50,62 @@ public class V2XPushVREventMarker implements IV2XMarker { mMogoPolyline.remove(); } - // 连接线参数 - MogoPolylineOptions options = new MogoPolylineOptions(); - - // 渐变色 - List colors = new ArrayList<>(); - colors.add(0xFFFA8C34); - colors.add(0xFFBD6D36); - colors.add(0xFFFA8C34); - - // 线条粗细,渐变,渐变色值 - options.width(10).useGradient(true).colorValues(colors); - - for (double[] doubles : entity.getPolyline()) { - options.add(doubles[0],doubles[1]); - } - - // 绘制线的对象 - mMogoPolyline = V2XServiceManager.getMogoOverlayManager().addPolyline(options); - + // 道路事件,或者水波纹扩散效果 + MogoMarkerOptions optionsRipple = new MogoMarkerOptions() + .object(entity) + .latitude(entity.getLat()) + .longitude(entity.getLon()); + optionsRipple.anchor(0.5f, 0.5f); + optionsRipple.icon(V2XMarkerAdapter.getV2XVRRoadEventViewPng(entity)); + mAlarmInfoMarker = V2XServiceManager.getMarkerManager().addMarker(V2X_EVENT_ALARM_POI, optionsRipple); + moveTrack(entity); +// drawablePloyLine(entity); } catch (Exception e) { e.printStackTrace(); } } + /* + 平滑移动 + * */ + void moveTrack(V2XPushMessageEntity entity) { + List points = new ArrayList(); + List polylines = entity.getMoveTrack(); + for (int i = 0; i < polylines.size(); i++) { + try { + double[] latlonList = polylines.get(i); + MogoLatLng latLng = new MogoLatLng(latlonList[1], latlonList[0]); + points.add(latLng); + } catch (Exception e) { + e.printStackTrace(); + } + } + Log.d("平滑移动经纬度=====",points.toString()); + mAlarmInfoMarker.startSmooth(points, 1); + } + + void drawablePloyLine(V2XPushMessageEntity entity) { + // 连接线参数 + MogoPolylineOptions options = new MogoPolylineOptions(); + + // 渐变色 + List colors = new ArrayList<>(); + colors.add(0xFFFA8C34); + colors.add(0xFFBD6D36); + colors.add(0xFFFA8C34); + + // 线条粗细,渐变,渐变色值 + options.width(10).useGradient(true).colorValues(colors); + + for (double[] doubles : entity.getPolyline()) { + options.add(doubles[0], doubles[1]); + } + + // 绘制线的对象 + mMogoPolyline = V2XServiceManager.getMogoOverlayManager().addPolyline(options); + } + @Override public void clearPOI() { // 锁车就是将地图视图移植中心点,因为行驶中的车和地图要相对的跟随 @@ -70,11 +113,17 @@ public class V2XPushVREventMarker implements IV2XMarker { // 移除线 clearLine(); // 移除事件POI - V2XServiceManager.getMoGoV2XMarkerManager().clearAlarmPOI(); + clearAlarmPOI(); // 绘制上次的数据 V2XServiceManager.getMoGoV2XMarkerManager().drawableLastAllPOI(); } + void clearAlarmPOI() { + if (mAlarmInfoMarker != null) { + mAlarmInfoMarker.remove(); + } + } + public void clearLine() { if (mMogoPolyline != null) { mMogoPolyline.remove(); diff --git a/modules/mogo-module-v2x/src/main/java/com/mogo/module/v2x/scenario/scene/pushVR/V2XPushVREventWindow.java b/modules/mogo-module-v2x/src/main/java/com/mogo/module/v2x/scenario/scene/pushVR/V2XPushVREventWindow.java index 168cb90ec7..3efb61a229 100644 --- a/modules/mogo-module-v2x/src/main/java/com/mogo/module/v2x/scenario/scene/pushVR/V2XPushVREventWindow.java +++ b/modules/mogo-module-v2x/src/main/java/com/mogo/module/v2x/scenario/scene/pushVR/V2XPushVREventWindow.java @@ -42,7 +42,7 @@ public class V2XPushVREventWindow implements IV2XWindow { IMogoEntranceButtonController.NOTICE_TYPE_CONGESTION_RECOMMENDED, R.drawable.module_v2x_left_notice_seek_help, entity.getAlarmContent()); - countDownV2XEvent(); + //countDownV2XEvent(); } /** diff --git a/modules/mogo-module-v2x/src/main/java/com/mogo/module/v2x/utils/ImageUtil.java b/modules/mogo-module-v2x/src/main/java/com/mogo/module/v2x/utils/ImageUtil.java index 76ba3e4c03..fdf8a1e931 100644 --- a/modules/mogo-module-v2x/src/main/java/com/mogo/module/v2x/utils/ImageUtil.java +++ b/modules/mogo-module-v2x/src/main/java/com/mogo/module/v2x/utils/ImageUtil.java @@ -75,4 +75,16 @@ public class ImageUtil { } return bitmap; } + + + + public static Bitmap createBitmap(Context context, int resId) { + if (resId != 0) { + BitmapFactory.Options opts = new BitmapFactory.Options(); + BitmapFactory.decodeResource(context.getResources(), resId, opts); + Bitmap bitmap = BitmapFactory.decodeResource(context.getResources(), resId, opts); + return bitmap; + } + return null; + } } diff --git a/modules/mogo-module-v2x/src/main/res/drawable-xhdpi/v2x_duixiang_laiche_che.png b/modules/mogo-module-v2x/src/main/res/drawable-xhdpi/v2x_duixiang_laiche_che.png new file mode 100644 index 0000000000..28102482f0 Binary files /dev/null and b/modules/mogo-module-v2x/src/main/res/drawable-xhdpi/v2x_duixiang_laiche_che.png differ diff --git a/modules/mogo-module-v2x/src/main/res/drawable-xhdpi/v2x_duixiang_laiche_che_xian.png b/modules/mogo-module-v2x/src/main/res/drawable-xhdpi/v2x_duixiang_laiche_che_xian.png new file mode 100644 index 0000000000..c07da97430 Binary files /dev/null and b/modules/mogo-module-v2x/src/main/res/drawable-xhdpi/v2x_duixiang_laiche_che_xian.png differ diff --git a/modules/mogo-module-v2x/src/main/res/drawable-xhdpi/v2x_duixiang_laiche_xian.png b/modules/mogo-module-v2x/src/main/res/drawable-xhdpi/v2x_duixiang_laiche_xian.png new file mode 100644 index 0000000000..4d3cc1c5bc Binary files /dev/null and b/modules/mogo-module-v2x/src/main/res/drawable-xhdpi/v2x_duixiang_laiche_xian.png differ diff --git a/modules/mogo-module-v2x/src/main/res/drawable-xhdpi/v2x_vr_ziche.png b/modules/mogo-module-v2x/src/main/res/drawable-xhdpi/v2x_vr_ziche.png new file mode 100644 index 0000000000..01f991d7f7 Binary files /dev/null and b/modules/mogo-module-v2x/src/main/res/drawable-xhdpi/v2x_vr_ziche.png differ diff --git a/modules/mogo-module-v2x/src/main/res/raw/scenario_push_vr_barrier_data.json b/modules/mogo-module-v2x/src/main/res/raw/scenario_push_vr_barrier_data.json index fac7805719..bbd2ffbf66 100644 --- a/modules/mogo-module-v2x/src/main/res/raw/scenario_push_vr_barrier_data.json +++ b/modules/mogo-module-v2x/src/main/res/raw/scenario_push_vr_barrier_data.json @@ -17,412 +17,562 @@ "msgImgUrl": "", "polyline": [ [ - 116.725092, - 40.195204 + 116.725091, + 40.195123 ], [ - 116.725192, - 40.195205 + 116.725335, + 40.195123 ], [ - 116.725374, - 40.195202 + 116.725499, + 40.195123 ], [ - 116.725656, - 40.195194 + 116.72602, + 40.195109 ], [ - 116.725873, - 40.195188 + 116.726235, + 40.195106 ], [ - 116.726119, - 40.195184 + 116.726424, + 40.195105 ], [ - 116.726315, - 40.195181 + 116.726658, + 40.195104 ], [ - 116.726492, - 40.195179 + 116.726733, + 40.195105 ], [ - 116.726736, - 40.195178 + 116.72688, + 40.195106 ], [ - 116.726953, - 40.195182 + 116.72704, + 40.195109 ], [ - 116.727076, - 40.195185 + 116.727217, + 40.195115 ], [ - 116.727301, - 40.195196 + 116.727388, + 40.195124 ], [ - 116.727433, - 40.195206 + 116.727562, + 40.195136 ], [ - 116.727599, - 40.195221 + 116.727735, + 40.195155 ], [ - 116.727794, - 40.195243 + 116.727887, + 40.195174 ], [ - 116.728016, - 40.195272 + 116.727979, + 40.195186 ], [ - 116.728172, - 40.195297 + 116.728056, + 40.195198 ], [ - 116.728324, - 40.195324 + 116.728165, + 40.195216 ], [ - 116.728466, - 40.195351 + 116.728237, + 40.195228 ], [ - 116.728619, - 40.195383 + 116.728345, + 40.195247 ], [ - 116.728767, + 116.728411, + 40.19526 + ], + [ + 116.728533, + 40.195283 + ], + [ + 116.728589, + 40.195295 + ], + [ + 116.728694, + 40.195318 + ], + [ + 116.728761, + 40.195334 + ], + [ + 116.728868, + 40.19536 + ], + [ + 116.728918, + 40.195372 + ], + [ + 116.729088, 40.195416 ], [ - 116.72892, - 40.195454 + 116.729262, + 40.195462 ], [ - 116.729009, - 40.195477 + 116.729424, + 40.195512 ], [ - 116.729176, - 40.195522 + 116.729547, + 40.195553 ], [ - 116.729344, - 40.195571 + 116.729584, + 40.195566 ], [ - 116.729479, - 40.195614 + 116.729692, + 40.195606 ], [ - 116.729604, - 40.195658 + 116.729739, + 40.195624 ], [ - 116.729719, - 40.1957 + 116.729844, + 40.195661 ], [ - 116.729827, - 40.195741 + 116.730011, + 40.195726 ], [ - 116.729936, - 40.195785 + 116.73014, + 40.195778 ], [ - 116.730072, - 40.195841 + 116.730309, + 40.195849 ], [ - 116.730205, - 40.195895 + 116.730467, + 40.195911 ], [ - 116.730344, - 40.19595 + 116.730608, + 40.195962 ], [ - 116.730542, - 40.196022 + 116.730673, + 40.195984 ], [ - 116.730609, - 40.196047 + 116.730766, + 40.196015 ], [ - 116.730668, - 40.196067 + 116.730831, + 40.196036 ], [ - 116.730754, - 40.196096 + 116.730935, + 40.196069 ], [ - 116.730821, - 40.196117 + 116.730993, + 40.196087 ], [ - 116.730886, - 40.196138 + 116.731086, + 40.196113 ], [ - 116.730943, - 40.196156 + 116.731164, + 40.196135 ], [ - 116.731011, - 40.196175 + 116.731285, + 40.196165 ], [ - 116.73107, - 40.196192 + 116.731315, + 40.196173 ], [ - 116.731143, - 40.196213 + 116.731434, + 40.196202 ], [ - 116.731221, - 40.196233 + 116.731486, + 40.196214 ], [ - 116.731297, + 116.731586, + 40.196238 + ], + [ + 116.731652, 40.196253 ], [ - 116.731353, - 40.196266 + 116.731749, + 40.196273 ], [ - 116.731432, - 40.196285 + 116.731818, + 40.196287 ], [ - 116.731506, - 40.196303 + 116.731924, + 40.196305 ], [ - 116.731568, + 116.731991, 40.196317 ], [ - 116.731661, - 40.196337 + 116.732108, + 40.196336 ], [ - 116.731725, - 40.19635 + 116.732269, + 40.196361 ], [ - 116.731767, - 40.196358 + 116.732333, + 40.19637 ], [ - 116.731845, - 40.196373 + 116.732464, + 40.196385 ], [ - 116.731925, - 40.196387 + 116.732507, + 40.19639 ], [ - 116.73199, - 40.196398 + 116.732628, + 40.196404 ], [ - 116.732075, - 40.196412 + 116.732678, + 40.196409 ], [ - 116.732153, + 116.732784, + 40.196418 + ], + [ + 116.732851, 40.196424 ], [ - 116.732215, + 116.732985, 40.196433 ], [ - 116.732295, + 116.73314, + 40.196439 + ], + [ + 116.733198, + 40.196441 + ], + [ + 116.733379, + 40.196445 + ], + [ + 116.733548, + 40.196445 + ], + [ + 116.733722, + 40.196445 + ], + [ + 116.733903, + 40.196445 + ], + [ + 116.734081, + 40.196447 + ], + [ + 116.734251, + 40.196446 + ], + [ + 116.734439, + 40.196445 + ], + [ + 116.734624, 40.196444 ], [ - 116.732376, - 40.196454 + 116.734805, + 40.196442 ], [ - 116.732431, - 40.196461 + 116.734982, + 40.196442 ], [ - 116.732529, - 40.196472 + 116.735164, + 40.196441 ], [ - 116.73263, - 40.196483 + 116.735329, + 40.19644 ], [ - 116.732725, - 40.196492 + 116.735519, + 40.196438 ], [ - 116.732821, - 40.196501 + 116.735682, + 40.196437 ], [ - 116.732925, - 40.196509 + 116.735855, + 40.196437 ], [ - 116.733004, - 40.196514 + 116.736034, + 40.196436 ], [ - 116.733108, - 40.19652 + 116.73621, + 40.196435 ], [ - 116.733176, - 40.196523 + 116.736385, + 40.196433 ], [ - 116.733262, - 40.196526 + 116.736566, + 40.196433 ], [ - 116.733334, - 40.196527 + 116.736742, + 40.196431 ], [ - 116.733436, - 40.196528 + 116.736926, + 40.196431 ], [ - 116.733603, - 40.196529 + 116.737046, + 40.19643 ], [ - 116.733728, - 40.196528 + 116.737173, + 40.19643 ], [ - 116.733865, - 40.196527 + 116.737298, + 40.196429 ], [ - 116.733986, - 40.196526 + 116.737449, + 40.196427 ], [ - 116.734142, - 40.196525 + 116.737582, + 40.196427 ], [ - 116.734229, - 40.196524 + 116.737662, + 40.196425 ], [ - 116.734297, - 40.196524 - ], - [ - 116.734396, - 40.196524 - ], - [ - 116.734476, - 40.196523 - ], - [ - 116.734561, - 40.196523 - ], - [ - 116.73464, - 40.196523 - ], - [ - 116.734752, - 40.196522 - ], - [ - 116.734882, - 40.196521 - ], - [ - 116.734997, - 40.19652 - ], - [ - 116.73512, - 40.19652 - ], - [ - 116.735232, - 40.196519 - ], - [ - 116.735887, - 40.196515 - ], - [ - 116.736048, - 40.196515 - ], - [ - 116.736179, - 40.196514 - ], - [ - 116.736308, - 40.196513 - ], - [ - 116.736461, - 40.196512 - ], - [ - 116.736606, - 40.196511 - ], - [ - 116.736748, - 40.19651 - ], - [ - 116.736879, - 40.196509 - ], - [ - 116.737067, - 40.196508 - ], - [ - 116.737219, - 40.196507 - ], - [ - 116.737399, - 40.196506 - ], - [ - 116.737549, - 40.196505 - ], - [ - 116.737693, - 40.196504 + 116.737748, + 40.196425 ], [ 116.73778, - 40.196504 + 40.196424 + ] + ], + "moveTrack": [ + [ + 116.731239, + 40.196264 + ], + [ + 116.731082, + 40.19622 + ], + [ + 116.730919, + 40.196173 + ], + [ + 116.730762, + 40.196125 + ], + [ + 116.730596, + 40.196069 + ], + [ + 116.730437, + 40.196013 + ], + [ + 116.730296, + 40.195959 + ], + [ + 116.730122, + 40.19589 + ], + [ + 116.729956, + 40.195823 + ], + [ + 116.729841, + 40.195777 + ], + [ + 116.729797, + 40.195759 + ], + [ + 116.729696, + 40.195721 + ], + [ + 116.729624, + 40.195695 + ], + [ + 116.729498, + 40.195649 + ], + [ + 116.729464, + 40.195637 + ], + [ + 116.729366, + 40.195604 + ], + [ + 116.729294, + 40.195583 + ], + [ + 116.729122, + 40.195533 + ], + [ + 116.728954, + 40.195489 + ], + [ + 116.728781, + 40.195448 + ], + [ + 116.728616, + 40.195412 + ], + [ + 116.728442, + 40.195376 + ], + [ + 116.728269, + 40.195341 + ], + [ + 116.728087, + 40.195311 + ], + [ + 116.727909, + 40.195283 + ], + [ + 116.727746, + 40.195263 + ], + [ + 116.727561, + 40.195242 + ], + [ + 116.727386, + 40.195226 + ], + [ + 116.727213, + 40.195217 + ], + [ + 116.727036, + 40.19521 + ], + [ + 116.726865, + 40.195206 + ], + [ + 116.72669, + 40.195206 + ], + [ + 116.726512, + 40.195207 + ], + [ + 116.726333, + 40.195209 + ], + [ + 116.726144, + 40.195211 + ], + [ + 116.725959, + 40.195214 + ], + [ + 116.725771, + 40.195217 + ], + [ + 116.725588, + 40.195221 + ], + [ + 116.725411, + 40.195225 + ], + [ + 116.725201, + 40.195228 + ], + [ + 116.72509, + 40.195228 ] ] } \ No newline at end of file diff --git a/modules/mogo-module-v2x/src/main/res/raw/scenario_push_vr_behind_danger_car_data.json b/modules/mogo-module-v2x/src/main/res/raw/scenario_push_vr_behind_danger_car_data.json index f8baa50249..dd67ca0476 100644 --- a/modules/mogo-module-v2x/src/main/res/raw/scenario_push_vr_behind_danger_car_data.json +++ b/modules/mogo-module-v2x/src/main/res/raw/scenario_push_vr_behind_danger_car_data.json @@ -17,412 +17,562 @@ "msgImgUrl": "", "polyline": [ [ - 116.725092, - 40.195204 + 116.725091, + 40.195123 ], [ - 116.725192, - 40.195205 + 116.725335, + 40.195123 ], [ - 116.725374, - 40.195202 + 116.725499, + 40.195123 ], [ - 116.725656, - 40.195194 + 116.72602, + 40.195109 ], [ - 116.725873, - 40.195188 + 116.726235, + 40.195106 ], [ - 116.726119, - 40.195184 + 116.726424, + 40.195105 ], [ - 116.726315, - 40.195181 + 116.726658, + 40.195104 ], [ - 116.726492, - 40.195179 + 116.726733, + 40.195105 ], [ - 116.726736, - 40.195178 + 116.72688, + 40.195106 ], [ - 116.726953, - 40.195182 + 116.72704, + 40.195109 ], [ - 116.727076, - 40.195185 + 116.727217, + 40.195115 ], [ - 116.727301, - 40.195196 + 116.727388, + 40.195124 ], [ - 116.727433, - 40.195206 + 116.727562, + 40.195136 ], [ - 116.727599, - 40.195221 + 116.727735, + 40.195155 ], [ - 116.727794, - 40.195243 + 116.727887, + 40.195174 ], [ - 116.728016, - 40.195272 + 116.727979, + 40.195186 ], [ - 116.728172, - 40.195297 + 116.728056, + 40.195198 ], [ - 116.728324, - 40.195324 + 116.728165, + 40.195216 ], [ - 116.728466, - 40.195351 + 116.728237, + 40.195228 ], [ - 116.728619, - 40.195383 + 116.728345, + 40.195247 ], [ - 116.728767, + 116.728411, + 40.19526 + ], + [ + 116.728533, + 40.195283 + ], + [ + 116.728589, + 40.195295 + ], + [ + 116.728694, + 40.195318 + ], + [ + 116.728761, + 40.195334 + ], + [ + 116.728868, + 40.19536 + ], + [ + 116.728918, + 40.195372 + ], + [ + 116.729088, 40.195416 ], [ - 116.72892, - 40.195454 + 116.729262, + 40.195462 ], [ - 116.729009, - 40.195477 + 116.729424, + 40.195512 ], [ - 116.729176, - 40.195522 + 116.729547, + 40.195553 ], [ - 116.729344, - 40.195571 + 116.729584, + 40.195566 ], [ - 116.729479, - 40.195614 + 116.729692, + 40.195606 ], [ - 116.729604, - 40.195658 + 116.729739, + 40.195624 ], [ - 116.729719, - 40.1957 + 116.729844, + 40.195661 ], [ - 116.729827, - 40.195741 + 116.730011, + 40.195726 ], [ - 116.729936, - 40.195785 + 116.73014, + 40.195778 ], [ - 116.730072, - 40.195841 + 116.730309, + 40.195849 ], [ - 116.730205, - 40.195895 + 116.730467, + 40.195911 ], [ - 116.730344, - 40.19595 + 116.730608, + 40.195962 ], [ - 116.730542, - 40.196022 + 116.730673, + 40.195984 ], [ - 116.730609, - 40.196047 + 116.730766, + 40.196015 ], [ - 116.730668, - 40.196067 + 116.730831, + 40.196036 ], [ - 116.730754, - 40.196096 + 116.730935, + 40.196069 ], [ - 116.730821, - 40.196117 + 116.730993, + 40.196087 ], [ - 116.730886, - 40.196138 + 116.731086, + 40.196113 ], [ - 116.730943, - 40.196156 + 116.731164, + 40.196135 ], [ - 116.731011, - 40.196175 + 116.731285, + 40.196165 ], [ - 116.73107, - 40.196192 + 116.731315, + 40.196173 ], [ - 116.731143, - 40.196213 + 116.731434, + 40.196202 ], [ - 116.731221, - 40.196233 + 116.731486, + 40.196214 ], [ - 116.731297, + 116.731586, + 40.196238 + ], + [ + 116.731652, 40.196253 ], [ - 116.731353, - 40.196266 + 116.731749, + 40.196273 ], [ - 116.731432, - 40.196285 + 116.731818, + 40.196287 ], [ - 116.731506, - 40.196303 + 116.731924, + 40.196305 ], [ - 116.731568, + 116.731991, 40.196317 ], [ - 116.731661, - 40.196337 + 116.732108, + 40.196336 ], [ - 116.731725, - 40.19635 + 116.732269, + 40.196361 ], [ - 116.731767, - 40.196358 + 116.732333, + 40.19637 ], [ - 116.731845, - 40.196373 + 116.732464, + 40.196385 ], [ - 116.731925, - 40.196387 + 116.732507, + 40.19639 ], [ - 116.73199, - 40.196398 + 116.732628, + 40.196404 ], [ - 116.732075, - 40.196412 + 116.732678, + 40.196409 ], [ - 116.732153, + 116.732784, + 40.196418 + ], + [ + 116.732851, 40.196424 ], [ - 116.732215, + 116.732985, 40.196433 ], [ - 116.732295, + 116.73314, + 40.196439 + ], + [ + 116.733198, + 40.196441 + ], + [ + 116.733379, + 40.196445 + ], + [ + 116.733548, + 40.196445 + ], + [ + 116.733722, + 40.196445 + ], + [ + 116.733903, + 40.196445 + ], + [ + 116.734081, + 40.196447 + ], + [ + 116.734251, + 40.196446 + ], + [ + 116.734439, + 40.196445 + ], + [ + 116.734624, 40.196444 ], [ - 116.732376, - 40.196454 + 116.734805, + 40.196442 ], [ - 116.732431, - 40.196461 + 116.734982, + 40.196442 ], [ - 116.732529, - 40.196472 + 116.735164, + 40.196441 ], [ - 116.73263, - 40.196483 + 116.735329, + 40.19644 ], [ - 116.732725, - 40.196492 + 116.735519, + 40.196438 ], [ - 116.732821, - 40.196501 + 116.735682, + 40.196437 ], [ - 116.732925, - 40.196509 + 116.735855, + 40.196437 ], [ - 116.733004, - 40.196514 + 116.736034, + 40.196436 ], [ - 116.733108, - 40.19652 + 116.73621, + 40.196435 ], [ - 116.733176, - 40.196523 + 116.736385, + 40.196433 ], [ - 116.733262, - 40.196526 + 116.736566, + 40.196433 ], [ - 116.733334, - 40.196527 + 116.736742, + 40.196431 ], [ - 116.733436, - 40.196528 + 116.736926, + 40.196431 ], [ - 116.733603, - 40.196529 + 116.737046, + 40.19643 ], [ - 116.733728, - 40.196528 + 116.737173, + 40.19643 ], [ - 116.733865, - 40.196527 + 116.737298, + 40.196429 ], [ - 116.733986, - 40.196526 + 116.737449, + 40.196427 ], [ - 116.734142, - 40.196525 + 116.737582, + 40.196427 ], [ - 116.734229, - 40.196524 + 116.737662, + 40.196425 ], [ - 116.734297, - 40.196524 - ], - [ - 116.734396, - 40.196524 - ], - [ - 116.734476, - 40.196523 - ], - [ - 116.734561, - 40.196523 - ], - [ - 116.73464, - 40.196523 - ], - [ - 116.734752, - 40.196522 - ], - [ - 116.734882, - 40.196521 - ], - [ - 116.734997, - 40.19652 - ], - [ - 116.73512, - 40.19652 - ], - [ - 116.735232, - 40.196519 - ], - [ - 116.735887, - 40.196515 - ], - [ - 116.736048, - 40.196515 - ], - [ - 116.736179, - 40.196514 - ], - [ - 116.736308, - 40.196513 - ], - [ - 116.736461, - 40.196512 - ], - [ - 116.736606, - 40.196511 - ], - [ - 116.736748, - 40.19651 - ], - [ - 116.736879, - 40.196509 - ], - [ - 116.737067, - 40.196508 - ], - [ - 116.737219, - 40.196507 - ], - [ - 116.737399, - 40.196506 - ], - [ - 116.737549, - 40.196505 - ], - [ - 116.737693, - 40.196504 + 116.737748, + 40.196425 ], [ 116.73778, - 40.196504 + 40.196424 + ] + ], + "moveTrack": [ + [ + 116.731239, + 40.196264 + ], + [ + 116.731082, + 40.19622 + ], + [ + 116.730919, + 40.196173 + ], + [ + 116.730762, + 40.196125 + ], + [ + 116.730596, + 40.196069 + ], + [ + 116.730437, + 40.196013 + ], + [ + 116.730296, + 40.195959 + ], + [ + 116.730122, + 40.19589 + ], + [ + 116.729956, + 40.195823 + ], + [ + 116.729841, + 40.195777 + ], + [ + 116.729797, + 40.195759 + ], + [ + 116.729696, + 40.195721 + ], + [ + 116.729624, + 40.195695 + ], + [ + 116.729498, + 40.195649 + ], + [ + 116.729464, + 40.195637 + ], + [ + 116.729366, + 40.195604 + ], + [ + 116.729294, + 40.195583 + ], + [ + 116.729122, + 40.195533 + ], + [ + 116.728954, + 40.195489 + ], + [ + 116.728781, + 40.195448 + ], + [ + 116.728616, + 40.195412 + ], + [ + 116.728442, + 40.195376 + ], + [ + 116.728269, + 40.195341 + ], + [ + 116.728087, + 40.195311 + ], + [ + 116.727909, + 40.195283 + ], + [ + 116.727746, + 40.195263 + ], + [ + 116.727561, + 40.195242 + ], + [ + 116.727386, + 40.195226 + ], + [ + 116.727213, + 40.195217 + ], + [ + 116.727036, + 40.19521 + ], + [ + 116.726865, + 40.195206 + ], + [ + 116.72669, + 40.195206 + ], + [ + 116.726512, + 40.195207 + ], + [ + 116.726333, + 40.195209 + ], + [ + 116.726144, + 40.195211 + ], + [ + 116.725959, + 40.195214 + ], + [ + 116.725771, + 40.195217 + ], + [ + 116.725588, + 40.195221 + ], + [ + 116.725411, + 40.195225 + ], + [ + 116.725201, + 40.195228 + ], + [ + 116.72509, + 40.195228 ] ] } \ No newline at end of file diff --git a/modules/mogo-module-v2x/src/main/res/raw/scenario_push_vr_car_break_data.json b/modules/mogo-module-v2x/src/main/res/raw/scenario_push_vr_car_break_data.json index f0a23c2059..8721474336 100644 --- a/modules/mogo-module-v2x/src/main/res/raw/scenario_push_vr_car_break_data.json +++ b/modules/mogo-module-v2x/src/main/res/raw/scenario_push_vr_car_break_data.json @@ -11,418 +11,568 @@ "tts": "前车急刹注意减速", "zoom": false, "zoomScale": 15, - "lat": 40.196512, - "lon": 116.736461, + "lat": 40.195206, + "lon": 116.727433, "userHead": "", "msgImgUrl": "", "polyline": [ [ - 116.725092, - 40.195204 + 116.725091, + 40.195123 ], [ - 116.725192, - 40.195205 + 116.725335, + 40.195123 ], [ - 116.725374, - 40.195202 + 116.725499, + 40.195123 ], [ - 116.725656, - 40.195194 + 116.72602, + 40.195109 ], [ - 116.725873, - 40.195188 + 116.726235, + 40.195106 ], [ - 116.726119, - 40.195184 + 116.726424, + 40.195105 ], [ - 116.726315, - 40.195181 + 116.726658, + 40.195104 ], [ - 116.726492, - 40.195179 + 116.726733, + 40.195105 ], [ - 116.726736, - 40.195178 + 116.72688, + 40.195106 ], [ - 116.726953, - 40.195182 + 116.72704, + 40.195109 ], [ - 116.727076, - 40.195185 + 116.727217, + 40.195115 ], [ - 116.727301, - 40.195196 + 116.727388, + 40.195124 ], [ - 116.727433, - 40.195206 + 116.727562, + 40.195136 ], [ - 116.727599, - 40.195221 + 116.727735, + 40.195155 ], [ - 116.727794, - 40.195243 + 116.727887, + 40.195174 ], [ - 116.728016, - 40.195272 + 116.727979, + 40.195186 ], [ - 116.728172, - 40.195297 + 116.728056, + 40.195198 ], [ - 116.728324, - 40.195324 + 116.728165, + 40.195216 ], [ - 116.728466, - 40.195351 + 116.728237, + 40.195228 ], [ - 116.728619, - 40.195383 + 116.728345, + 40.195247 ], [ - 116.728767, + 116.728411, + 40.19526 + ], + [ + 116.728533, + 40.195283 + ], + [ + 116.728589, + 40.195295 + ], + [ + 116.728694, + 40.195318 + ], + [ + 116.728761, + 40.195334 + ], + [ + 116.728868, + 40.19536 + ], + [ + 116.728918, + 40.195372 + ], + [ + 116.729088, 40.195416 ], [ - 116.72892, - 40.195454 + 116.729262, + 40.195462 ], [ - 116.729009, - 40.195477 + 116.729424, + 40.195512 ], [ - 116.729176, - 40.195522 + 116.729547, + 40.195553 ], [ - 116.729344, - 40.195571 + 116.729584, + 40.195566 ], [ - 116.729479, - 40.195614 + 116.729692, + 40.195606 ], [ - 116.729604, - 40.195658 + 116.729739, + 40.195624 ], [ - 116.729719, - 40.1957 + 116.729844, + 40.195661 ], [ - 116.729827, - 40.195741 + 116.730011, + 40.195726 ], [ - 116.729936, - 40.195785 + 116.73014, + 40.195778 ], [ - 116.730072, - 40.195841 + 116.730309, + 40.195849 ], [ - 116.730205, - 40.195895 + 116.730467, + 40.195911 ], [ - 116.730344, - 40.19595 + 116.730608, + 40.195962 ], [ - 116.730542, - 40.196022 + 116.730673, + 40.195984 ], [ - 116.730609, - 40.196047 + 116.730766, + 40.196015 ], [ - 116.730668, - 40.196067 + 116.730831, + 40.196036 ], [ - 116.730754, - 40.196096 + 116.730935, + 40.196069 ], [ - 116.730821, - 40.196117 + 116.730993, + 40.196087 ], [ - 116.730886, - 40.196138 + 116.731086, + 40.196113 ], [ - 116.730943, - 40.196156 + 116.731164, + 40.196135 ], [ - 116.731011, - 40.196175 + 116.731285, + 40.196165 ], [ - 116.73107, - 40.196192 + 116.731315, + 40.196173 ], [ - 116.731143, - 40.196213 + 116.731434, + 40.196202 ], [ - 116.731221, - 40.196233 + 116.731486, + 40.196214 ], [ - 116.731297, + 116.731586, + 40.196238 + ], + [ + 116.731652, 40.196253 ], [ - 116.731353, - 40.196266 + 116.731749, + 40.196273 ], [ - 116.731432, - 40.196285 + 116.731818, + 40.196287 ], [ - 116.731506, - 40.196303 + 116.731924, + 40.196305 ], [ - 116.731568, + 116.731991, 40.196317 ], [ - 116.731661, - 40.196337 + 116.732108, + 40.196336 ], [ - 116.731725, - 40.19635 + 116.732269, + 40.196361 ], [ - 116.731767, - 40.196358 + 116.732333, + 40.19637 ], [ - 116.731845, - 40.196373 + 116.732464, + 40.196385 ], [ - 116.731925, - 40.196387 + 116.732507, + 40.19639 ], [ - 116.73199, - 40.196398 + 116.732628, + 40.196404 ], [ - 116.732075, - 40.196412 + 116.732678, + 40.196409 ], [ - 116.732153, + 116.732784, + 40.196418 + ], + [ + 116.732851, 40.196424 ], [ - 116.732215, + 116.732985, 40.196433 ], [ - 116.732295, + 116.73314, + 40.196439 + ], + [ + 116.733198, + 40.196441 + ], + [ + 116.733379, + 40.196445 + ], + [ + 116.733548, + 40.196445 + ], + [ + 116.733722, + 40.196445 + ], + [ + 116.733903, + 40.196445 + ], + [ + 116.734081, + 40.196447 + ], + [ + 116.734251, + 40.196446 + ], + [ + 116.734439, + 40.196445 + ], + [ + 116.734624, 40.196444 ], [ - 116.732376, - 40.196454 + 116.734805, + 40.196442 ], [ - 116.732431, - 40.196461 + 116.734982, + 40.196442 ], [ - 116.732529, - 40.196472 + 116.735164, + 40.196441 ], [ - 116.73263, - 40.196483 + 116.735329, + 40.19644 ], [ - 116.732725, - 40.196492 + 116.735519, + 40.196438 ], [ - 116.732821, - 40.196501 + 116.735682, + 40.196437 ], [ - 116.732925, - 40.196509 + 116.735855, + 40.196437 ], [ - 116.733004, - 40.196514 + 116.736034, + 40.196436 ], [ - 116.733108, - 40.19652 + 116.73621, + 40.196435 ], [ - 116.733176, - 40.196523 + 116.736385, + 40.196433 ], [ - 116.733262, - 40.196526 + 116.736566, + 40.196433 ], [ - 116.733334, - 40.196527 + 116.736742, + 40.196431 ], [ - 116.733436, - 40.196528 + 116.736926, + 40.196431 ], [ - 116.733603, - 40.196529 + 116.737046, + 40.19643 ], [ - 116.733728, - 40.196528 + 116.737173, + 40.19643 ], [ - 116.733865, - 40.196527 + 116.737298, + 40.196429 ], [ - 116.733986, - 40.196526 + 116.737449, + 40.196427 ], [ - 116.734142, - 40.196525 + 116.737582, + 40.196427 ], [ - 116.734229, - 40.196524 + 116.737662, + 40.196425 ], [ - 116.734297, - 40.196524 - ], - [ - 116.734396, - 40.196524 - ], - [ - 116.734476, - 40.196523 - ], - [ - 116.734561, - 40.196523 - ], - [ - 116.73464, - 40.196523 - ], - [ - 116.734752, - 40.196522 - ], - [ - 116.734882, - 40.196521 - ], - [ - 116.734997, - 40.19652 - ], - [ - 116.73512, - 40.19652 - ], - [ - 116.735232, - 40.196519 - ], - [ - 116.735887, - 40.196515 - ], - [ - 116.736048, - 40.196515 - ], - [ - 116.736179, - 40.196514 - ], - [ - 116.736308, - 40.196513 - ], - [ - 116.736461, - 40.196512 - ], - [ - 116.736606, - 40.196511 - ], - [ - 116.736748, - 40.19651 - ], - [ - 116.736879, - 40.196509 - ], - [ - 116.737067, - 40.196508 - ], - [ - 116.737219, - 40.196507 - ], - [ - 116.737399, - 40.196506 - ], - [ - 116.737549, - 40.196505 - ], - [ - 116.737693, - 40.196504 + 116.737748, + 40.196425 ], [ 116.73778, - 40.196504 + 40.196424 + ] + ], + "moveTrack": [ + [ + 116.731239, + 40.196264 + ], + [ + 116.731082, + 40.19622 + ], + [ + 116.730919, + 40.196173 + ], + [ + 116.730762, + 40.196125 + ], + [ + 116.730596, + 40.196069 + ], + [ + 116.730437, + 40.196013 + ], + [ + 116.730296, + 40.195959 + ], + [ + 116.730122, + 40.19589 + ], + [ + 116.729956, + 40.195823 + ], + [ + 116.729841, + 40.195777 + ], + [ + 116.729797, + 40.195759 + ], + [ + 116.729696, + 40.195721 + ], + [ + 116.729624, + 40.195695 + ], + [ + 116.729498, + 40.195649 + ], + [ + 116.729464, + 40.195637 + ], + [ + 116.729366, + 40.195604 + ], + [ + 116.729294, + 40.195583 + ], + [ + 116.729122, + 40.195533 + ], + [ + 116.728954, + 40.195489 + ], + [ + 116.728781, + 40.195448 + ], + [ + 116.728616, + 40.195412 + ], + [ + 116.728442, + 40.195376 + ], + [ + 116.728269, + 40.195341 + ], + [ + 116.728087, + 40.195311 + ], + [ + 116.727909, + 40.195283 + ], + [ + 116.727746, + 40.195263 + ], + [ + 116.727561, + 40.195242 + ], + [ + 116.727386, + 40.195226 + ], + [ + 116.727213, + 40.195217 + ], + [ + 116.727036, + 40.19521 + ], + [ + 116.726865, + 40.195206 + ], + [ + 116.72669, + 40.195206 + ], + [ + 116.726512, + 40.195207 + ], + [ + 116.726333, + 40.195209 + ], + [ + 116.726144, + 40.195211 + ], + [ + 116.725959, + 40.195214 + ], + [ + 116.725771, + 40.195217 + ], + [ + 116.725588, + 40.195221 + ], + [ + 116.725411, + 40.195225 + ], + [ + 116.725201, + 40.195228 + ], + [ + 116.72509, + 40.195228 ] ] } \ No newline at end of file diff --git a/modules/mogo-module-v2x/src/main/res/raw/scenario_push_vr_event_data_shuangshan.json b/modules/mogo-module-v2x/src/main/res/raw/scenario_push_vr_event_data_shuangshan.json index 7a8c6114c9..4e6432be9b 100644 --- a/modules/mogo-module-v2x/src/main/res/raw/scenario_push_vr_event_data_shuangshan.json +++ b/modules/mogo-module-v2x/src/main/res/raw/scenario_push_vr_event_data_shuangshan.json @@ -18,412 +18,562 @@ "lon": 116.736461, "polyline": [ [ - 116.725092, - 40.195204 + 116.725091, + 40.195123 ], [ - 116.725192, - 40.195205 + 116.725335, + 40.195123 ], [ - 116.725374, - 40.195202 + 116.725499, + 40.195123 ], [ - 116.725656, - 40.195194 + 116.72602, + 40.195109 ], [ - 116.725873, - 40.195188 + 116.726235, + 40.195106 ], [ - 116.726119, - 40.195184 + 116.726424, + 40.195105 ], [ - 116.726315, - 40.195181 + 116.726658, + 40.195104 ], [ - 116.726492, - 40.195179 + 116.726733, + 40.195105 ], [ - 116.726736, - 40.195178 + 116.72688, + 40.195106 ], [ - 116.726953, - 40.195182 + 116.72704, + 40.195109 ], [ - 116.727076, - 40.195185 + 116.727217, + 40.195115 ], [ - 116.727301, - 40.195196 + 116.727388, + 40.195124 ], [ - 116.727433, - 40.195206 + 116.727562, + 40.195136 ], [ - 116.727599, - 40.195221 + 116.727735, + 40.195155 ], [ - 116.727794, - 40.195243 + 116.727887, + 40.195174 ], [ - 116.728016, - 40.195272 + 116.727979, + 40.195186 ], [ - 116.728172, - 40.195297 + 116.728056, + 40.195198 ], [ - 116.728324, - 40.195324 + 116.728165, + 40.195216 ], [ - 116.728466, - 40.195351 + 116.728237, + 40.195228 ], [ - 116.728619, - 40.195383 + 116.728345, + 40.195247 ], [ - 116.728767, + 116.728411, + 40.19526 + ], + [ + 116.728533, + 40.195283 + ], + [ + 116.728589, + 40.195295 + ], + [ + 116.728694, + 40.195318 + ], + [ + 116.728761, + 40.195334 + ], + [ + 116.728868, + 40.19536 + ], + [ + 116.728918, + 40.195372 + ], + [ + 116.729088, 40.195416 ], [ - 116.72892, - 40.195454 + 116.729262, + 40.195462 ], [ - 116.729009, - 40.195477 + 116.729424, + 40.195512 ], [ - 116.729176, - 40.195522 + 116.729547, + 40.195553 ], [ - 116.729344, - 40.195571 + 116.729584, + 40.195566 ], [ - 116.729479, - 40.195614 + 116.729692, + 40.195606 ], [ - 116.729604, - 40.195658 + 116.729739, + 40.195624 ], [ - 116.729719, - 40.1957 + 116.729844, + 40.195661 ], [ - 116.729827, - 40.195741 + 116.730011, + 40.195726 ], [ - 116.729936, - 40.195785 + 116.73014, + 40.195778 ], [ - 116.730072, - 40.195841 + 116.730309, + 40.195849 ], [ - 116.730205, - 40.195895 + 116.730467, + 40.195911 ], [ - 116.730344, - 40.19595 + 116.730608, + 40.195962 ], [ - 116.730542, - 40.196022 + 116.730673, + 40.195984 ], [ - 116.730609, - 40.196047 + 116.730766, + 40.196015 ], [ - 116.730668, - 40.196067 + 116.730831, + 40.196036 ], [ - 116.730754, - 40.196096 + 116.730935, + 40.196069 ], [ - 116.730821, - 40.196117 + 116.730993, + 40.196087 ], [ - 116.730886, - 40.196138 + 116.731086, + 40.196113 ], [ - 116.730943, - 40.196156 + 116.731164, + 40.196135 ], [ - 116.731011, - 40.196175 + 116.731285, + 40.196165 ], [ - 116.73107, - 40.196192 + 116.731315, + 40.196173 ], [ - 116.731143, - 40.196213 + 116.731434, + 40.196202 ], [ - 116.731221, - 40.196233 + 116.731486, + 40.196214 ], [ - 116.731297, + 116.731586, + 40.196238 + ], + [ + 116.731652, 40.196253 ], [ - 116.731353, - 40.196266 + 116.731749, + 40.196273 ], [ - 116.731432, - 40.196285 + 116.731818, + 40.196287 ], [ - 116.731506, - 40.196303 + 116.731924, + 40.196305 ], [ - 116.731568, + 116.731991, 40.196317 ], [ - 116.731661, - 40.196337 + 116.732108, + 40.196336 ], [ - 116.731725, - 40.19635 + 116.732269, + 40.196361 ], [ - 116.731767, - 40.196358 + 116.732333, + 40.19637 ], [ - 116.731845, - 40.196373 + 116.732464, + 40.196385 ], [ - 116.731925, - 40.196387 + 116.732507, + 40.19639 ], [ - 116.73199, - 40.196398 + 116.732628, + 40.196404 ], [ - 116.732075, - 40.196412 + 116.732678, + 40.196409 ], [ - 116.732153, + 116.732784, + 40.196418 + ], + [ + 116.732851, 40.196424 ], [ - 116.732215, + 116.732985, 40.196433 ], [ - 116.732295, + 116.73314, + 40.196439 + ], + [ + 116.733198, + 40.196441 + ], + [ + 116.733379, + 40.196445 + ], + [ + 116.733548, + 40.196445 + ], + [ + 116.733722, + 40.196445 + ], + [ + 116.733903, + 40.196445 + ], + [ + 116.734081, + 40.196447 + ], + [ + 116.734251, + 40.196446 + ], + [ + 116.734439, + 40.196445 + ], + [ + 116.734624, 40.196444 ], [ - 116.732376, - 40.196454 + 116.734805, + 40.196442 ], [ - 116.732431, - 40.196461 + 116.734982, + 40.196442 ], [ - 116.732529, - 40.196472 + 116.735164, + 40.196441 ], [ - 116.73263, - 40.196483 + 116.735329, + 40.19644 ], [ - 116.732725, - 40.196492 + 116.735519, + 40.196438 ], [ - 116.732821, - 40.196501 + 116.735682, + 40.196437 ], [ - 116.732925, - 40.196509 + 116.735855, + 40.196437 ], [ - 116.733004, - 40.196514 + 116.736034, + 40.196436 ], [ - 116.733108, - 40.19652 + 116.73621, + 40.196435 ], [ - 116.733176, - 40.196523 + 116.736385, + 40.196433 ], [ - 116.733262, - 40.196526 + 116.736566, + 40.196433 ], [ - 116.733334, - 40.196527 + 116.736742, + 40.196431 ], [ - 116.733436, - 40.196528 + 116.736926, + 40.196431 ], [ - 116.733603, - 40.196529 + 116.737046, + 40.19643 ], [ - 116.733728, - 40.196528 + 116.737173, + 40.19643 ], [ - 116.733865, - 40.196527 + 116.737298, + 40.196429 ], [ - 116.733986, - 40.196526 + 116.737449, + 40.196427 ], [ - 116.734142, - 40.196525 + 116.737582, + 40.196427 ], [ - 116.734229, - 40.196524 + 116.737662, + 40.196425 ], [ - 116.734297, - 40.196524 - ], - [ - 116.734396, - 40.196524 - ], - [ - 116.734476, - 40.196523 - ], - [ - 116.734561, - 40.196523 - ], - [ - 116.73464, - 40.196523 - ], - [ - 116.734752, - 40.196522 - ], - [ - 116.734882, - 40.196521 - ], - [ - 116.734997, - 40.19652 - ], - [ - 116.73512, - 40.19652 - ], - [ - 116.735232, - 40.196519 - ], - [ - 116.735887, - 40.196515 - ], - [ - 116.736048, - 40.196515 - ], - [ - 116.736179, - 40.196514 - ], - [ - 116.736308, - 40.196513 - ], - [ - 116.736461, - 40.196512 - ], - [ - 116.736606, - 40.196511 - ], - [ - 116.736748, - 40.19651 - ], - [ - 116.736879, - 40.196509 - ], - [ - 116.737067, - 40.196508 - ], - [ - 116.737219, - 40.196507 - ], - [ - 116.737399, - 40.196506 - ], - [ - 116.737549, - 40.196505 - ], - [ - 116.737693, - 40.196504 + 116.737748, + 40.196425 ], [ 116.73778, - 40.196504 + 40.196424 + ] + ], + "moveTrack": [ + [ + 116.731239, + 40.196264 + ], + [ + 116.731082, + 40.19622 + ], + [ + 116.730919, + 40.196173 + ], + [ + 116.730762, + 40.196125 + ], + [ + 116.730596, + 40.196069 + ], + [ + 116.730437, + 40.196013 + ], + [ + 116.730296, + 40.195959 + ], + [ + 116.730122, + 40.19589 + ], + [ + 116.729956, + 40.195823 + ], + [ + 116.729841, + 40.195777 + ], + [ + 116.729797, + 40.195759 + ], + [ + 116.729696, + 40.195721 + ], + [ + 116.729624, + 40.195695 + ], + [ + 116.729498, + 40.195649 + ], + [ + 116.729464, + 40.195637 + ], + [ + 116.729366, + 40.195604 + ], + [ + 116.729294, + 40.195583 + ], + [ + 116.729122, + 40.195533 + ], + [ + 116.728954, + 40.195489 + ], + [ + 116.728781, + 40.195448 + ], + [ + 116.728616, + 40.195412 + ], + [ + 116.728442, + 40.195376 + ], + [ + 116.728269, + 40.195341 + ], + [ + 116.728087, + 40.195311 + ], + [ + 116.727909, + 40.195283 + ], + [ + 116.727746, + 40.195263 + ], + [ + 116.727561, + 40.195242 + ], + [ + 116.727386, + 40.195226 + ], + [ + 116.727213, + 40.195217 + ], + [ + 116.727036, + 40.19521 + ], + [ + 116.726865, + 40.195206 + ], + [ + 116.72669, + 40.195206 + ], + [ + 116.726512, + 40.195207 + ], + [ + 116.726333, + 40.195209 + ], + [ + 116.726144, + 40.195211 + ], + [ + 116.725959, + 40.195214 + ], + [ + 116.725771, + 40.195217 + ], + [ + 116.725588, + 40.195221 + ], + [ + 116.725411, + 40.195225 + ], + [ + 116.725201, + 40.195228 + ], + [ + 116.72509, + 40.195228 ] ] } \ No newline at end of file diff --git a/modules/mogo-module-v2x/src/main/res/raw/scenario_push_vr_event_data_yongdu.json b/modules/mogo-module-v2x/src/main/res/raw/scenario_push_vr_event_data_yongdu.json index 7a8c6114c9..709fc3cd5c 100644 --- a/modules/mogo-module-v2x/src/main/res/raw/scenario_push_vr_event_data_yongdu.json +++ b/modules/mogo-module-v2x/src/main/res/raw/scenario_push_vr_event_data_yongdu.json @@ -14,416 +14,566 @@ "zoomScale": 15, "userHead": "", "msgImgUrl": "", - "lat": 40.196512, - "lon": 116.736461, + "lat": 40.195571, + "lon": 116.729344, "polyline": [ [ - 116.725092, - 40.195204 + 116.725091, + 40.195123 ], [ - 116.725192, - 40.195205 + 116.725335, + 40.195123 ], [ - 116.725374, - 40.195202 + 116.725499, + 40.195123 ], [ - 116.725656, - 40.195194 + 116.72602, + 40.195109 ], [ - 116.725873, - 40.195188 + 116.726235, + 40.195106 ], [ - 116.726119, - 40.195184 + 116.726424, + 40.195105 ], [ - 116.726315, - 40.195181 + 116.726658, + 40.195104 ], [ - 116.726492, - 40.195179 + 116.726733, + 40.195105 ], [ - 116.726736, - 40.195178 + 116.72688, + 40.195106 ], [ - 116.726953, - 40.195182 + 116.72704, + 40.195109 ], [ - 116.727076, - 40.195185 + 116.727217, + 40.195115 ], [ - 116.727301, - 40.195196 + 116.727388, + 40.195124 ], [ - 116.727433, - 40.195206 + 116.727562, + 40.195136 ], [ - 116.727599, - 40.195221 + 116.727735, + 40.195155 ], [ - 116.727794, - 40.195243 + 116.727887, + 40.195174 ], [ - 116.728016, - 40.195272 + 116.727979, + 40.195186 ], [ - 116.728172, - 40.195297 + 116.728056, + 40.195198 ], [ - 116.728324, - 40.195324 + 116.728165, + 40.195216 ], [ - 116.728466, - 40.195351 + 116.728237, + 40.195228 ], [ - 116.728619, - 40.195383 + 116.728345, + 40.195247 ], [ - 116.728767, + 116.728411, + 40.19526 + ], + [ + 116.728533, + 40.195283 + ], + [ + 116.728589, + 40.195295 + ], + [ + 116.728694, + 40.195318 + ], + [ + 116.728761, + 40.195334 + ], + [ + 116.728868, + 40.19536 + ], + [ + 116.728918, + 40.195372 + ], + [ + 116.729088, 40.195416 ], [ - 116.72892, - 40.195454 + 116.729262, + 40.195462 ], [ - 116.729009, - 40.195477 + 116.729424, + 40.195512 ], [ - 116.729176, - 40.195522 + 116.729547, + 40.195553 ], [ - 116.729344, - 40.195571 + 116.729584, + 40.195566 ], [ - 116.729479, - 40.195614 + 116.729692, + 40.195606 ], [ - 116.729604, - 40.195658 + 116.729739, + 40.195624 ], [ - 116.729719, - 40.1957 + 116.729844, + 40.195661 ], [ - 116.729827, - 40.195741 + 116.730011, + 40.195726 ], [ - 116.729936, - 40.195785 + 116.73014, + 40.195778 ], [ - 116.730072, - 40.195841 + 116.730309, + 40.195849 ], [ - 116.730205, - 40.195895 + 116.730467, + 40.195911 ], [ - 116.730344, - 40.19595 + 116.730608, + 40.195962 ], [ - 116.730542, - 40.196022 + 116.730673, + 40.195984 ], [ - 116.730609, - 40.196047 + 116.730766, + 40.196015 ], [ - 116.730668, - 40.196067 + 116.730831, + 40.196036 ], [ - 116.730754, - 40.196096 + 116.730935, + 40.196069 ], [ - 116.730821, - 40.196117 + 116.730993, + 40.196087 ], [ - 116.730886, - 40.196138 + 116.731086, + 40.196113 ], [ - 116.730943, - 40.196156 + 116.731164, + 40.196135 ], [ - 116.731011, - 40.196175 + 116.731285, + 40.196165 ], [ - 116.73107, - 40.196192 + 116.731315, + 40.196173 ], [ - 116.731143, - 40.196213 + 116.731434, + 40.196202 ], [ - 116.731221, - 40.196233 + 116.731486, + 40.196214 ], [ - 116.731297, + 116.731586, + 40.196238 + ], + [ + 116.731652, 40.196253 ], [ - 116.731353, - 40.196266 + 116.731749, + 40.196273 ], [ - 116.731432, - 40.196285 + 116.731818, + 40.196287 ], [ - 116.731506, - 40.196303 + 116.731924, + 40.196305 ], [ - 116.731568, + 116.731991, 40.196317 ], [ - 116.731661, - 40.196337 + 116.732108, + 40.196336 ], [ - 116.731725, - 40.19635 + 116.732269, + 40.196361 ], [ - 116.731767, - 40.196358 + 116.732333, + 40.19637 ], [ - 116.731845, - 40.196373 + 116.732464, + 40.196385 ], [ - 116.731925, - 40.196387 + 116.732507, + 40.19639 ], [ - 116.73199, - 40.196398 + 116.732628, + 40.196404 ], [ - 116.732075, - 40.196412 + 116.732678, + 40.196409 ], [ - 116.732153, + 116.732784, + 40.196418 + ], + [ + 116.732851, 40.196424 ], [ - 116.732215, + 116.732985, 40.196433 ], [ - 116.732295, + 116.73314, + 40.196439 + ], + [ + 116.733198, + 40.196441 + ], + [ + 116.733379, + 40.196445 + ], + [ + 116.733548, + 40.196445 + ], + [ + 116.733722, + 40.196445 + ], + [ + 116.733903, + 40.196445 + ], + [ + 116.734081, + 40.196447 + ], + [ + 116.734251, + 40.196446 + ], + [ + 116.734439, + 40.196445 + ], + [ + 116.734624, 40.196444 ], [ - 116.732376, - 40.196454 + 116.734805, + 40.196442 ], [ - 116.732431, - 40.196461 + 116.734982, + 40.196442 ], [ - 116.732529, - 40.196472 + 116.735164, + 40.196441 ], [ - 116.73263, - 40.196483 + 116.735329, + 40.19644 ], [ - 116.732725, - 40.196492 + 116.735519, + 40.196438 ], [ - 116.732821, - 40.196501 + 116.735682, + 40.196437 ], [ - 116.732925, - 40.196509 + 116.735855, + 40.196437 ], [ - 116.733004, - 40.196514 + 116.736034, + 40.196436 ], [ - 116.733108, - 40.19652 + 116.73621, + 40.196435 ], [ - 116.733176, - 40.196523 + 116.736385, + 40.196433 ], [ - 116.733262, - 40.196526 + 116.736566, + 40.196433 ], [ - 116.733334, - 40.196527 + 116.736742, + 40.196431 ], [ - 116.733436, - 40.196528 + 116.736926, + 40.196431 ], [ - 116.733603, - 40.196529 + 116.737046, + 40.19643 ], [ - 116.733728, - 40.196528 + 116.737173, + 40.19643 ], [ - 116.733865, - 40.196527 + 116.737298, + 40.196429 ], [ - 116.733986, - 40.196526 + 116.737449, + 40.196427 ], [ - 116.734142, - 40.196525 + 116.737582, + 40.196427 ], [ - 116.734229, - 40.196524 + 116.737662, + 40.196425 ], [ - 116.734297, - 40.196524 - ], - [ - 116.734396, - 40.196524 - ], - [ - 116.734476, - 40.196523 - ], - [ - 116.734561, - 40.196523 - ], - [ - 116.73464, - 40.196523 - ], - [ - 116.734752, - 40.196522 - ], - [ - 116.734882, - 40.196521 - ], - [ - 116.734997, - 40.19652 - ], - [ - 116.73512, - 40.19652 - ], - [ - 116.735232, - 40.196519 - ], - [ - 116.735887, - 40.196515 - ], - [ - 116.736048, - 40.196515 - ], - [ - 116.736179, - 40.196514 - ], - [ - 116.736308, - 40.196513 - ], - [ - 116.736461, - 40.196512 - ], - [ - 116.736606, - 40.196511 - ], - [ - 116.736748, - 40.19651 - ], - [ - 116.736879, - 40.196509 - ], - [ - 116.737067, - 40.196508 - ], - [ - 116.737219, - 40.196507 - ], - [ - 116.737399, - 40.196506 - ], - [ - 116.737549, - 40.196505 - ], - [ - 116.737693, - 40.196504 + 116.737748, + 40.196425 ], [ 116.73778, - 40.196504 + 40.196424 + ] + ], + "moveTrack": [ + [ + 116.731239, + 40.196264 + ], + [ + 116.731082, + 40.19622 + ], + [ + 116.730919, + 40.196173 + ], + [ + 116.730762, + 40.196125 + ], + [ + 116.730596, + 40.196069 + ], + [ + 116.730437, + 40.196013 + ], + [ + 116.730296, + 40.195959 + ], + [ + 116.730122, + 40.19589 + ], + [ + 116.729956, + 40.195823 + ], + [ + 116.729841, + 40.195777 + ], + [ + 116.729797, + 40.195759 + ], + [ + 116.729696, + 40.195721 + ], + [ + 116.729624, + 40.195695 + ], + [ + 116.729498, + 40.195649 + ], + [ + 116.729464, + 40.195637 + ], + [ + 116.729366, + 40.195604 + ], + [ + 116.729294, + 40.195583 + ], + [ + 116.729122, + 40.195533 + ], + [ + 116.728954, + 40.195489 + ], + [ + 116.728781, + 40.195448 + ], + [ + 116.728616, + 40.195412 + ], + [ + 116.728442, + 40.195376 + ], + [ + 116.728269, + 40.195341 + ], + [ + 116.728087, + 40.195311 + ], + [ + 116.727909, + 40.195283 + ], + [ + 116.727746, + 40.195263 + ], + [ + 116.727561, + 40.195242 + ], + [ + 116.727386, + 40.195226 + ], + [ + 116.727213, + 40.195217 + ], + [ + 116.727036, + 40.19521 + ], + [ + 116.726865, + 40.195206 + ], + [ + 116.72669, + 40.195206 + ], + [ + 116.726512, + 40.195207 + ], + [ + 116.726333, + 40.195209 + ], + [ + 116.726144, + 40.195211 + ], + [ + 116.725959, + 40.195214 + ], + [ + 116.725771, + 40.195217 + ], + [ + 116.725588, + 40.195221 + ], + [ + 116.725411, + 40.195225 + ], + [ + 116.725201, + 40.195228 + ], + [ + 116.72509, + 40.195228 ] ] } \ No newline at end of file diff --git a/modules/mogo-module-v2x/src/main/res/raw/scenario_push_vr_hehind_vip_data.json b/modules/mogo-module-v2x/src/main/res/raw/scenario_push_vr_hehind_vip_data.json index dcd85cd091..41d40ee854 100644 --- a/modules/mogo-module-v2x/src/main/res/raw/scenario_push_vr_hehind_vip_data.json +++ b/modules/mogo-module-v2x/src/main/res/raw/scenario_push_vr_hehind_vip_data.json @@ -17,412 +17,562 @@ "msgImgUrl": "", "polyline": [ [ - 116.725092, - 40.195204 + 116.725091, + 40.195123 ], [ - 116.725192, - 40.195205 + 116.725335, + 40.195123 ], [ - 116.725374, - 40.195202 + 116.725499, + 40.195123 ], [ - 116.725656, - 40.195194 + 116.72602, + 40.195109 ], [ - 116.725873, - 40.195188 + 116.726235, + 40.195106 ], [ - 116.726119, - 40.195184 + 116.726424, + 40.195105 ], [ - 116.726315, - 40.195181 + 116.726658, + 40.195104 ], [ - 116.726492, - 40.195179 + 116.726733, + 40.195105 ], [ - 116.726736, - 40.195178 + 116.72688, + 40.195106 ], [ - 116.726953, - 40.195182 + 116.72704, + 40.195109 ], [ - 116.727076, - 40.195185 + 116.727217, + 40.195115 ], [ - 116.727301, - 40.195196 + 116.727388, + 40.195124 ], [ - 116.727433, - 40.195206 + 116.727562, + 40.195136 ], [ - 116.727599, - 40.195221 + 116.727735, + 40.195155 ], [ - 116.727794, - 40.195243 + 116.727887, + 40.195174 ], [ - 116.728016, - 40.195272 + 116.727979, + 40.195186 ], [ - 116.728172, - 40.195297 + 116.728056, + 40.195198 ], [ - 116.728324, - 40.195324 + 116.728165, + 40.195216 ], [ - 116.728466, - 40.195351 + 116.728237, + 40.195228 ], [ - 116.728619, - 40.195383 + 116.728345, + 40.195247 ], [ - 116.728767, + 116.728411, + 40.19526 + ], + [ + 116.728533, + 40.195283 + ], + [ + 116.728589, + 40.195295 + ], + [ + 116.728694, + 40.195318 + ], + [ + 116.728761, + 40.195334 + ], + [ + 116.728868, + 40.19536 + ], + [ + 116.728918, + 40.195372 + ], + [ + 116.729088, 40.195416 ], [ - 116.72892, - 40.195454 + 116.729262, + 40.195462 ], [ - 116.729009, - 40.195477 + 116.729424, + 40.195512 ], [ - 116.729176, - 40.195522 + 116.729547, + 40.195553 ], [ - 116.729344, - 40.195571 + 116.729584, + 40.195566 ], [ - 116.729479, - 40.195614 + 116.729692, + 40.195606 ], [ - 116.729604, - 40.195658 + 116.729739, + 40.195624 ], [ - 116.729719, - 40.1957 + 116.729844, + 40.195661 ], [ - 116.729827, - 40.195741 + 116.730011, + 40.195726 ], [ - 116.729936, - 40.195785 + 116.73014, + 40.195778 ], [ - 116.730072, - 40.195841 + 116.730309, + 40.195849 ], [ - 116.730205, - 40.195895 + 116.730467, + 40.195911 ], [ - 116.730344, - 40.19595 + 116.730608, + 40.195962 ], [ - 116.730542, - 40.196022 + 116.730673, + 40.195984 ], [ - 116.730609, - 40.196047 + 116.730766, + 40.196015 ], [ - 116.730668, - 40.196067 + 116.730831, + 40.196036 ], [ - 116.730754, - 40.196096 + 116.730935, + 40.196069 ], [ - 116.730821, - 40.196117 + 116.730993, + 40.196087 ], [ - 116.730886, - 40.196138 + 116.731086, + 40.196113 ], [ - 116.730943, - 40.196156 + 116.731164, + 40.196135 ], [ - 116.731011, - 40.196175 + 116.731285, + 40.196165 ], [ - 116.73107, - 40.196192 + 116.731315, + 40.196173 ], [ - 116.731143, - 40.196213 + 116.731434, + 40.196202 ], [ - 116.731221, - 40.196233 + 116.731486, + 40.196214 ], [ - 116.731297, + 116.731586, + 40.196238 + ], + [ + 116.731652, 40.196253 ], [ - 116.731353, - 40.196266 + 116.731749, + 40.196273 ], [ - 116.731432, - 40.196285 + 116.731818, + 40.196287 ], [ - 116.731506, - 40.196303 + 116.731924, + 40.196305 ], [ - 116.731568, + 116.731991, 40.196317 ], [ - 116.731661, - 40.196337 + 116.732108, + 40.196336 ], [ - 116.731725, - 40.19635 + 116.732269, + 40.196361 ], [ - 116.731767, - 40.196358 + 116.732333, + 40.19637 ], [ - 116.731845, - 40.196373 + 116.732464, + 40.196385 ], [ - 116.731925, - 40.196387 + 116.732507, + 40.19639 ], [ - 116.73199, - 40.196398 + 116.732628, + 40.196404 ], [ - 116.732075, - 40.196412 + 116.732678, + 40.196409 ], [ - 116.732153, + 116.732784, + 40.196418 + ], + [ + 116.732851, 40.196424 ], [ - 116.732215, + 116.732985, 40.196433 ], [ - 116.732295, + 116.73314, + 40.196439 + ], + [ + 116.733198, + 40.196441 + ], + [ + 116.733379, + 40.196445 + ], + [ + 116.733548, + 40.196445 + ], + [ + 116.733722, + 40.196445 + ], + [ + 116.733903, + 40.196445 + ], + [ + 116.734081, + 40.196447 + ], + [ + 116.734251, + 40.196446 + ], + [ + 116.734439, + 40.196445 + ], + [ + 116.734624, 40.196444 ], [ - 116.732376, - 40.196454 + 116.734805, + 40.196442 ], [ - 116.732431, - 40.196461 + 116.734982, + 40.196442 ], [ - 116.732529, - 40.196472 + 116.735164, + 40.196441 ], [ - 116.73263, - 40.196483 + 116.735329, + 40.19644 ], [ - 116.732725, - 40.196492 + 116.735519, + 40.196438 ], [ - 116.732821, - 40.196501 + 116.735682, + 40.196437 ], [ - 116.732925, - 40.196509 + 116.735855, + 40.196437 ], [ - 116.733004, - 40.196514 + 116.736034, + 40.196436 ], [ - 116.733108, - 40.19652 + 116.73621, + 40.196435 ], [ - 116.733176, - 40.196523 + 116.736385, + 40.196433 ], [ - 116.733262, - 40.196526 + 116.736566, + 40.196433 ], [ - 116.733334, - 40.196527 + 116.736742, + 40.196431 ], [ - 116.733436, - 40.196528 + 116.736926, + 40.196431 ], [ - 116.733603, - 40.196529 + 116.737046, + 40.19643 ], [ - 116.733728, - 40.196528 + 116.737173, + 40.19643 ], [ - 116.733865, - 40.196527 + 116.737298, + 40.196429 ], [ - 116.733986, - 40.196526 + 116.737449, + 40.196427 ], [ - 116.734142, - 40.196525 + 116.737582, + 40.196427 ], [ - 116.734229, - 40.196524 + 116.737662, + 40.196425 ], [ - 116.734297, - 40.196524 - ], - [ - 116.734396, - 40.196524 - ], - [ - 116.734476, - 40.196523 - ], - [ - 116.734561, - 40.196523 - ], - [ - 116.73464, - 40.196523 - ], - [ - 116.734752, - 40.196522 - ], - [ - 116.734882, - 40.196521 - ], - [ - 116.734997, - 40.19652 - ], - [ - 116.73512, - 40.19652 - ], - [ - 116.735232, - 40.196519 - ], - [ - 116.735887, - 40.196515 - ], - [ - 116.736048, - 40.196515 - ], - [ - 116.736179, - 40.196514 - ], - [ - 116.736308, - 40.196513 - ], - [ - 116.736461, - 40.196512 - ], - [ - 116.736606, - 40.196511 - ], - [ - 116.736748, - 40.19651 - ], - [ - 116.736879, - 40.196509 - ], - [ - 116.737067, - 40.196508 - ], - [ - 116.737219, - 40.196507 - ], - [ - 116.737399, - 40.196506 - ], - [ - 116.737549, - 40.196505 - ], - [ - 116.737693, - 40.196504 + 116.737748, + 40.196425 ], [ 116.73778, - 40.196504 + 40.196424 + ] + ], + "moveTrack": [ + [ + 116.731239, + 40.196264 + ], + [ + 116.731082, + 40.19622 + ], + [ + 116.730919, + 40.196173 + ], + [ + 116.730762, + 40.196125 + ], + [ + 116.730596, + 40.196069 + ], + [ + 116.730437, + 40.196013 + ], + [ + 116.730296, + 40.195959 + ], + [ + 116.730122, + 40.19589 + ], + [ + 116.729956, + 40.195823 + ], + [ + 116.729841, + 40.195777 + ], + [ + 116.729797, + 40.195759 + ], + [ + 116.729696, + 40.195721 + ], + [ + 116.729624, + 40.195695 + ], + [ + 116.729498, + 40.195649 + ], + [ + 116.729464, + 40.195637 + ], + [ + 116.729366, + 40.195604 + ], + [ + 116.729294, + 40.195583 + ], + [ + 116.729122, + 40.195533 + ], + [ + 116.728954, + 40.195489 + ], + [ + 116.728781, + 40.195448 + ], + [ + 116.728616, + 40.195412 + ], + [ + 116.728442, + 40.195376 + ], + [ + 116.728269, + 40.195341 + ], + [ + 116.728087, + 40.195311 + ], + [ + 116.727909, + 40.195283 + ], + [ + 116.727746, + 40.195263 + ], + [ + 116.727561, + 40.195242 + ], + [ + 116.727386, + 40.195226 + ], + [ + 116.727213, + 40.195217 + ], + [ + 116.727036, + 40.19521 + ], + [ + 116.726865, + 40.195206 + ], + [ + 116.72669, + 40.195206 + ], + [ + 116.726512, + 40.195207 + ], + [ + 116.726333, + 40.195209 + ], + [ + 116.726144, + 40.195211 + ], + [ + 116.725959, + 40.195214 + ], + [ + 116.725771, + 40.195217 + ], + [ + 116.725588, + 40.195221 + ], + [ + 116.725411, + 40.195225 + ], + [ + 116.725201, + 40.195228 + ], + [ + 116.72509, + 40.195228 ] ] } \ No newline at end of file diff --git a/modules/mogo-module-v2x/src/main/res/raw/scenario_push_vr_reverse_car_data.json b/modules/mogo-module-v2x/src/main/res/raw/scenario_push_vr_reverse_car_data.json index 091a22e6ac..935bbd3e95 100644 --- a/modules/mogo-module-v2x/src/main/res/raw/scenario_push_vr_reverse_car_data.json +++ b/modules/mogo-module-v2x/src/main/res/raw/scenario_push_vr_reverse_car_data.json @@ -11,418 +11,568 @@ "tts": "对向来车注意减速", "zoom": false, "zoomScale": 15, - "lat": 40.196512, - "lon": 116.736461, + "lat": 40.196175, + "lon": 116.731011, "userHead": "", "msgImgUrl": "", "polyline": [ [ - 116.725092, - 40.195204 + 116.725091, + 40.195123 ], [ - 116.725192, - 40.195205 + 116.725335, + 40.195123 ], [ - 116.725374, - 40.195202 + 116.725499, + 40.195123 ], [ - 116.725656, - 40.195194 + 116.72602, + 40.195109 ], [ - 116.725873, - 40.195188 + 116.726235, + 40.195106 ], [ - 116.726119, - 40.195184 + 116.726424, + 40.195105 ], [ - 116.726315, - 40.195181 + 116.726658, + 40.195104 ], [ - 116.726492, - 40.195179 + 116.726733, + 40.195105 ], [ - 116.726736, - 40.195178 + 116.72688, + 40.195106 ], [ - 116.726953, - 40.195182 + 116.72704, + 40.195109 ], [ - 116.727076, - 40.195185 + 116.727217, + 40.195115 ], [ - 116.727301, - 40.195196 + 116.727388, + 40.195124 ], [ - 116.727433, - 40.195206 + 116.727562, + 40.195136 ], [ - 116.727599, - 40.195221 + 116.727735, + 40.195155 ], [ - 116.727794, - 40.195243 + 116.727887, + 40.195174 ], [ - 116.728016, - 40.195272 + 116.727979, + 40.195186 ], [ - 116.728172, - 40.195297 + 116.728056, + 40.195198 ], [ - 116.728324, - 40.195324 + 116.728165, + 40.195216 ], [ - 116.728466, - 40.195351 + 116.728237, + 40.195228 ], [ - 116.728619, - 40.195383 + 116.728345, + 40.195247 ], [ - 116.728767, + 116.728411, + 40.19526 + ], + [ + 116.728533, + 40.195283 + ], + [ + 116.728589, + 40.195295 + ], + [ + 116.728694, + 40.195318 + ], + [ + 116.728761, + 40.195334 + ], + [ + 116.728868, + 40.19536 + ], + [ + 116.728918, + 40.195372 + ], + [ + 116.729088, 40.195416 ], [ - 116.72892, - 40.195454 + 116.729262, + 40.195462 ], [ - 116.729009, - 40.195477 + 116.729424, + 40.195512 ], [ - 116.729176, - 40.195522 + 116.729547, + 40.195553 ], [ - 116.729344, - 40.195571 + 116.729584, + 40.195566 ], [ - 116.729479, - 40.195614 + 116.729692, + 40.195606 ], [ - 116.729604, - 40.195658 + 116.729739, + 40.195624 ], [ - 116.729719, - 40.1957 + 116.729844, + 40.195661 ], [ - 116.729827, - 40.195741 + 116.730011, + 40.195726 ], [ - 116.729936, - 40.195785 + 116.73014, + 40.195778 ], [ - 116.730072, - 40.195841 + 116.730309, + 40.195849 ], [ - 116.730205, - 40.195895 + 116.730467, + 40.195911 ], [ - 116.730344, - 40.19595 + 116.730608, + 40.195962 ], [ - 116.730542, - 40.196022 + 116.730673, + 40.195984 ], [ - 116.730609, - 40.196047 + 116.730766, + 40.196015 ], [ - 116.730668, - 40.196067 + 116.730831, + 40.196036 ], [ - 116.730754, - 40.196096 + 116.730935, + 40.196069 ], [ - 116.730821, - 40.196117 + 116.730993, + 40.196087 ], [ - 116.730886, - 40.196138 + 116.731086, + 40.196113 ], [ - 116.730943, - 40.196156 + 116.731164, + 40.196135 ], [ - 116.731011, - 40.196175 + 116.731285, + 40.196165 ], [ - 116.73107, - 40.196192 + 116.731315, + 40.196173 ], [ - 116.731143, - 40.196213 + 116.731434, + 40.196202 ], [ - 116.731221, - 40.196233 + 116.731486, + 40.196214 ], [ - 116.731297, + 116.731586, + 40.196238 + ], + [ + 116.731652, 40.196253 ], [ - 116.731353, - 40.196266 + 116.731749, + 40.196273 ], [ - 116.731432, - 40.196285 + 116.731818, + 40.196287 ], [ - 116.731506, - 40.196303 + 116.731924, + 40.196305 ], [ - 116.731568, + 116.731991, 40.196317 ], [ - 116.731661, - 40.196337 + 116.732108, + 40.196336 ], [ - 116.731725, - 40.19635 + 116.732269, + 40.196361 ], [ - 116.731767, - 40.196358 + 116.732333, + 40.19637 ], [ - 116.731845, - 40.196373 + 116.732464, + 40.196385 ], [ - 116.731925, - 40.196387 + 116.732507, + 40.19639 ], [ - 116.73199, - 40.196398 + 116.732628, + 40.196404 ], [ - 116.732075, - 40.196412 + 116.732678, + 40.196409 ], [ - 116.732153, + 116.732784, + 40.196418 + ], + [ + 116.732851, 40.196424 ], [ - 116.732215, + 116.732985, 40.196433 ], [ - 116.732295, + 116.73314, + 40.196439 + ], + [ + 116.733198, + 40.196441 + ], + [ + 116.733379, + 40.196445 + ], + [ + 116.733548, + 40.196445 + ], + [ + 116.733722, + 40.196445 + ], + [ + 116.733903, + 40.196445 + ], + [ + 116.734081, + 40.196447 + ], + [ + 116.734251, + 40.196446 + ], + [ + 116.734439, + 40.196445 + ], + [ + 116.734624, 40.196444 ], [ - 116.732376, - 40.196454 + 116.734805, + 40.196442 ], [ - 116.732431, - 40.196461 + 116.734982, + 40.196442 ], [ - 116.732529, - 40.196472 + 116.735164, + 40.196441 ], [ - 116.73263, - 40.196483 + 116.735329, + 40.19644 ], [ - 116.732725, - 40.196492 + 116.735519, + 40.196438 ], [ - 116.732821, - 40.196501 + 116.735682, + 40.196437 ], [ - 116.732925, - 40.196509 + 116.735855, + 40.196437 ], [ - 116.733004, - 40.196514 + 116.736034, + 40.196436 ], [ - 116.733108, - 40.19652 + 116.73621, + 40.196435 ], [ - 116.733176, - 40.196523 + 116.736385, + 40.196433 ], [ - 116.733262, - 40.196526 + 116.736566, + 40.196433 ], [ - 116.733334, - 40.196527 + 116.736742, + 40.196431 ], [ - 116.733436, - 40.196528 + 116.736926, + 40.196431 ], [ - 116.733603, - 40.196529 + 116.737046, + 40.19643 ], [ - 116.733728, - 40.196528 + 116.737173, + 40.19643 ], [ - 116.733865, - 40.196527 + 116.737298, + 40.196429 ], [ - 116.733986, - 40.196526 + 116.737449, + 40.196427 ], [ - 116.734142, - 40.196525 + 116.737582, + 40.196427 ], [ - 116.734229, - 40.196524 + 116.737662, + 40.196425 ], [ - 116.734297, - 40.196524 - ], - [ - 116.734396, - 40.196524 - ], - [ - 116.734476, - 40.196523 - ], - [ - 116.734561, - 40.196523 - ], - [ - 116.73464, - 40.196523 - ], - [ - 116.734752, - 40.196522 - ], - [ - 116.734882, - 40.196521 - ], - [ - 116.734997, - 40.19652 - ], - [ - 116.73512, - 40.19652 - ], - [ - 116.735232, - 40.196519 - ], - [ - 116.735887, - 40.196515 - ], - [ - 116.736048, - 40.196515 - ], - [ - 116.736179, - 40.196514 - ], - [ - 116.736308, - 40.196513 - ], - [ - 116.736461, - 40.196512 - ], - [ - 116.736606, - 40.196511 - ], - [ - 116.736748, - 40.19651 - ], - [ - 116.736879, - 40.196509 - ], - [ - 116.737067, - 40.196508 - ], - [ - 116.737219, - 40.196507 - ], - [ - 116.737399, - 40.196506 - ], - [ - 116.737549, - 40.196505 - ], - [ - 116.737693, - 40.196504 + 116.737748, + 40.196425 ], [ 116.73778, - 40.196504 + 40.196424 + ] + ], + "moveTrack": [ + [ + 116.731239, + 40.196264 + ], + [ + 116.731082, + 40.19622 + ], + [ + 116.730919, + 40.196173 + ], + [ + 116.730762, + 40.196125 + ], + [ + 116.730596, + 40.196069 + ], + [ + 116.730437, + 40.196013 + ], + [ + 116.730296, + 40.195959 + ], + [ + 116.730122, + 40.19589 + ], + [ + 116.729956, + 40.195823 + ], + [ + 116.729841, + 40.195777 + ], + [ + 116.729797, + 40.195759 + ], + [ + 116.729696, + 40.195721 + ], + [ + 116.729624, + 40.195695 + ], + [ + 116.729498, + 40.195649 + ], + [ + 116.729464, + 40.195637 + ], + [ + 116.729366, + 40.195604 + ], + [ + 116.729294, + 40.195583 + ], + [ + 116.729122, + 40.195533 + ], + [ + 116.728954, + 40.195489 + ], + [ + 116.728781, + 40.195448 + ], + [ + 116.728616, + 40.195412 + ], + [ + 116.728442, + 40.195376 + ], + [ + 116.728269, + 40.195341 + ], + [ + 116.728087, + 40.195311 + ], + [ + 116.727909, + 40.195283 + ], + [ + 116.727746, + 40.195263 + ], + [ + 116.727561, + 40.195242 + ], + [ + 116.727386, + 40.195226 + ], + [ + 116.727213, + 40.195217 + ], + [ + 116.727036, + 40.19521 + ], + [ + 116.726865, + 40.195206 + ], + [ + 116.72669, + 40.195206 + ], + [ + 116.726512, + 40.195207 + ], + [ + 116.726333, + 40.195209 + ], + [ + 116.726144, + 40.195211 + ], + [ + 116.725959, + 40.195214 + ], + [ + 116.725771, + 40.195217 + ], + [ + 116.725588, + 40.195221 + ], + [ + 116.725411, + 40.195225 + ], + [ + 116.725201, + 40.195228 + ], + [ + 116.72509, + 40.195228 ] ] } \ No newline at end of file diff --git a/modules/mogo-module-v2x/src/main/res/raw/scenario_push_vr_vip_light_change_data.json b/modules/mogo-module-v2x/src/main/res/raw/scenario_push_vr_vip_light_change_data.json index 0e9fee5848..eb7b449dc8 100644 --- a/modules/mogo-module-v2x/src/main/res/raw/scenario_push_vr_vip_light_change_data.json +++ b/modules/mogo-module-v2x/src/main/res/raw/scenario_push_vr_vip_light_change_data.json @@ -17,412 +17,562 @@ "msgImgUrl": "", "polyline": [ [ - 116.725092, - 40.195204 + 116.725091, + 40.195123 ], [ - 116.725192, - 40.195205 + 116.725335, + 40.195123 ], [ - 116.725374, - 40.195202 + 116.725499, + 40.195123 ], [ - 116.725656, - 40.195194 + 116.72602, + 40.195109 ], [ - 116.725873, - 40.195188 + 116.726235, + 40.195106 ], [ - 116.726119, - 40.195184 + 116.726424, + 40.195105 ], [ - 116.726315, - 40.195181 + 116.726658, + 40.195104 ], [ - 116.726492, - 40.195179 + 116.726733, + 40.195105 ], [ - 116.726736, - 40.195178 + 116.72688, + 40.195106 ], [ - 116.726953, - 40.195182 + 116.72704, + 40.195109 ], [ - 116.727076, - 40.195185 + 116.727217, + 40.195115 ], [ - 116.727301, - 40.195196 + 116.727388, + 40.195124 ], [ - 116.727433, - 40.195206 + 116.727562, + 40.195136 ], [ - 116.727599, - 40.195221 + 116.727735, + 40.195155 ], [ - 116.727794, - 40.195243 + 116.727887, + 40.195174 ], [ - 116.728016, - 40.195272 + 116.727979, + 40.195186 ], [ - 116.728172, - 40.195297 + 116.728056, + 40.195198 ], [ - 116.728324, - 40.195324 + 116.728165, + 40.195216 ], [ - 116.728466, - 40.195351 + 116.728237, + 40.195228 ], [ - 116.728619, - 40.195383 + 116.728345, + 40.195247 ], [ - 116.728767, + 116.728411, + 40.19526 + ], + [ + 116.728533, + 40.195283 + ], + [ + 116.728589, + 40.195295 + ], + [ + 116.728694, + 40.195318 + ], + [ + 116.728761, + 40.195334 + ], + [ + 116.728868, + 40.19536 + ], + [ + 116.728918, + 40.195372 + ], + [ + 116.729088, 40.195416 ], [ - 116.72892, - 40.195454 + 116.729262, + 40.195462 ], [ - 116.729009, - 40.195477 + 116.729424, + 40.195512 ], [ - 116.729176, - 40.195522 + 116.729547, + 40.195553 ], [ - 116.729344, - 40.195571 + 116.729584, + 40.195566 ], [ - 116.729479, - 40.195614 + 116.729692, + 40.195606 ], [ - 116.729604, - 40.195658 + 116.729739, + 40.195624 ], [ - 116.729719, - 40.1957 + 116.729844, + 40.195661 ], [ - 116.729827, - 40.195741 + 116.730011, + 40.195726 ], [ - 116.729936, - 40.195785 + 116.73014, + 40.195778 ], [ - 116.730072, - 40.195841 + 116.730309, + 40.195849 ], [ - 116.730205, - 40.195895 + 116.730467, + 40.195911 ], [ - 116.730344, - 40.19595 + 116.730608, + 40.195962 ], [ - 116.730542, - 40.196022 + 116.730673, + 40.195984 ], [ - 116.730609, - 40.196047 + 116.730766, + 40.196015 ], [ - 116.730668, - 40.196067 + 116.730831, + 40.196036 ], [ - 116.730754, - 40.196096 + 116.730935, + 40.196069 ], [ - 116.730821, - 40.196117 + 116.730993, + 40.196087 ], [ - 116.730886, - 40.196138 + 116.731086, + 40.196113 ], [ - 116.730943, - 40.196156 + 116.731164, + 40.196135 ], [ - 116.731011, - 40.196175 + 116.731285, + 40.196165 ], [ - 116.73107, - 40.196192 + 116.731315, + 40.196173 ], [ - 116.731143, - 40.196213 + 116.731434, + 40.196202 ], [ - 116.731221, - 40.196233 + 116.731486, + 40.196214 ], [ - 116.731297, + 116.731586, + 40.196238 + ], + [ + 116.731652, 40.196253 ], [ - 116.731353, - 40.196266 + 116.731749, + 40.196273 ], [ - 116.731432, - 40.196285 + 116.731818, + 40.196287 ], [ - 116.731506, - 40.196303 + 116.731924, + 40.196305 ], [ - 116.731568, + 116.731991, 40.196317 ], [ - 116.731661, - 40.196337 + 116.732108, + 40.196336 ], [ - 116.731725, - 40.19635 + 116.732269, + 40.196361 ], [ - 116.731767, - 40.196358 + 116.732333, + 40.19637 ], [ - 116.731845, - 40.196373 + 116.732464, + 40.196385 ], [ - 116.731925, - 40.196387 + 116.732507, + 40.19639 ], [ - 116.73199, - 40.196398 + 116.732628, + 40.196404 ], [ - 116.732075, - 40.196412 + 116.732678, + 40.196409 ], [ - 116.732153, + 116.732784, + 40.196418 + ], + [ + 116.732851, 40.196424 ], [ - 116.732215, + 116.732985, 40.196433 ], [ - 116.732295, + 116.73314, + 40.196439 + ], + [ + 116.733198, + 40.196441 + ], + [ + 116.733379, + 40.196445 + ], + [ + 116.733548, + 40.196445 + ], + [ + 116.733722, + 40.196445 + ], + [ + 116.733903, + 40.196445 + ], + [ + 116.734081, + 40.196447 + ], + [ + 116.734251, + 40.196446 + ], + [ + 116.734439, + 40.196445 + ], + [ + 116.734624, 40.196444 ], [ - 116.732376, - 40.196454 + 116.734805, + 40.196442 ], [ - 116.732431, - 40.196461 + 116.734982, + 40.196442 ], [ - 116.732529, - 40.196472 + 116.735164, + 40.196441 ], [ - 116.73263, - 40.196483 + 116.735329, + 40.19644 ], [ - 116.732725, - 40.196492 + 116.735519, + 40.196438 ], [ - 116.732821, - 40.196501 + 116.735682, + 40.196437 ], [ - 116.732925, - 40.196509 + 116.735855, + 40.196437 ], [ - 116.733004, - 40.196514 + 116.736034, + 40.196436 ], [ - 116.733108, - 40.19652 + 116.73621, + 40.196435 ], [ - 116.733176, - 40.196523 + 116.736385, + 40.196433 ], [ - 116.733262, - 40.196526 + 116.736566, + 40.196433 ], [ - 116.733334, - 40.196527 + 116.736742, + 40.196431 ], [ - 116.733436, - 40.196528 + 116.736926, + 40.196431 ], [ - 116.733603, - 40.196529 + 116.737046, + 40.19643 ], [ - 116.733728, - 40.196528 + 116.737173, + 40.19643 ], [ - 116.733865, - 40.196527 + 116.737298, + 40.196429 ], [ - 116.733986, - 40.196526 + 116.737449, + 40.196427 ], [ - 116.734142, - 40.196525 + 116.737582, + 40.196427 ], [ - 116.734229, - 40.196524 + 116.737662, + 40.196425 ], [ - 116.734297, - 40.196524 - ], - [ - 116.734396, - 40.196524 - ], - [ - 116.734476, - 40.196523 - ], - [ - 116.734561, - 40.196523 - ], - [ - 116.73464, - 40.196523 - ], - [ - 116.734752, - 40.196522 - ], - [ - 116.734882, - 40.196521 - ], - [ - 116.734997, - 40.19652 - ], - [ - 116.73512, - 40.19652 - ], - [ - 116.735232, - 40.196519 - ], - [ - 116.735887, - 40.196515 - ], - [ - 116.736048, - 40.196515 - ], - [ - 116.736179, - 40.196514 - ], - [ - 116.736308, - 40.196513 - ], - [ - 116.736461, - 40.196512 - ], - [ - 116.736606, - 40.196511 - ], - [ - 116.736748, - 40.19651 - ], - [ - 116.736879, - 40.196509 - ], - [ - 116.737067, - 40.196508 - ], - [ - 116.737219, - 40.196507 - ], - [ - 116.737399, - 40.196506 - ], - [ - 116.737549, - 40.196505 - ], - [ - 116.737693, - 40.196504 + 116.737748, + 40.196425 ], [ 116.73778, - 40.196504 + 40.196424 + ] + ], + "moveTrack": [ + [ + 116.731239, + 40.196264 + ], + [ + 116.731082, + 40.19622 + ], + [ + 116.730919, + 40.196173 + ], + [ + 116.730762, + 40.196125 + ], + [ + 116.730596, + 40.196069 + ], + [ + 116.730437, + 40.196013 + ], + [ + 116.730296, + 40.195959 + ], + [ + 116.730122, + 40.19589 + ], + [ + 116.729956, + 40.195823 + ], + [ + 116.729841, + 40.195777 + ], + [ + 116.729797, + 40.195759 + ], + [ + 116.729696, + 40.195721 + ], + [ + 116.729624, + 40.195695 + ], + [ + 116.729498, + 40.195649 + ], + [ + 116.729464, + 40.195637 + ], + [ + 116.729366, + 40.195604 + ], + [ + 116.729294, + 40.195583 + ], + [ + 116.729122, + 40.195533 + ], + [ + 116.728954, + 40.195489 + ], + [ + 116.728781, + 40.195448 + ], + [ + 116.728616, + 40.195412 + ], + [ + 116.728442, + 40.195376 + ], + [ + 116.728269, + 40.195341 + ], + [ + 116.728087, + 40.195311 + ], + [ + 116.727909, + 40.195283 + ], + [ + 116.727746, + 40.195263 + ], + [ + 116.727561, + 40.195242 + ], + [ + 116.727386, + 40.195226 + ], + [ + 116.727213, + 40.195217 + ], + [ + 116.727036, + 40.19521 + ], + [ + 116.726865, + 40.195206 + ], + [ + 116.72669, + 40.195206 + ], + [ + 116.726512, + 40.195207 + ], + [ + 116.726333, + 40.195209 + ], + [ + 116.726144, + 40.195211 + ], + [ + 116.725959, + 40.195214 + ], + [ + 116.725771, + 40.195217 + ], + [ + 116.725588, + 40.195221 + ], + [ + 116.725411, + 40.195225 + ], + [ + 116.725201, + 40.195228 + ], + [ + 116.72509, + 40.195228 ] ] } \ No newline at end of file diff --git a/modules/mogo-module-v2x/src/main/res/raw/scenario_push_vr_xingren_yujing_data.json b/modules/mogo-module-v2x/src/main/res/raw/scenario_push_vr_xingren_yujing_data.json index 0cfae35fbd..da77a667ff 100644 --- a/modules/mogo-module-v2x/src/main/res/raw/scenario_push_vr_xingren_yujing_data.json +++ b/modules/mogo-module-v2x/src/main/res/raw/scenario_push_vr_xingren_yujing_data.json @@ -17,412 +17,562 @@ "msgImgUrl": "", "polyline": [ [ - 116.725092, - 40.195204 + 116.725091, + 40.195123 ], [ - 116.725192, - 40.195205 + 116.725335, + 40.195123 ], [ - 116.725374, - 40.195202 + 116.725499, + 40.195123 ], [ - 116.725656, - 40.195194 + 116.72602, + 40.195109 ], [ - 116.725873, - 40.195188 + 116.726235, + 40.195106 ], [ - 116.726119, - 40.195184 + 116.726424, + 40.195105 ], [ - 116.726315, - 40.195181 + 116.726658, + 40.195104 ], [ - 116.726492, - 40.195179 + 116.726733, + 40.195105 ], [ - 116.726736, - 40.195178 + 116.72688, + 40.195106 ], [ - 116.726953, - 40.195182 + 116.72704, + 40.195109 ], [ - 116.727076, - 40.195185 + 116.727217, + 40.195115 ], [ - 116.727301, - 40.195196 + 116.727388, + 40.195124 ], [ - 116.727433, - 40.195206 + 116.727562, + 40.195136 ], [ - 116.727599, - 40.195221 + 116.727735, + 40.195155 ], [ - 116.727794, - 40.195243 + 116.727887, + 40.195174 ], [ - 116.728016, - 40.195272 + 116.727979, + 40.195186 ], [ - 116.728172, - 40.195297 + 116.728056, + 40.195198 ], [ - 116.728324, - 40.195324 + 116.728165, + 40.195216 ], [ - 116.728466, - 40.195351 + 116.728237, + 40.195228 ], [ - 116.728619, - 40.195383 + 116.728345, + 40.195247 ], [ - 116.728767, + 116.728411, + 40.19526 + ], + [ + 116.728533, + 40.195283 + ], + [ + 116.728589, + 40.195295 + ], + [ + 116.728694, + 40.195318 + ], + [ + 116.728761, + 40.195334 + ], + [ + 116.728868, + 40.19536 + ], + [ + 116.728918, + 40.195372 + ], + [ + 116.729088, 40.195416 ], [ - 116.72892, - 40.195454 + 116.729262, + 40.195462 ], [ - 116.729009, - 40.195477 + 116.729424, + 40.195512 ], [ - 116.729176, - 40.195522 + 116.729547, + 40.195553 ], [ - 116.729344, - 40.195571 + 116.729584, + 40.195566 ], [ - 116.729479, - 40.195614 + 116.729692, + 40.195606 ], [ - 116.729604, - 40.195658 + 116.729739, + 40.195624 ], [ - 116.729719, - 40.1957 + 116.729844, + 40.195661 ], [ - 116.729827, - 40.195741 + 116.730011, + 40.195726 ], [ - 116.729936, - 40.195785 + 116.73014, + 40.195778 ], [ - 116.730072, - 40.195841 + 116.730309, + 40.195849 ], [ - 116.730205, - 40.195895 + 116.730467, + 40.195911 ], [ - 116.730344, - 40.19595 + 116.730608, + 40.195962 ], [ - 116.730542, - 40.196022 + 116.730673, + 40.195984 ], [ - 116.730609, - 40.196047 + 116.730766, + 40.196015 ], [ - 116.730668, - 40.196067 + 116.730831, + 40.196036 ], [ - 116.730754, - 40.196096 + 116.730935, + 40.196069 ], [ - 116.730821, - 40.196117 + 116.730993, + 40.196087 ], [ - 116.730886, - 40.196138 + 116.731086, + 40.196113 ], [ - 116.730943, - 40.196156 + 116.731164, + 40.196135 ], [ - 116.731011, - 40.196175 + 116.731285, + 40.196165 ], [ - 116.73107, - 40.196192 + 116.731315, + 40.196173 ], [ - 116.731143, - 40.196213 + 116.731434, + 40.196202 ], [ - 116.731221, - 40.196233 + 116.731486, + 40.196214 ], [ - 116.731297, + 116.731586, + 40.196238 + ], + [ + 116.731652, 40.196253 ], [ - 116.731353, - 40.196266 + 116.731749, + 40.196273 ], [ - 116.731432, - 40.196285 + 116.731818, + 40.196287 ], [ - 116.731506, - 40.196303 + 116.731924, + 40.196305 ], [ - 116.731568, + 116.731991, 40.196317 ], [ - 116.731661, - 40.196337 + 116.732108, + 40.196336 ], [ - 116.731725, - 40.19635 + 116.732269, + 40.196361 ], [ - 116.731767, - 40.196358 + 116.732333, + 40.19637 ], [ - 116.731845, - 40.196373 + 116.732464, + 40.196385 ], [ - 116.731925, - 40.196387 + 116.732507, + 40.19639 ], [ - 116.73199, - 40.196398 + 116.732628, + 40.196404 ], [ - 116.732075, - 40.196412 + 116.732678, + 40.196409 ], [ - 116.732153, + 116.732784, + 40.196418 + ], + [ + 116.732851, 40.196424 ], [ - 116.732215, + 116.732985, 40.196433 ], [ - 116.732295, + 116.73314, + 40.196439 + ], + [ + 116.733198, + 40.196441 + ], + [ + 116.733379, + 40.196445 + ], + [ + 116.733548, + 40.196445 + ], + [ + 116.733722, + 40.196445 + ], + [ + 116.733903, + 40.196445 + ], + [ + 116.734081, + 40.196447 + ], + [ + 116.734251, + 40.196446 + ], + [ + 116.734439, + 40.196445 + ], + [ + 116.734624, 40.196444 ], [ - 116.732376, - 40.196454 + 116.734805, + 40.196442 ], [ - 116.732431, - 40.196461 + 116.734982, + 40.196442 ], [ - 116.732529, - 40.196472 + 116.735164, + 40.196441 ], [ - 116.73263, - 40.196483 + 116.735329, + 40.19644 ], [ - 116.732725, - 40.196492 + 116.735519, + 40.196438 ], [ - 116.732821, - 40.196501 + 116.735682, + 40.196437 ], [ - 116.732925, - 40.196509 + 116.735855, + 40.196437 ], [ - 116.733004, - 40.196514 + 116.736034, + 40.196436 ], [ - 116.733108, - 40.19652 + 116.73621, + 40.196435 ], [ - 116.733176, - 40.196523 + 116.736385, + 40.196433 ], [ - 116.733262, - 40.196526 + 116.736566, + 40.196433 ], [ - 116.733334, - 40.196527 + 116.736742, + 40.196431 ], [ - 116.733436, - 40.196528 + 116.736926, + 40.196431 ], [ - 116.733603, - 40.196529 + 116.737046, + 40.19643 ], [ - 116.733728, - 40.196528 + 116.737173, + 40.19643 ], [ - 116.733865, - 40.196527 + 116.737298, + 40.196429 ], [ - 116.733986, - 40.196526 + 116.737449, + 40.196427 ], [ - 116.734142, - 40.196525 + 116.737582, + 40.196427 ], [ - 116.734229, - 40.196524 + 116.737662, + 40.196425 ], [ - 116.734297, - 40.196524 - ], - [ - 116.734396, - 40.196524 - ], - [ - 116.734476, - 40.196523 - ], - [ - 116.734561, - 40.196523 - ], - [ - 116.73464, - 40.196523 - ], - [ - 116.734752, - 40.196522 - ], - [ - 116.734882, - 40.196521 - ], - [ - 116.734997, - 40.19652 - ], - [ - 116.73512, - 40.19652 - ], - [ - 116.735232, - 40.196519 - ], - [ - 116.735887, - 40.196515 - ], - [ - 116.736048, - 40.196515 - ], - [ - 116.736179, - 40.196514 - ], - [ - 116.736308, - 40.196513 - ], - [ - 116.736461, - 40.196512 - ], - [ - 116.736606, - 40.196511 - ], - [ - 116.736748, - 40.19651 - ], - [ - 116.736879, - 40.196509 - ], - [ - 116.737067, - 40.196508 - ], - [ - 116.737219, - 40.196507 - ], - [ - 116.737399, - 40.196506 - ], - [ - 116.737549, - 40.196505 - ], - [ - 116.737693, - 40.196504 + 116.737748, + 40.196425 ], [ 116.73778, - 40.196504 + 40.196424 + ] + ], + "moveTrack": [ + [ + 116.731239, + 40.196264 + ], + [ + 116.731082, + 40.19622 + ], + [ + 116.730919, + 40.196173 + ], + [ + 116.730762, + 40.196125 + ], + [ + 116.730596, + 40.196069 + ], + [ + 116.730437, + 40.196013 + ], + [ + 116.730296, + 40.195959 + ], + [ + 116.730122, + 40.19589 + ], + [ + 116.729956, + 40.195823 + ], + [ + 116.729841, + 40.195777 + ], + [ + 116.729797, + 40.195759 + ], + [ + 116.729696, + 40.195721 + ], + [ + 116.729624, + 40.195695 + ], + [ + 116.729498, + 40.195649 + ], + [ + 116.729464, + 40.195637 + ], + [ + 116.729366, + 40.195604 + ], + [ + 116.729294, + 40.195583 + ], + [ + 116.729122, + 40.195533 + ], + [ + 116.728954, + 40.195489 + ], + [ + 116.728781, + 40.195448 + ], + [ + 116.728616, + 40.195412 + ], + [ + 116.728442, + 40.195376 + ], + [ + 116.728269, + 40.195341 + ], + [ + 116.728087, + 40.195311 + ], + [ + 116.727909, + 40.195283 + ], + [ + 116.727746, + 40.195263 + ], + [ + 116.727561, + 40.195242 + ], + [ + 116.727386, + 40.195226 + ], + [ + 116.727213, + 40.195217 + ], + [ + 116.727036, + 40.19521 + ], + [ + 116.726865, + 40.195206 + ], + [ + 116.72669, + 40.195206 + ], + [ + 116.726512, + 40.195207 + ], + [ + 116.726333, + 40.195209 + ], + [ + 116.726144, + 40.195211 + ], + [ + 116.725959, + 40.195214 + ], + [ + 116.725771, + 40.195217 + ], + [ + 116.725588, + 40.195221 + ], + [ + 116.725411, + 40.195225 + ], + [ + 116.725201, + 40.195228 + ], + [ + 116.72509, + 40.195228 ] ] } \ No newline at end of file