Identification of problematic OverlayObjects

Hi all,
I am serving a dynamic map with a bunch of depencies and the Jupyter Notebook gives me a warning message:

param.GeoOverlayPlot471506: responsive mode could not be enabled because fixed width and height were specified.

Is their a way to identify the problematic Element (GeoOverlayPlot471506)?

Depends what you mean by “identify”. The name shown there is the ‘name’ parameter of the corresponding object, so if you iterate over a collection of Parameterized objects, you should be able to find which one has that name. It’s tough to do that for a DynamicMap, though, as the contents of the DynamicMap change over time.

Thank you for your reply!