Can ObjectSymbol3DLayer icon size be changed based on zoom level? I tried on this example:
Flat vs. volumetric 3D symbol layers | ArcGIS API for JavaScript 4.5
and watch on
this.view.on("mouse-wheel", (event), but doesn't work
I noticed IconSymbol3DLayer size is changed automatically when zoom in.
Solved! Go to Solution.
Here's a sample that does this: JS Bin - Collaborative JavaScript Debugging
Every time the zoom changes, a new renderer is set in order to keep each cone the same approximate height/width in pixels.
Here's a sample that does this: JS Bin - Collaborative JavaScript Debugging
Every time the zoom changes, a new renderer is set in order to keep each cone the same approximate height/width in pixels.
Thanks Thomas, much appreciated.