如何使用HighCharts GeoMaps绘制区域?

时间:2016-02-24 12:41:10

标签: charts highcharts highmaps geomap

我正在使用HighCharts GeoMaps。我有兴趣在世界地图上绘制以下区域:

  • 东亚&太平洋
  • 欧洲&中亚
  • 拉丁美洲&加勒比
  • 中东&北非
  • 北美
  • 南亚

以前有人试过这个吗?如果有人为此提供解决方案,请提供一个小提琴。

先谢谢。

修改

我探索了highmaps示例,并创建了fiddle来解决此问题。在上面的小提琴中,区域被错误地绘制,也没有渲染完整的世界地图。有人能指出我哪里错了吗?

$(function () {

// Prepare demo data
var data = [
    {
        "region": "South America",
        value: 3
    },
  {
        "region": "East Asia & Pacific",
        value: 10
    },
  {
        "region": "Europe & Central Asia",
        value: 12
    },
  {
        "region": "Latin America & Caribbean",
        value: 8
    },
  {
        "region": "Middle East & North Africa",
        value: 9
    },
  {
        "region": "North America",
        value: 20
    },
  {
        "region": "South Asia",
        value: 17
    }
];


// Initiate the chart
$('#container').highcharts('Map', {

    mapNavigation: {
        enabled: true,
        buttonOptions: {
            verticalAlign: 'bottom'
        }
    },

    colorAxis: {
        min: 0
    },

    series: [{
        data: data,
        mapData: Highcharts.maps['custom/world'],
        joinBy: ["region-wb","region"],
        allAreas: true,
        name: 'Random data',
        states: {
            hover: {
                color: '#BADA55'
            }
        },
        dataLabels: {
            enabled: true,
            format: '{point.name}'
        }
    }]
});

});

1 个答案:

答案 0 :(得分:0)

这是您搜索的方法吗?

http://www.highcharts.com/docs/maps/custom-maps