将 geojson 与高位图一起使用

Using a geojson with highmaps

我想使用 highmaps 显示有关旧金山的一些数据,但 highmaps 库中没有 SF 不同街区的地图,所以我找到了一个旧金山的 geojson,该网站已验证:geojson validator but when I use the highmaps validator he doesn't read it: the highmap validator

$('#run').click(function () {     
var geojson = $.parseJSON($('#geojson').val());

// Initiate the chart
$('#container').slideDown().highcharts('Map', {
    series: [{
        mapData: geojson
    }]
   });    
});

这是我的 geojson:pastebin code。 你知道为什么它没有被 highmaps 验证但它被 geojson 验证器验证了吗?或者您知道将由 highmaps 验证的旧金山地图吗?

考虑将您的 .geojson 导入 QGis, then exporting it out again. In my experience any .geojson that QGis produces is usable by Highmaps. Also see this tutorial Creating custom geojson maps for Highmaps with QGis