Is there any way to auto-rotate the compass in sceneview using the JavaScript api? I would like the compass to constantly auto-rotate around the 3d map area in a counter clock-wise circle?
Solved! Go to Solution.
Esri has a very good blog post about controlling the camera in scenes: 3D camera intro using the ArcGIS API for JavaScript
At the bottom of the blog post they show this sample: Rotating 3D Buildings Berlin (you can modify the rotation direction to counter clockwise in the rotate function by changing +0.1 to -0.1).
Esri has a very good blog post about controlling the camera in scenes: 3D camera intro using the ArcGIS API for JavaScript
At the bottom of the blog post they show this sample: Rotating 3D Buildings Berlin (you can modify the rotation direction to counter clockwise in the rotate function by changing +0.1 to -0.1).
Excellent! Thank you very much.