我正在使用下面的函数显示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
});
});
由于