在Google API上优化速度显示GEOJSON

时间:2015-01-12 09:58:33

标签: google-maps-api-3 geojson

我正在使用下面的函数显示geojson。在我的geojson文件中,我有大约12 000条记录,显示滞后......很慢。你知道一种优化速度的方法吗? 数据显示是折线。

 countyLayer = new google.maps.Data();
 countyLayer.loadGeoJson('orange.json');

 countyLayer.setMap(map);

 countyLayer.setStyle(function(feature) {
    return /** @type {google.maps.Data.StyleOptions} */({
    strokeColor: "#2D241E",
    strokeWeight: feature.getProperty('stroke')/7
    });
 });

由于

0 个答案:

没有答案