例如,toGeoJSON函数在此处返回如下内容:
var geojsonFeature = {
"type": "Feature",
"properties": {
"name": "Coors Field",
"amenity": "Baseball Stadium",
"popupContent": "This is where the Rockies play!"
},
"geometry": {
"type": "Point",
"coordinates": [-104.99404, 39.75621]
}
};
但我想专门使用GeometryCollection,而不是像这里描述的FeatureCollection。有什么方法可以做到吗?
有关更多信息,我想复制in this post中经过检查标记的答案中描述的行为,但我想使用GeometryCollections。非常感谢。
答案 0 :(得分:0)
我找到了解决方案。为了将其保留为GeometryCollection,我使用了djang_rest_gis
框架中描述的序列化程序。结果,我能够将多边形转换成GEOSGeomtry对象,并对其进行序列化。