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

Join the FabCon + SQLCon recap series. Up next: Power BI, Real-Time Intelligence, IQ and AI, and Data Factory take center stage. All sessions are available on-demand after the live show. Register now

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
April Power BI Update Carousel

Power BI Monthly Update - April 2026

Check out the April 2026 Power BI update to learn about new features.

New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

FabCon and SQLCon Highlights Carousel

FabCon &SQLCon Highlights

Experience the highlights from FabCon & SQLCon, available live and on-demand starting April 14th.

Top Solution Authors