我正在尝试将 GEOJSON 与传单一起使用,并尝试通过在 geoJSON 功能中动态输入它们的坐标来显示两个位置之间的线串
var geojsonFeature = { "type": "Feature",
"properties": {
"name": "Coors Field",
"amenity": "Baseball Stadium",
"popupContent": "This is where the Rockies play!"
},
"geometry": {
"type": "LineString",
"coordinates": [[77.68148,12.91127],[77.60943,12.91125]]
}
};
L.geoJson(geojsonFeature).addTo(map);
有什么方法可以让我使用循环动态地在 geoJsonfeature 中输入坐标,如果是这样,以这种方式形成坐标数组的语法是什么?
谢谢。