我想使用simple-json-1.1.1 jar创建下面的geojson。
{"type": "FeatureCollection",
"crs": {
"type": "name",
"properties": {
"name": "ESPG:4326"
}
},
"features":[
{
"type":"Feature",
"geometry":{
"type":"Point",
"coordinates":[55,55]
},
"properties":{
"desc":"something"}
}
]
}
有什么办法吗?谢谢!!
1条答案
按热度按时间dced5bon1#
创建上面提到的geojson的代码如下: