地图echarts 配置项内容和展示

配置项如下
      

option ={
    "tooltip": {
        "show": true,
        "padding": 0,
        "backgroundColor": "rgba(255,255,255,0)"
    },
    "series": [
        {
            "name": "中国",
            "type": "map",
            "mapType": "china",
            "zoom": 1.2,
            "selectedMode": false,
            "itemStyle": {
                "normal": {

                    "borderWidth": 1.5,
                    "borderColor": "#1f5c94",
                    "label": {
                        "show": true
                    }
                },
                "emphasis": {
                    "areaColor": "#74c0ed",
                    "label": {
                        "show": true
                    }
                }
            },
            "label": {
                "normal": {
                    "show": false
                },
                "emphasis": {
                    "show": false
                }
            },
            "data": [
                {
                    "value": 100,
                    "name": "云南",
                    "itemStyle": {
                        "normal": {
                            "color": "#8985d2",
                            "label": {
                                "show": true,
                                "textStyle": {
                                    "color": "#000",
                                    "fontSize": 12
                                }
                            }
                        }
                    }
                },
                {
                    "value": 200,
                    "name": "贵州",
                    "itemStyle": {
                        "normal": {
                            "color": "#9baded",
                            "label": {
                                "show": true,
                                "textStyle": {
                                    "color": "#000",
                                    "fontSize": 12
                                }
                            }
                        }
                    }
                },
                {
                    "value": 100,
                    "name": "海南",
                    "itemStyle": {
                        "normal": {
                            "color": "#88d2df",
                            "label": {
                                "show": true,
                                "textStyle": {
                                    "color": "#000",
                                    "fontSize": 12
                                }
                            }
                        }
                    }
                },
                {
                    "value": 133,
                    "name": "福建",
                    "itemStyle": {
                        "normal": {
                            "color": "#7ccaa2",
                            "label": {
                                "show": true,
                                "textStyle": {
                                    "color": "#000",
                                    "fontSize": 12
                               
                
                                }
                            }
                        }
                    }
                },
                {
                    "value": 100,
                    "name": "陕西",
                    "itemStyle": {
                        "normal": {
                            "color": "#88d2df",
                            "label": {
                                "show": true,
                                "textStyle": {
                                    "color": "#000",
                                    "fontSize": 12
                                }
                            }
                        }
                    }
                },
                {
                    "value": 100,
                    "name": "甘肃",
                    "itemStyle": {
                        "normal": {
                            "color": "#88d2df",
                            "label": {
                                "show": true,
                                "textStyle": {
                                    "color": "#000",
                                    "fontSize": 12
                                }
                            }
                        }
                    }
                },
                {
                    "value": 100,
                    "name": "青海",
                    "itemStyle": {
                        "normal": {
                            "color": "#88d2df",
                            "label": {
                                "show": true,
                                "textStyle": {
                                    "color": "#000",
                                    "fontSize": 12
                                }
                            }
                        }
                    }
                },
                {
                    "value": 100,
                    "name": "西藏",
                    "itemStyle": {
                        "normal": {
                            "color": "#88d2df",
                            "label": {
                                "show": true,
                                "textStyle": {
                                    "color": "#000",
                                    "fontSize": 12
                                }
                            }
                        }
                    }
                },
                {
                    "value": 100,
                    "name": "新疆",
                    "itemStyle": {
                        "normal": {
                            "color": "#88d2df",
                            "label": {
                                "show": true,
                                "textStyle": {
                                    "color": "#000",
                                    "fontSize": 12
                                }
                            }
                        }
                    }
                },
                {
                    "value": 100,
                    "name": "宁夏",
                    "itemStyle": {
                        "normal": {
                            "color": "#88d2df",
                            "label": {
                                "show": true,
                                "textStyle": {
                                    "color": "#000",
                                    "fontSize": 12
                                }
                            }
                        }
                    }
                },
                 {
                    "value": 133,
                    "name": "安徽",
                    "itemStyle": {
                        "normal": {
                            "color": "#7caaa2",
                            "label": {
                                "show": true,
                                "textStyle": {
                                    "color": "#000",
                                    "fontSize": 12
                               
                
                                }
                            }
                        }
                    }
                }
            ],
            "markPoint": {
                "symbol": "pin",
                "symbolSize": 0,
                "label": {
                    "normal": {
                        "show": true
                    }
                },
                "data": [
                    {
                        "name": "杭州",
                        "coord": [
                            120.245697,30
                        ]
                    }
                ]
            }
        }
    ]
}
    
截图如下