当前位置:   article > 正文

Echarts(react)实现中国地图的引入以及使用_eachart for react 中国地图

eachart for react 中国地图

事实上,只需要将Echarts官网提供的series[ { mapType: ‘china’} ]就可以简单实现
在这里插入图片描述

import React from "react";
import EChartBase from "./EChartBase";
import echarts from 'echarts/lib/echarts';
import 'echarts/map/js/china';
import geoJson from 'echarts/map/json/china.json';


class EChartMapBars extends React.Compontent {

    constructor(props) {
        super(props);
        this.option = {
            title: {
                text: '各省份使用情况',
                subtext: '数据暂虚构',
                left: 'center'
            },
            tooltip: {
                trigger: 'item'
            },
            toolbox: {
                show: true,
                orient: 'vertical',
                left: 'right',
                top: 'center',
                feature: {
                    mark: { show: true },
                    dataView: { show: true, readOnly: false },
                    restore: { show: true },
                    saveAsImage: { show: true }
                }
            },
            visualMap: {
                min: 0,
                max: 2500,
                left: 'left',
                top: 'bottom',
                text: ['高', '低'],           // 文本,默认为数值文本
                calculable: true
            },
            legend: {
                orient: 'vertical',
                left: 'left',
                data: ['新增设计',
                //  'iphone4', 'iphone5'
                ]
            },
            series: [
                {
                    name: '新增设计',
                    type: 'map',
                    mapType: 'china',
                    roam: false,
                    label: {
                        show:true
                        // normal: {
                        //     show: false
                        // },
                        // emphasis: {
                        //     show: true
                        // }
                    },
                    data: [
                        { name: '北京', value: Math.round(Math.random() * 1000) },
                        { name: '天津', value: Math.round(Math.random() * 1000) },
                        { name: '上海', value: Math.round(Math.random() * 1000) },
                        { name: '重庆', value: Math.round(Math.random() * 1000) },
                        { name: '河北', value: Math.round(Math.random() * 1000) },
                        { name: '河南', value: Math.round(Math.random() * 1000) },
                        { name: '云南', value: Math.round(Math.random() * 1000) },
                        { name: '辽宁', value: Math.round(Math.random() * 1000) },
                        { name: '黑龙江', value: Math.round(Math.random() * 1000) },
                        { name: '湖南', value: Math.round(Math.random() * 1000) },
                        { name: '安徽', value: Math.round(Math.random() * 1000) },
                        { name: '山东', value: Math.round(Math.random() * 1000) },
                        { name: '新疆', value: Math.round(Math.random() * 1000) },
                        { name: '江苏', value: Math.round(Math.random() * 1000) },
                        { name: '浙江', value: Math.round(Math.random() * 1000) },
                        { name: '江西', value: Math.round(Math.random() * 1000) },
                        { name: '湖北', value: Math.round(Math.random() * 1000) },
                        { name: '广西', value: Math.round(Math.random() * 1000) },
                        { name: '甘肃', value: Math.round(Math.random() * 1000) },
                        { name: '山西', value: Math.round(Math.random() * 1000) },
                        { name: '内蒙古', value: Math.round(Math.random() * 1000) },
                        { name: '陕西', value: Math.round(Math.random() * 1000) },
                        { name: '吉林', value: Math.round(Math.random() * 1000) },
                        { name: '福建', value: Math.round(Math.random() * 1000) },
                        { name: '贵州', value: Math.round(Math.random() * 1000) },
                        { name: '广东', value: Math.round(Math.random() * 1000) },
                        { name: '青海', value: Math.round(Math.random() * 1000) },
                        { name: '西藏', value: Math.round(Math.random() * 1000) },
                        { name: '四川', value: Math.round(Math.random() * 1000) },
                        { name: '宁夏', value: Math.round(Math.random() * 1000) },
                        { name: '海南', value: Math.round(Math.random() * 1000) },
                        { name: '台湾', value: Math.round(Math.random() * 1000) },
                        { name: '香港', value: Math.round(Math.random() * 1000) },
                        { name: '澳门', value: Math.round(Math.random() * 1000) }
                    ]
                },
                // {
                //     name: 'iphone4',
                //     type: 'map',
                //     mapType: 'china',
                //     label: {
                //         normal: {
                //             show: false
                //         },
                //         emphasis: {
                //             show: true
                //         }
                //     },
                //     data: [
                //         { name: '北京', value: Math.round(Math.random() * 1000) },
                //         { name: '天津', value: Math.round(Math.random() * 1000) },
                //         { name: '上海', value: Math.round(Math.random() * 1000) },
                //         { name: '重庆', value: Math.round(Math.random() * 1000) },
                //         { name: '河北', value: Math.round(Math.random() * 1000) },
                //         { name: '安徽', value: Math.round(Math.random() * 1000) },
                //         { name: '新疆', value: Math.round(Math.random() * 1000) },
                //         { name: '浙江', value: Math.round(Math.random() * 1000) },
                //         { name: '江西', value: Math.round(Math.random() * 1000) },
                //         { name: '山西', value: Math.round(Math.random() * 1000) },
                //         { name: '内蒙古', value: Math.round(Math.random() * 1000) },
                //         { name: '吉林', value: Math.round(Math.random() * 1000) },
                //         { name: '福建', value: Math.round(Math.random() * 1000) },
                //         { name: '广东', value: Math.round(Math.random() * 1000) },
                //         { name: '西藏', value: Math.round(Math.random() * 1000) },
                //         { name: '四川', value: Math.round(Math.random() * 1000) },
                //         { name: '宁夏', value: Math.round(Math.random() * 1000) },
                //         { name: '香港', value: Math.round(Math.random() * 1000) },
                //         { name: '澳门', value: Math.round(Math.random() * 1000) }
                //     ]
                // },
                // {
                //     name: 'iphone5',
                //     type: 'map',
                //     mapType: 'china',
                //     label: {
                //         normal: {
                //             show: false
                //         },
                //         emphasis: {
                //             show: true
                //         }
                //     },
                //     data: [
                //         { name: '北京', value: Math.round(Math.random() * 1000) },
                //         { name: '天津', value: Math.round(Math.random() * 1000) },
                //         { name: '上海', value: Math.round(Math.random() * 1000) },
                //         { name: '广东', value: Math.round(Math.random() * 1000) },
                //         { name: '台湾', value: Math.round(Math.random() * 1000) },
                //         { name: '香港', value: Math.round(Math.random() * 1000) },
                //         { name: '澳门', value: Math.round(Math.random() * 1000) }
                //     ]
                // }
            ]
        };
    };

    componentDidMount = () => {
        this.bond()
        // if (this.props.option) {
        //     this.bond(this.props.option)
        // }
        window.addEventListener('resize', () => {
            if (this.props && this.props.option && this.props.option.eleId) {
                const dom = document.getElementById(this.props.option.eleId);
                if (dom) {
                    const myChart = echarts.init(dom);
                    myChart.resize();
                }
            }
        })
    };

    componentDidUpdate = () => {
        this.bond()
        // if (this.props.option) {
        //     this.bond(this.props.option)
        // }
    };

    updateOption = (option) => {

    };

    bond = (option) => {
        // if (!option) return;
        const dom = document.getElementById('echartsMapId');
        if (!dom) return;
        const chart = echarts.init(dom);
        // this.updateOption(option);
        chart.setOption(this.option);
    };

    render = () => {
        return (
            <div id='echartsMapId' style={{ width: "100", height: "25rem" }} />
        )
    };

}

export default EChartMapBars;
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
  • 77
  • 78
  • 79
  • 80
  • 81
  • 82
  • 83
  • 84
  • 85
  • 86
  • 87
  • 88
  • 89
  • 90
  • 91
  • 92
  • 93
  • 94
  • 95
  • 96
  • 97
  • 98
  • 99
  • 100
  • 101
  • 102
  • 103
  • 104
  • 105
  • 106
  • 107
  • 108
  • 109
  • 110
  • 111
  • 112
  • 113
  • 114
  • 115
  • 116
  • 117
  • 118
  • 119
  • 120
  • 121
  • 122
  • 123
  • 124
  • 125
  • 126
  • 127
  • 128
  • 129
  • 130
  • 131
  • 132
  • 133
  • 134
  • 135
  • 136
  • 137
  • 138
  • 139
  • 140
  • 141
  • 142
  • 143
  • 144
  • 145
  • 146
  • 147
  • 148
  • 149
  • 150
  • 151
  • 152
  • 153
  • 154
  • 155
  • 156
  • 157
  • 158
  • 159
  • 160
  • 161
  • 162
  • 163
  • 164
  • 165
  • 166
  • 167
  • 168
  • 169
  • 170
  • 171
  • 172
  • 173
  • 174
  • 175
  • 176
  • 177
  • 178
  • 179
  • 180
  • 181
  • 182
  • 183
  • 184
  • 185
  • 186
  • 187
  • 188
  • 189
  • 190
  • 191
  • 192
  • 193
  • 194
  • 195
  • 196
  • 197
  • 198
  • 199
  • 200
  • 201
  • 202
  • 203
  • 204
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/我家自动化/article/detail/108802
推荐阅读