问题:当web中同时引入了iclient-classic和iclient-mapboxgl时,iClinet-classic中的一个方法不能返回正常结果。
format.write方法不能成功返回结果。
当不引入iclient-mapboxgl时,则可以正常返回。
var linearRing = new SuperMap.Geometry.LinearRing(arr);
let polygon = new SuperMap.Geometry.Polygon(linearRing);
let format = new SuperMap.Format.GeoJSON();
let geojson = JSON.parse(format.write(polygon))
geometry = geojson.coordinates;