Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
testLongPress() {
this.eventManager
.register({
event: CesiumEvent.LONG_LEFT_PRESS,
pick: PickOptions.PICK_ALL,
})
.subscribe(pos => {
console.log('long left', pos.movement, 'cesiumEntities:', pos.cesiumEntities, 'entities', pos.entities);
});
}