Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
I am experiencing an issue with Azure Map visual when published to web. The visual has bubble layer and cluster bubbles turned on and when auto zoom turned on and no filters it takes about 2-3 mins to load the data, zooming in /out and updating cluster bubbles.
However, if you don't wait and select a slicer the information is displayed instantly. I have turned auto zoom off and limited data to the last week and has made a slight improvement, but is there anything else to try?
Solved! Go to Solution.
Hi @lousmith22,
What you’re seeing is the Azure Maps visual doing a full "fit to data" and re-clustering a large set of points on first render. In a public Publish to web embed, that first pass can be heavy: the map requests tiles, applies clustering math, animates zoom/pan, and then repeats when anything changes (filters, auto-zoom, layers). That’s why slicing first (fewer points) feels instant.
Below is how I’d tame it.
If you found this helpful, consider giving some Kudos. If I answered your question or solved your problem, mark this post as the solution.
Hi @lousmith22,
What you’re seeing is the Azure Maps visual doing a full "fit to data" and re-clustering a large set of points on first render. In a public Publish to web embed, that first pass can be heavy: the map requests tiles, applies clustering math, animates zoom/pan, and then repeats when anything changes (filters, auto-zoom, layers). That’s why slicing first (fewer points) feels instant.
Below is how I’d tame it.
If you found this helpful, consider giving some Kudos. If I answered your question or solved your problem, mark this post as the solution.
Hi @lousmith22,
What you’re seeing is the Azure Maps visual doing a full "fit to data" and re-clustering a large set of points on first render. In a public Publish to web embed, that first pass can be heavy: the map requests tiles, applies clustering math, animates zoom/pan, and then repeats when anything changes (filters, auto-zoom, layers). That’s why slicing first (fewer points) feels instant.
Below is how I’d tame it.
If you found this helpful, consider giving some Kudos. If I answered your question or solved your problem, mark this post as the solution.
To fix above issue you can try below
1.you can optimize dax functions or you can create summary table for map in which you can select limited columns .
2. Fine-tune the Azure Maps Visual Settings:
1.set a default zoom level that makes sense for the most common view of your data.
2. Adjust Clustering Settings: Go into the visual's Format pane and look for the Clustering options. You might be able to fine-tune the clustering distance or other parameters to optimize performance. Experiment with these settings to find a good balance between visual clarity and performance.