百度地图-中国地图

链接:https://pan.baidu.com/s/1v-HEpZMiiA4SoWH5fsyUfA
提取码:05n7

百度网盘

 


   

   
   

//js

document.getElementById("main").style.height = window.innerHeight + 'px';
      var myChart = echarts.init(document.getElementById('main'));
      var optionMap = {
        title: {
          text: "销量分省统计表",
          x: "center",
          textStyle: {
            color: "#fff"
          }
        },
        tooltip: {
          trigger: "item",
          textStyle: {
            color: "#fff"
          }
        },
        dataRange: {
          min: 0,
          max: 1000,
          x: "left",
          y: "bottom",
          text: ["高", "低"],
          calculable: !0,
          inRange: {
            color: ['lightskyblue', 'yellow', 'red']
          },
          textStyle: {
            color: "#fff"
          }
        },
        roamController: {
          show: !0,
          x: "right",
          mapTypeControl: {
            china: !0
          }
        },
        roam: true,
        series: [{
          "name": "暂无数据",
          "type": "map",
          "mapType": "china",
          "zoom": 1.2, //地图默认缩放比例
          "itemStyle": {
            "normal": {
              "label": {
                "show": true
              }
            },
            "emphasis": {
              "label": {
                "show": true
              }
            }
          },
          "data": [{
            "name": "广东省",
            "value": 0
          }]
        }]
      };
      myChart.setOption(optionMap);

 百度地图-中国地图_第1张图片

你可能感兴趣的:(百度地图-中国地图)