Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
Hi everyone,
I'm working with Azure Maps in Power BI, and I have multiple data points with the same coordinates. Each point belongs to a different category. Currently, the bubbles overlap completely, and it's hard to distinguish or interact with them individually (see image attached).
Is there any other way to display or differentiate bubbles with identical coordinates in Azure Maps? Maybe a setting or a workaround you've used?
Thanks in advance!
Ensure your Legend field is assigned to your category column
This allows Azure Maps to color-code the overlapping bubbles
Also set Bubble Opacity in the Format pane (under "Layer" or "Bubble Layer") to something like 30–50%
✅ Benefit: Bubbles appear blended or layered with different colors, making overlaps more visible.
2. Add a Small Offset to Coordinates (Jittering)
Introduce small variations in the coordinates (called jittering) to space out overlapping points visually.
You can do this with calculated columns like:
LatitudeAdjusted = [Latitude] + (RANDBETWEEN(-5,5) * 0.0001)
LongitudeAdjusted = [Longitude] + (RANDBETWEEN(-5,5) * 0.0001)
Benefit: Slight position shifts create a “cloud” of dots around the actual location, allowing visual separation.
⚠ Use cautiously — you’re distorting geo-location slightly for visualization purposes.Use a Cluster Layer Instead
If you're displaying many overlapping points, you might switch to Clustering (if available in your Azure Maps visual settings):
Go to Format Pane > Layers > Cluster Layer
Enable clustering and set bubble size based on count
✅ Benefit: You won’t see individual overlapping points, but you’ll see summary clusters with tooltips showing breakdown by category.
Tooltip Drillthrough
Use tooltip pages or report drillthrough functionality:
When users hover or right-click a bubble, offer a drillthrough to a table or detailed page listing all overlapping records for that location
✅ Benefit: Gives exact detail even if the bubbles are visually stacked
❌ Doesn’t improve the immediate visual, but improves analysis usability5. Switch to Icon Layer or Heatmap
If your use case allows:
Use Icons instead of bubbles (e.g., different shapes)
Or apply a heatmap layer to show density across the same coordinate
Did I answer your question? Mark my post as a solution! Appreciate your Kudos !!