2022-07-26 16:44:35 +08:00
|
|
|
|
<template>
|
2022-07-26 22:07:53 +08:00
|
|
|
|
<div class="cn-chart__map">
|
|
|
|
|
|
<div class="map-canvas" id="npmMap"></div>
|
|
|
|
|
|
</div>
|
2022-07-26 16:44:35 +08:00
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
|
|
<script>
|
2022-07-26 22:07:53 +08:00
|
|
|
|
import mapTestData from '@/views/charts2/charts/mapTestData'
|
|
|
|
|
|
import { shallowRef } from 'vue'
|
|
|
|
|
|
import * as am4Core from '@amcharts/amcharts4/core'
|
|
|
|
|
|
import * as am4Maps from '@amcharts/amcharts4/maps'
|
|
|
|
|
|
import { getGeoData } from '@/utils/tools'
|
|
|
|
|
|
import { storageKey } from '@/utils/constants'
|
|
|
|
|
|
|
2022-07-26 16:44:35 +08:00
|
|
|
|
export default {
|
2022-07-26 22:07:53 +08:00
|
|
|
|
name: 'NpmMap',
|
|
|
|
|
|
data () {
|
|
|
|
|
|
return {
|
|
|
|
|
|
mapTestData,
|
|
|
|
|
|
myChart: null,
|
|
|
|
|
|
polygonSeries: null
|
|
|
|
|
|
}
|
|
|
|
|
|
},
|
|
|
|
|
|
methods: {
|
|
|
|
|
|
initMap () {
|
|
|
|
|
|
// 初始化插件
|
|
|
|
|
|
const chart = am4Core.create('npmMap', am4Maps.MapChart)
|
|
|
|
|
|
chart.geodata = getGeoData(storageKey.iso36112WorldLow)
|
|
|
|
|
|
chart.projection = new am4Maps.projections.Miller()
|
|
|
|
|
|
chart.homeZoomLevel = 2
|
|
|
|
|
|
chart.homeGeoPoint = {
|
|
|
|
|
|
latitude: 21,
|
|
|
|
|
|
longitude: 0
|
|
|
|
|
|
}
|
|
|
|
|
|
this.myChart = shallowRef(chart)
|
|
|
|
|
|
this.polygonSeries = shallowRef(this.polygonSeriesFactory())
|
|
|
|
|
|
},
|
|
|
|
|
|
polygonSeriesFactory () {
|
|
|
|
|
|
const polygonSeries = this.myChart.series.push(new am4Maps.MapPolygonSeries())
|
|
|
|
|
|
polygonSeries.useGeodata = true
|
|
|
|
|
|
polygonSeries.exclude = ['AQ'] // 排除南极洲
|
|
|
|
|
|
polygonSeries.tooltip.getFillFromObject = false
|
|
|
|
|
|
polygonSeries.tooltip.background.fill = am4Core.color('#41495D')
|
|
|
|
|
|
polygonSeries.tooltip.background.filters.clear()
|
|
|
|
|
|
polygonSeries.tooltip.background.stroke = '#41495D'
|
|
|
|
|
|
const polygonTemplate = polygonSeries.mapPolygons.template
|
|
|
|
|
|
polygonTemplate.nonScalingStroke = true
|
|
|
|
|
|
polygonTemplate.strokeWidth = 0.5
|
|
|
|
|
|
polygonTemplate.stroke = am4Core.color('#CAD2D3')
|
|
|
|
|
|
polygonTemplate.fill = am4Core.color('#EFEFEF')
|
|
|
|
|
|
return polygonSeries
|
|
|
|
|
|
},
|
|
|
|
|
|
imageSeriesFactory (dataField) {
|
|
|
|
|
|
const vm = this
|
|
|
|
|
|
// amcharts实例中增加地图图案series(用来在地图上画圆点、方块、连线等)
|
|
|
|
|
|
const imageSeries = this.myChart.series.push(new am4Maps.MapImageSeries())
|
|
|
|
|
|
// 指定接口数据中哪个字段名代表数值
|
|
|
|
|
|
imageSeries.dataFields.value = dataField || 'count'
|
|
|
|
|
|
// 取出图案的默认模板,用来接下来做自定义更改
|
|
|
|
|
|
const imageTemplate = imageSeries.mapImages.template
|
|
|
|
|
|
imageTemplate.nonScaling = true
|
|
|
|
|
|
// 通过地区ID来获取经纬度,设置后无需自己提供经纬度
|
|
|
|
|
|
imageTemplate.adapter.add('latitude', function (latitude, target) {
|
|
|
|
|
|
const polygon = vm.polygonSeries.getPolygonById(target.dataItem.dataContext.id)
|
|
|
|
|
|
if (polygon) {
|
|
|
|
|
|
return polygon.visualLatitude
|
|
|
|
|
|
}
|
|
|
|
|
|
return latitude
|
|
|
|
|
|
})
|
|
|
|
|
|
imageTemplate.adapter.add('longitude', function (longitude, target) {
|
|
|
|
|
|
const polygon = vm.polygonSeries.getPolygonById(target.dataItem.dataContext.id)
|
|
|
|
|
|
if (polygon) {
|
|
|
|
|
|
return polygon.visualLongitude
|
|
|
|
|
|
}
|
|
|
|
|
|
return longitude
|
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
|
|
// 设置图案样式
|
|
|
|
|
|
const circle = imageTemplate.createChild(am4Core.Circle)
|
|
|
|
|
|
circle.propertyFields.fill = 'color'
|
|
|
|
|
|
circle.propertyFields.stroke = 'border'
|
|
|
|
|
|
circle.strokeWidth = 1
|
|
|
|
|
|
circle.tooltipHTML = this.generatePolygonTooltipHTML()
|
|
|
|
|
|
imageSeries.tooltip.getFillFromObject = false
|
|
|
|
|
|
imageSeries.tooltip.background.fill = am4Core.color('#41495D')
|
|
|
|
|
|
imageSeries.tooltip.background.filters.clear()
|
|
|
|
|
|
imageSeries.tooltip.background.stroke = '#41495D'
|
|
|
|
|
|
|
|
|
|
|
|
imageSeries.heatRules.push({
|
|
|
|
|
|
target: circle,
|
|
|
|
|
|
property: 'radius',
|
|
|
|
|
|
min: 6,
|
|
|
|
|
|
max: 25,
|
|
|
|
|
|
dataField: 'value'
|
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
|
|
return imageSeries
|
|
|
|
|
|
}
|
|
|
|
|
|
},
|
|
|
|
|
|
mounted () {
|
|
|
|
|
|
this.initMap()
|
|
|
|
|
|
}
|
2022-07-26 16:44:35 +08:00
|
|
|
|
}
|
|
|
|
|
|
</script>
|