| | |
| | | "fontstyle":'SimSun', |
| | | } |
| | | } |
| | | else if(type=='text'){ |
| | | var cartographic=Cesium.Cartographic.fromCartesian(drawEntity._position._value); |
| | | var lng=Cesium.Math.toDegrees(cartographic.longitude); |
| | | var lat=Cesium.Math.toDegrees(cartographic.latitude); |
| | | var alt=cartographic.height; |
| | | saveData= { |
| | | "id":id, |
| | | "type": type, |
| | | "longitude": lng, |
| | | "latitude": lat, |
| | | "height": alt, |
| | | "content":drawEntity.title, |
| | | "color":drawEntity._label._fillColor._value.toCssColorString(), |
| | | "fontsize":30, |
| | | "fontstyle":'SimSun', |
| | | } |
| | | } |
| | | |
| | | let token = window.localStorage.getItem("token"); |
| | | $.ajax({ |