【发布时间】:2016-10-25 12:05:18
【问题描述】:
我想使用 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"}
}
]
}
关于如何做到这一点的任何想法?谢谢!
【问题讨论】: