Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Score big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount

Reply
agustina_cba20
New Member

Azure Map - Overlapping bubbles

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!

 

agustina_cba20_0-1752157814761.png

 

1 REPLY 1
johnbasha33
Super User
Super User

HI @agustina_cba20 

Workarounds and Solutions

🔹 1. Use a “Category” Legend and Transparency

  • 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 usability

5. 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 !!






 

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

Check out the August 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

Find out what's new and trending in the Fabric community.

Top Solution Authors