iobject通过geojson构建Geometry时,构建出来的Geometry对象是空的
一个完整的GeoJSON格式内容应该是这样的:
{ "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "SmUserID": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [85.3711880446, 13.2523484185], [97.4928299097, 55.9157741986], [149.1880672756, 45.9332456038], [85.3711880446, 13.2523484185] ] ] } } ] }
您使用的JSON缺少了最外面那层,直接使用 DataImport 的方式导入是可以成功的。