From a4cd1f31b5280d4b6720e9fe66a4979bce2d9bf3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=A5=94=E8=B7=91=E7=9A=84=E9=9D=A2=E6=9D=A1?= <1262327911@qq.com> Date: Thu, 14 Mar 2024 12:07:41 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E5=90=88=E5=B9=B61.3.1=E7=9A=84?= =?UTF-8?q?=E5=86=85=E5=AE=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- package.json | 2 +- .../components/Charts/Maps/MapAmap/config.ts | 27 +- .../components/Charts/Maps/MapAmap/config.vue | 107 ++- .../components/Charts/Maps/MapAmap/index.vue | 45 +- .../components/Charts/Maps/MapBase/index.vue | 14 +- .../Charts/Scatters/ScatterCommon/config.ts | 161 ++-- .../ChartDataMonacoEditor/index.vue | 8 +- .../components/ChartDataPondControl/index.vue | 2 +- .../chart/ContentEdit/hooks/useDrag.hook.ts | 784 +++++++++--------- .../ContentHeader/headerRightBtn/index.vue | 104 +++ src/views/login/index.vue | 8 +- types/shims-vue.d.ts | 3 +- 12 files changed, 756 insertions(+), 509 deletions(-) diff --git a/package.json b/package.json index d4b4666c..42fda19f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "go-view", - "version": "1.3.0", + "version": "1.3.1", "engines": { "node": ">=12.0" }, diff --git a/src/packages/components/Charts/Maps/MapAmap/config.ts b/src/packages/components/Charts/Maps/MapAmap/config.ts index a7ba4ac9..c730fb28 100644 --- a/src/packages/components/Charts/Maps/MapAmap/config.ts +++ b/src/packages/components/Charts/Maps/MapAmap/config.ts @@ -16,8 +16,7 @@ export enum ThemeEnum { MACARON = 'macaron', BLUE = 'blue', DARKBLUE = 'darkblue', - WINE = 'wine', - WEIXIN = 'tileLayer' + WINE = 'wine' } export enum LangEnum { @@ -31,6 +30,11 @@ export enum ViewModeEnum { STEREOSCOPIC = '3D' } +export const ShowHideEnum = { + SHOW: true, + HIDE: false +} + export enum FeaturesEnum { BG = 'bg', POINT = 'point', @@ -71,6 +75,25 @@ export const option = { }, mapMarkerType: MarkerEnum.CIRCLE_MARKER, viewMode: ViewModeEnum.PLANE, + showLabel: ShowHideEnum.SHOW, + satelliteTileLayer: { + show: ShowHideEnum.HIDE, + zIndex: 1, + opacity: 1, + zooms: [3, 18] + }, + roadNetTileLayer: { + show: ShowHideEnum.HIDE, + zIndex: 2, + opacity: 1, + zooms: [3, 18] + }, + trafficTileLayer: { + show: ShowHideEnum.HIDE, + zIndex: 3, + opacity: 1, + zooms: [3, 18] + }, lang: LangEnum.ZH_CN, features: [FeaturesEnum.BG, FeaturesEnum.POINT, FeaturesEnum.ROAD, FeaturesEnum.BUILDING] } diff --git a/src/packages/components/Charts/Maps/MapAmap/config.vue b/src/packages/components/Charts/Maps/MapAmap/config.vue index 8d8936b5..48d7edc5 100644 --- a/src/packages/components/Charts/Maps/MapAmap/config.vue +++ b/src/packages/components/Charts/Maps/MapAmap/config.vue @@ -22,13 +22,21 @@ - + + + + + + 是否显示 + + + @@ -76,11 +84,94 @@ + + + + + + 是否显示 + + + + + + + + + + + + + + + + + 是否显示 + + + + + + + + + + + + + + + + + 是否显示 + + + + + + + + + + + + + + + + + +