我正在尝试将以下 URL(标记为红色)中的选定区域转换为 geojson 并检索管理信息(州、国家/地区等)
https://esri.github.io/esri-leaflet/examples/spatial-queries.html
这是我在网上找到的示例代码。
var feature = L.esri.Util.arcgisToGeoJSON(neighborhoods[i], ids[i]);
var latlng = L.Projection.Mercator.unproject(L.point(feature.geometry.coordinates));
feature.geometry.coordinates = [latlng.lng, latlng.lat];
请帮忙!