我目前用的cesium自带的 Cesium.GeoJsonDataSource.load
但是加载一个geojson报错
export const south = {
"type": "FeatureCollection",
"features": [{
"geometry": {
"coordinates": [
[
[-180.0, -60.0],
[-180.0, -90.0],
[180.0, -90.0],
[180.0, -60.0],
[-180.0, -60.0]
]
],
"type": "Polygon"
},
"properties": {
"UserID": 0
},
"type": "Feature"
}]
}
好像是经度不能正负180,维度不能90,请问是什么原因,应该如何加载这种南半球的geojson矢量数据