i am using cesium on my gwt project and i am using cesium-terrain-server for terrain. (Not cesium-gwt , devoloping my own code with jsni) My problem : i am creating graphic on terrain (polygon , polyline) , when i navigate on map , graphics are moving from its position. is there any way to immobilize them on the point(s) which i selected before ?
example code :
var polygon = new Cesium.PolygonGraphics({
fill : true;
material : Cesium.Color.BLUE.withAlpha(0.5),
outline : true,
hierarchy :{
positions: cartesian3s
}
})
then i am adding polygon as entity to cesium viewers entities.