I have a cone (Cesium.CylinderGraphics) and placed at a lat long position. Graphic is placed at its center point which I want to change. For example I want to have graphic’s edge to be its center point, so that it can be placed at lat lon at its edge. So that I can make it rotate about its edge. How can I achieve that.
Thanks
Hello,
This is not possible with the Entity API, which CylinderGraphics is a part of. You could try using the lower level CylinderGeometry type, which allows you to define your own modelMatrix for positioning your cylinder. Here’s an example of how to create a CylinderGeometry: http://cesiumjs.org/Cesium/Apps/Sandcastle/index.html?src=development/Cylinder.html&label=Development
Best,
Hannah