echarts地图拖拽地图图标
时间: 2023-10-31 20:46:38 浏览: 131
地图的拖拽功能
如何设置?
要设置地图拖拽图标,你需要在 ECharts 的地图系列中使用 visualMap 组件。 visualMap.component 定义为一个 slider 组件,通常用于控制颜色等连续数据的范围,但是也可以在地图中使用来控制地图的缩放。你需要设置 visualMap.type 为 'continuous',visualMap.min 和 visualMap.max 为 0 和 100,visualMap.bottom 为 '5%',visualMap.left 为 'center',visualMap.inRange.outterColor 为 '#cfcfcf',visualMap.inRange.color 为 '#efefef',visualMap.text 的格式为 '{value}%',visualMap.textStyle.fontSize 为 12,visualMap.textStyle.color 为 '#333',visualMap.controllerPos.padding 为 10,visualMap.controllerPos.width 为 10,visualMap.controllerPos.height 为 15,visualMap.controllerPos.right 为 '10%',visualMap.controllerPos.bottom 为 '20%'.
阅读全文