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 @@ + + + + + + 是否显示 + + + + + + + + + + + + + + + + + 是否显示 + + + + + + + + + + + + + + + + + 是否显示 + + + + + + + + + + + + +