深圳地圖echarts
<template>
<div ref="projectMap" style="width:1000px;height:500px;"></div>
</template>
<script>
import cqmap from './map.json'// 就是這麼個意思
export default {
methods: {
echartsInit () {
// 使用ref代替document.getElementById
const echartsDom = this.$refs.projectMap
if (echartsDom) {
const myChart = window.echarts.init(echartsDom)
// 此處的cqmap是通過上面地址下載好的重慶市地圖的json資料
window.echarts.registerMap('CQ', cqmap)
const options = {
// title是標題,根據需求是否需要,不需要直接false,需要的話自己看api配置項;
title: {
show: false,
},
// 滑鼠移入展示的提示框,同樣參考api配置項,{a}{b}等都有各自的意義
tooltip: {
trigger: 'item',
formatter: '{b}<br/>工程專案:{c}',
},
// 工具欄 設定為false不展示,內建有匯出圖片,資料檢視,動態型別切換,資料區域縮放,重置五個工具,暫不需要
toolbox: {
show: false,
orient: 'vertical',
left: 'right',
top: 'center',
// 自定義方法
feature: {
dataView: { readOnly: false },
restore: {},
saveAsImage: {},
},
},
visualMap: {
show: false, // 雖然不展示視覺對映元件,但是下面的某些配置是生效的
// min: 100,
// max: 700,
// text: ["High", "Low"],
realtime: false,
// calculable: true,
inRange: {
color: ['rgb(0,137,121)'],
},
},
color: ['#fff'], // 展示的字型顏色
series: [
{
// tooltip展示的標題,設定formatter後直接通過{b}展示區域name,此值的代號為{a}。
name: '展示的名稱',
type: 'map',
mapType: 'CQ', // 自定義擴充套件圖表型別,必須和registerMap的第一個引數相同
// roam: true, //可以拖拽和縮放
label: {
show: true,
color: '#fff',
},
data: [
{ name: '羅湖區', value: this.randomData() },
{ name: '福田區', value: this.randomData() },
{ name: '南山區', value: this.randomData() },
{ name: '龍華區', value: this.randomData() },
{ name: '寶安區', value: this.randomData() },
{ name: '坪山區', value: this.randomData() },
{ name: '龍崗區', value: this.randomData() },
{ name: '城口縣', value: this.randomData() },
{ name: '大鵬新區', value: this.randomData() },
{ name: '光明區', value: this.randomData() },
{ name: '鹽田區', value: this.randomData() },
// { name: '巫山縣', value: this.randomData() },
// { name: '涪陵區', value: this.randomData() },
// { name: '豐都縣', value: this.randomData() },
// { name: '武隆區', value: this.randomData() },
// { name: '南川區', value: this.randomData() },
// { name: '秀山土家族苗族自治縣', value: this.randomData() },
// { name: '黔江區', value: this.randomData() },
// { name: '合川區', value: this.randomData() },
// { name: '綦江區', value: this.randomData() },
// { name: '忠縣', value: this.randomData() },
// { name: '梁平區', value: this.randomData() },
// { name: '巴南區', value: this.randomData() },
// { name: '潼南區', value: this.randomData() },
// { name: '永川區', value: this.randomData() },
// { name: '墊江縣', value: this.randomData() },
// { name: '渝北區', value: this.randomData() },
// { name: '長壽區', value: this.randomData() },
// { name: '大足區', value: this.randomData() },
// { name: '銅梁區', value: this.randomData() },
// { name: '榮昌區', value: this.randomData() },
// { name: '璧山區', value: this.randomData() },
// { name: '北碚區', value: this.randomData() },
// { name: '萬盛區', value: this.randomData() },
// { name: '九龍坡區', value: this.randomData() },
// { name: '沙坪壩區', value: this.randomData() },
// { name: '南岸區', value: this.randomData() },
// { name: '江北區', value: this.randomData() },
// { name: '大渡口區', value: this.randomData() },
// { name: '渝中區', value: this.randomData() },
],
// 自定義名稱對映,json中properties的name如果是英文代號的話,可以使用nameMap和中文名對應起來,如果name是中文的話則不需要nameMap
// nameMap: {
// ckx: "城口縣"
// },
},
],
}
myChart.setOption(options)
}
},
randomData () {
return Math.round(Math.random() * 1000)
},
},
// 使用mounted的原因是因為在mounted中dom已經載入完畢,否則會報錯,找不到getAttribute這個方法
mounted () {
this.$nextTick(() => {
this.echartsInit()
})
},
}
</script>
<style lang="scss" scoped>
</style>
地圖json :http://datav.aliyun.com/tools/atlas/#&lat=22.859177836173288&lng=113.68440594166313&zoom=12.5
相關文章
- echarts 地圖統計Echarts地圖
- Echarts 設定地圖大小Echarts地圖
- 深圳3D地圖3D地圖
- vue使用Echarts繪製地圖VueEcharts地圖
- ECharts 實現地圖散點圖(上)Echarts地圖
- vue+echarts實現地圖及飛線圖VueEcharts地圖
- ECharts系列 (01):地圖三級下鑽Echarts地圖
- echarts之靜態與動態地圖Echarts地圖
- React,Echarts實現2D地圖並且支援地圖下鑽ReactEcharts地圖
- VUE中使用Echarts繪製地圖遷移VueEcharts地圖
- 在 ECharts GL 中繪製三維地圖Echarts地圖
- ECharts+百度地圖網路拓撲圖應用Echarts地圖
- 用Echarts請求百度地圖api 小案例Echarts地圖API
- echarts 地圖 免費離線js,json包分享Echarts地圖JSON
- Echarts 中國地圖各個省市自治區自定義顏色Echarts地圖
- react專案結合echarts,百度地圖實現熱力圖ReactEcharts地圖
- 百度地圖、ECharts整合HT for Web網路拓撲圖應用地圖EchartsWeb
- echarts搞定各種地圖(想怎麼畫就怎麼畫)Echarts地圖
- vue中vuex,echarts,地圖,ueditor的使用(一篇就夠)VueEcharts地圖
- 關於ECharts外掛實現中國地圖效果的總結Echarts地圖
- Java版ECharts圖表庫ECharts-JavaJavaEcharts
- vue-2 引入echarts畫中國地圖底部地圖填充不顯示, 只出現了南海諸島部分VueEcharts地圖
- 深圳找 Java 真是地獄模式!Java模式
- 基於Echarts的百度地圖疊加arcgis server的WMS圖層服務Echarts地圖Server
- [Echarts視覺化] 一.入門篇之簡單繪製中國地圖和貴州地區Echarts視覺化地圖
- vue cli3.0 結合echarts3.0和地圖的使用方法VueEchartsS3地圖
- 關於如何使用echarts實現市縣區地圖的視覺化Echarts地圖視覺化
- echarts 折線圖拼接Echarts
- ECharts 餅圖繪製教程Echarts
- JavaWeb之製圖神器EchartsJavaWebEcharts
- vue+echarts視覺化大屏,全國地圖下鑽,頁面自適應VueEcharts視覺化地圖
- 直播平臺原始碼,數字化大屏地圖輪播的實現echarts原始碼地圖Echarts
- 高德地圖報告:通勤出行熱度顯著回升 深圳、杭州領跑全國地圖
- iOS 地圖定位 地圖iOS地圖
- vue+echarts+datav大屏資料展示及實現中國地圖省市縣下鑽VueEcharts地圖
- asp.net web開發中使用JS百度地圖資訊彈出窗中顯示echarts圖ASP.NETWebJS地圖Echarts
- 繪製圖表 go-echartsGoEcharts
- echarts圖表樣式轉換Echarts