Double click on Polygon

When I double click on polygon, Cesium changes camera to focus on that polygon. Is there any method to skip this?

I believe it can be done by overriding the handler

   var scene = viewer.scene;
   var handler = viewer.screenSpaceEventHandler;
   handler.setInputAction(function(click) {
        //... override it with whatever you need
   },Cesium.ScreenSpaceEventType.LEFT_DOUBLE_CLICK );

I already have that override implemented. Still it goes to polygon camera.

Hi,

There’s a few alternate solutions in this thread.

Thanks!
Gabby