123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167 |
- import * as echarts from 'echarts';
- import styles from './mapComponent.less';
- import React, { useEffect, useRef } from 'react';
- import chinaMap from '../../mapJson/chinaMapData.json';
- import border from '../../../public/assets/decoration_six.png';
- import * as datav from '@jiaminghi/data-view-react';
- interface propsData {
- userData: object;
- areaList: any;
- }
- /**
- * 地图组件
- * @constructor
- */
- const MapComponent: React.FC<propsData> = (props) => {
- const chartRef: any = useRef();
- const { userData, areaList } = props;
- const data: any = chinaMap; //地图的数据来自之前引入的json文件
- const geoCoordMap = {
- 济南市: [117, 36.65],
- 青岛市: [120.33, 36.07],
- 淄博市: [118.05, 36.78],
- 枣庄市: [117.57, 34.86],
- 东营市: [118.49, 37.46],
- 烟台市: [121.39, 37.52],
- 潍坊市: [119.1, 36.62],
- 济宁市: [116.59, 35.38],
- 泰安市: [117.13, 36.18],
- 威海市: [122.1, 37.5],
- 日照市: [119.46, 35.42],
- 临沂市: [118.35, 35.05],
- 德州市: [116.29, 37.45],
- 聊城市: [115.97, 36.45],
- 滨州市: [118.03, 37.36],
- 菏泽市: [115.47, 35.25],
- };
- const convertData = (mapData: string | any[]) => {
- const res = [];
- for (let i = 0; i < mapData.length; i++) {
- const geoCoord = geoCoordMap[mapData[i].name];
- if (geoCoord) {
- res.push({
- name: mapData[i].name,
- value: geoCoord.concat(mapData[i].value),
- });
- }
- }
- return res;
- };
- useEffect(() => {
- const myChart = echarts.init(chartRef.current);
- echarts.registerMap('china', data); //此步不可省略,要想展示一个地图,先需要注册,巨坑(官方根本无文档,全靠瞎猜,气死我了快)
- const options = {
- geo: {
- map: 'china',
- show: true,
- roam: false,
- zoom: 1.4,
- top: 130,
- label: {
- emphasis: {
- show: false,
- },
- },
- itemStyle: {
- normal: {
- areaColor: '#091632',
- borderColor: '#1773c3',
- shadowColor: '#1773c3',
- shadowBlur: 20,
- },
- },
- regions: [
- {
- name: '山东省',
- itemStyle: {
- areaColor: '#146637',
- },
- },
- ],
- },
- series: [
- {
- type: 'map',
- map: 'china',
- zoom: 1.4,
- top: 130,
- label: {
- normal: {
- show: false,
- },
- emphasis: {
- show: false,
- textStyle: {
- color: '#fff',
- },
- },
- },
- roam: false,
- itemStyle: {
- normal: {
- areaColor: '#031525',
- borderColor: '#3B5077',
- borderWidth: 1,
- },
- emphasis: {
- areaColor: '#0f2c70',
- },
- },
- data: [],
- },
- {
- type: 'scatter',
- coordinateSystem: 'geo',
- data: convertData(areaList),
- symbolSize: function (val: number[]) {
- return val[2] / 20;
- },
- label: {
- normal: {
- formatter: '{b}',
- position: 'right',
- show: false,
- },
- emphasis: {
- show: true,
- },
- },
- itemStyle: {
- normal: {
- color: '#ddb926',
- },
- },
- },
- ],
- };
- myChart.setOption(options, true);
- // 组件卸载
- return () => {
- myChart.dispose();
- };
- }, []);
- return (
- <div className={styles.container}>
- <div ref={chartRef} className={styles.mapContent} />
- <div className={styles.content_num}>
- <div style={{ position: 'relative' }}>
- <img src={border} alt="装饰线条" />
- <div className={styles.content}>
- <datav.DigitalFlop
- config={userData}
- className={styles.content_value}
- style={{ width: '200px', height: '50px' }}
- />
- <div className={styles.content_title}>用户数</div>
- </div>
- </div>
- </div>
- </div>
- );
- };
- export default MapComponent;
|