123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285 |
- const title = '高德地图'
- const setting = [
- {
- label: '语言类型',
-
- type: 'select',
-
- field: 'customize_lang',
- optionField: 'customize.lang',
-
- multiple: false,
- options: [
- {
- label: '中文简称',
- value: 'zh_cn'
- },
- {
- label: '英文',
- value: 'en'
- },
- {
- label: '中英文对照',
- value: 'zh_en'
- }
- ],
-
- value: 'zh_cn',
-
- tabName: 'custom'
- },
- {
- label: 'Key',
-
- type: 'input',
-
- field: 'customize_mapKey',
-
- optionField: 'customize.mapKey',
-
- multiple: false,
-
- value: '1b0a1423b70bbcbc20c9c87327e5e94e',
-
- tabName: 'custom'
- },
- {
- label: '主题',
-
- type: 'select',
-
- field: 'customize_mapStyle',
- optionField: 'customize.mapStyle',
- options: [
- {
- label: '标准',
- value: 'normal'
- },
- {
- label: '幻影黑',
- value: 'dark'
- },
- {
- label: '月光银',
- value: 'light'
- },
- {
- label: '远山黛',
- value: 'whitesmoke'
- },
- {
- label: '草色青',
- value: 'fresh'
- },
- {
- label: '雅士灰',
- value: 'grey'
- },
- {
- label: '涂鸦',
- value: 'graffiti'
- },
- {
- label: '马卡龙',
- value: 'macaron'
- },
- {
- label: '靛青蓝',
- value: 'blue'
- },
- {
- label: '极夜黑',
- value: 'darkblue'
- },
- {
- label: '酱籽',
- value: 'wine'
- }
- ],
-
- multiple: false,
-
- value: 'normal',
-
- tabName: 'custom'
- },
- {
- label: '内容',
-
- type: 'select',
-
- field: 'customize_features',
- optionField: 'customize.features',
- options: [
- {
- label: '区域面',
- value: 'bg'
- },
- {
- label: '道路',
- value: 'road'
- },
- {
- label: '建筑物',
- value: 'building'
- },
- {
- label: '标注',
- value: 'point'
- }
- ],
-
- multiple: true,
-
- value: ['bg', 'road', 'building', 'point'],
-
- tabName: 'custom'
- },
- {
- label: '经度',
-
- type: 'inputNumber',
- min: 0,
-
- field: 'customize_lng',
- optionField: 'customize.lng',
-
- multiple: false,
-
- value: 117.13872961838531,
-
- tabName: 'custom'
- },
- {
- label: '维度',
-
- type: 'inputNumber',
-
- min: 0,
-
- field: 'customize_lat',
- optionField: 'customize.lat',
-
- multiple: false,
-
- value: 31.826653302438004,
-
- tabName: 'custom'
- },
- {
- label: '缩放',
-
- type: 'inputNumber',
-
- min: 3,
- max: 18,
-
- field: 'customize_zoom',
- optionField: 'customize.zoom',
-
- multiple: false,
-
- value: 16,
-
- tabName: 'custom'
- },
- {
- label: '模式',
-
- type: 'select',
- options: [
- {
- label: '2D',
- value: '2D'
- },
- {
- label: '3D',
- value: '3D'
- }
- ],
-
- field: 'customize_viewMode',
- optionField: 'customize.viewMode',
-
- multiple: false,
-
- value: '2D',
-
- tabName: 'custom'
- },
- {
- label: '标记内容',
-
- type: 'input',
-
- field: 'customize_markerSpan',
- optionField: 'customize.markerSpan',
-
- multiple: false,
-
- value: '科大国创软件股份有限公司',
-
- tabName: 'custom'
- },
- {
- label: '标记点经度',
-
- type: 'inputNumber',
- min: 0,
-
- field: 'customize_markerLng',
- optionField: 'customize.markerLng',
-
- multiple: false,
-
- value: 117.13872961838531,
-
- tabName: 'custom'
- },
- {
- label: '标记点维度',
-
- type: 'inputNumber',
-
- field: 'customize_markerLat',
- optionField: 'customize.markerLat',
-
- multiple: false,
-
- value: 31.826653302438004,
-
- tabName: 'custom'
- }
- ]
- const option = {
-
- customize: {
- lang: 'zh_cn',
- mapKey: '1b0a1423b70bbcbc20c9c87327e5e94e',
- mapStyle: 'normal',
- features: ['bg', 'road', 'building', 'point'],
- lng: 117.13872961838531,
- lat: 31.826653302438004,
- zoom: 17,
- markerSpan: '科大国创软件股份有限公司',
- markerLng: 117.13872961838531,
- markerLat: 31.826653302438004
- }
- }
- export default {
- title,
- setting,
- option: {
- ...option,
- displayOption: {
- dataAllocation: {
- enable: false
- }
- }
- }
- }
|