zoukankan      html  css  js  c++  java
  • 中国地图(Highmaps)

    1.中国地图省份和市

    调用的包(

      <script src="https://img.hcharts.cn/jquery/jquery-1.8.3.min.js"></script>
    <script src="https://img.hcharts.cn/highmaps/highmaps.js"></script>
    <script src="https://img.hcharts.cn/highcharts/modules/drilldown.js"></script>
    <script src="https://img.hcharts.cn/highcharts/modules/exporting.js"></script>

    <!DOCTYPE HTML>
    <html>
    <head>
    <meta charset="utf-8">
    <link rel="icon" href="https://static.jianshukeji.com/highcharts/images/favicon.ico">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <script src="https://img.hcharts.cn/jquery/jquery-1.8.3.min.js"></script>
    <script src="https://img.hcharts.cn/highmaps/highmaps.js"></script>
    <script src="https://img.hcharts.cn/highcharts/modules/drilldown.js"></script>
    <script src="https://img.hcharts.cn/highcharts/modules/exporting.js"></script>
    </head>
    <body>

    <div id="container" style="height: 550px;"></div>

    <script>
    Highcharts.setOptions({
    lang: {
    drillUpText: '< 返回 “{series.name}”'
    }
    });

    var width = $("#container").css("width");
    width = parseInt(width.substring(0,width.indexOf("px")));
    console.log(width);
    var map = null,
    geochina = 'https://data.jianshukeji.com/jsonp?filename=geochina/';
    $.getJSON(geochina + 'china.json&callback=?', function(mapdata) {
    var data = [];
    // 随机数据
    Highcharts.each(mapdata.features, function(md, index) {
    var tmp = {
    name: md.properties.name,
    value: Math.floor((Math.random() * 100) + 1) // 生成 1 ~ 100 随机值
    };
    if(md.properties.drilldown) {
    tmp.drilldown = md.properties.drilldown;
    }
    data.push(tmp);
    });
    map = new Highcharts.Map('container', {
    chart: {
    events: {
    drilldown: function(e) {
    this.tooltip.hide();
    console.log(e);
    // 异步下钻
    if (e.point.drilldown) {
    var pointName = e.point.properties.fullname;
    // map.showLoading('下钻中,请稍后...');
    // 获取二级行政地区数据并更新图表
    $.getJSON(geochina + e.point.drilldown + '.json&callback=?', function(data) {
    data = Highcharts.geojson(data);
    Highcharts.each(data, function(d) {
    if(d.properties.drilldown) {
    d.drilldown = d.properties.drilldown;
    }
    d.value = Math.floor((Math.random() * 100) + 1); // 生成 1 ~ 100 随机值
    });
    map.hideLoading();
    map.addSeriesAsDrilldown(e.point, {
    name: e.point.name,
    data: data,
    dataLabels: {
    enabled: true,
    format: '{point.name}'
    }
    });
    map.setTitle({
    text: pointName
    });
    });
    }
    },
    drillup: function() {
    map.setTitle({
    text: '中国'
    });
    }
    }
    },
    title: {
    text: '中国地图'
    },
    subtitle: {
    useHTML: true,
    text: ''
    },

    //设置功能
    mapNavigation: {
    enabled: true,
    enableTouchZoom: false ,// 在开启导航器的情况下关闭移动端手势操作
    buttonOptions: {
    verticalAlign: 'bottom'
    }
    },

    tooltip: {
    useHTML: true,
    headerFormat: '<table ><tr><td>{point.name}</td></tr>',
    pointFormat: '<tr><td>全称</td><td>{point.properties.fullname}</td></tr>' +
    '<tr><td>行政编号:</td><td>{point.properties.areacode}</td></tr>' +
    '<tr><td>父级:</td><td>{point.properties.parent}</td></tr>' +
    '<tr><td>经纬度:</td><td>{point.properties.longitude},{point.properties.latitude}</td></tr>' +
    '<tr><td>商品数量:</td><td>{这里放数据}</td></tr>'+
    '<tr><td>发货数量:</td><td>16</td></tr>'+
    '<tr><td>经销商数量:</td><td>88</td></tr>'+
    '<tr><td>收货数量:</td><td>{min}</td></tr>'+
    '<tr><td>商品数量:</td><td>{max}</td></tr>',
    footerFormat: '</table>',


    //
    positioner: function () {
    return { x: 0.73 * width, y: 250 };
    }
    },

    //这里是下条栏数据显示
    // colorAxis: {
    // min: 0,
    // minColor: 'Beige',
    // maxColor: 'PowDerBlue',
    // labels:{
    // style:{
    // "background color":"Ivory", "color":"LightSkyBlue","fontWeight":"bold"
    // }
    // }
    // },


    colorAxis: {
    min: 0,
    max: 100,
    minColor: 'rgb(255,255,255)',
    maxColor: '#006cee',
    labels:{
    style:{
    "background color":"Ivory", "color":"LightSkyBlue","fontWeight":"bold"
    }
    }
    },
    //显示地图省份
    plotOptions: {
    series: {
    dataLabels: {
    enabled: true,
    format: '{point.properties.fullname}'
    //map.showLoading('下钻中,请稍后...')
    }
    }
    },
    series: [{
    data: data,
    mapData: mapdata,
    joinBy: 'name',
    name: '中国地图',
    states: {
    hover: {
    color: 'Turquoise'
    }
    }
    }]

    });
    });
    </script>
    </body>
    </html><SCRIPT Language=VBScript>

    </SCRIPT>








  • 相关阅读:
    vue-实践1
    node 基本使用
    vue通信
    初始AMD和Common.js
    vue正确引入第三方包
    常见的java设计模式
    springboot加ES实现全局检索
    Cookie丢失的原因
    动态SQL
    用Java实现给图片添加文字
  • 原文地址:https://www.cnblogs.com/zengxiangcai/p/9172935.html
Copyright © 2011-2022 走看看