怎么可以得到地图中心点是否变化呢
我在什么事件能够检测到 相机的 lat lng alt 变化了呢 不是yaw pitch roll
例如handler.setInputAction(function (movement) 通过這个获取 鼠标当前的 经纬度高度 如果相机的位置变了 会触发什么事件呢
https://cesiumjs.org/Cesium/Apps/Sandcastle/index.html?src=Camera.html
function cameraEvents() {
Sandcastle.declare(cameraEvents);
var camera = viewer.camera;
removeStart = camera.moveStart.addEventListener(function() {
viewChanged.style.display = 'block';
});
removeEnd = camera.moveEnd.addEventListener(function() {
viewChanged.style.display = 'none';
});
}