Proportional Symbol Map
A map where symbols — usually circles — are placed at geographic locations and scaled proportionally to the data values they represent. The bigger the symbol, the larger the value.
// 01 — The chart
What it looks like
A proportional symbol map showing city populations. Larger circles represent more populous cities, making it easy to compare magnitudes across locations.
// 02 — Definition
What is a proportional symbol map?
A proportional symbol map places symbols — most commonly circles — at specific geographic locations and sizes them in proportion to a quantitative variable. If a city has twice the population of another, its circle will have twice the area (not twice the radius), ensuring an honest visual comparison.
Unlike choropleth maps that shade entire regions, proportional symbol maps tie data to specific points (city centers, airports, stations). This avoids the visual distortion that large, sparsely populated regions cause in choropleths. A small circle on a tiny country can be just as readable as a large circle on a vast territory.
The technique works for both raw counts (population, revenue, earthquake magnitude) and rates — though it is most natural with counts, since the symbol area maps directly to “how much.”
Origin: The first proportional symbol map is attributed to Henry Drury Harness, who used graduated circles on an Irish railway map in 1837 to show town populations. The method was later refined by Charles Joseph Minard in the 1850s.
// 03 — Anatomy
Parts of a proportional symbol map
// 04 — Usage
When to use it — and when not to
- Your data is tied to specific point locations (cities, stations, facilities)
- You want to compare raw magnitudes across many locations simultaneously
- Region sizes vary dramatically and a choropleth would mislead
- You have both large and small values and need them all visible
- You want to overlay symbols on an existing basemap for spatial context
- Showing totals, counts, or absolute values rather than rates or percentages
- You have too many points close together — symbols will overlap and hide each other
- Your data is area-based (rates per region) rather than point-based — use a choropleth
- The value range is extremely wide, making small symbols invisible next to large ones
- You need precise value comparisons — humans are poor at comparing circle areas
- Your audience needs to see within-region distribution — use dot density instead
- You have fewer than 5 locations — a simple labeled table may be clearer
// 05 — Reading guide
How to read a proportional symbol map
Follow these steps whenever you encounter a proportional symbol map.
Find the legend and calibrate your eye
Look for the nested-circle legend showing reference sizes. Memorize what a ‘small’ and ‘large’ circle represent so you can mentally decode symbols as you scan the map.
Spot the largest and smallest symbols
These are your extremes. The biggest circle is the location with the highest value; the smallest is the lowest. Get a sense of the overall range before examining individual points.
Compare areas, not diameters
A circle with twice the diameter has four times the area. Our brains naturally underestimate area differences, so consciously remind yourself that a circle that looks ‘a little bigger’ may actually represent much more data.
Look for spatial clusters
Do large symbols cluster in one part of the map? Geographic patterns — coastal vs. inland, north vs. south — often reveal underlying factors like urbanization or economic development.
Check for overlapping symbols
In dense areas, symbols may overlap. Look at whether the map uses transparency, stacking order, or offset to handle this. Overlapping circles can hide smaller values behind larger ones.
// 06 — Pitfalls
Common mistakes
×Scaling radius instead of area
Fix: Always scale by area (radius ∝ √value). Scaling by radius makes large values look quadratically bigger than they are, grossly exaggerating differences.
×No legend or unclear legend
Fix: Include a nested-circle legend with at least two reference sizes. Without it, readers have no way to decode symbol sizes into actual values.
×Too much overlap in dense regions
Fix: Use transparency, sort symbols largest-first (so small ones sit on top), or switch to a different technique like cartograms for very dense areas.
×Extreme value ranges without log scaling
Fix: If values span several orders of magnitude, consider perceptual scaling or graduated classes. A circle 100× larger than another is nearly invisible next to it.
×Using non-circular symbols without justification
Fix: Circles are the default because area is easiest to compare. Squares, triangles, or pictorial symbols add cognitive load — only use them if a second variable needs encoding.
// 07 — In the wild
Real-world examples
COVID-19 case counts by city
Major news outlets used proportional symbol maps to show confirmed case counts per city. Circles grew over time in animated versions, conveying the pandemic’s geographic spread at a glance.
Earthquake magnitude maps (USGS)
The U.S. Geological Survey places circles at earthquake epicenters, sized by magnitude. This instantly shows which areas experience the most seismic activity and how severe the events are.
Global airport passenger traffic
Aviation data portals display circles at each airport sized by annual passenger throughput, revealing hub-and-spoke patterns and regional travel demand.
// 08 — Quick reference
Key facts
// 09 — Variations
Types of proportional symbol maps
Several variations exist depending on how symbols are sized, styled, and layered.
True proportional circles
Circle area scales linearly with the data value. Most common and most faithful to the data.
Bivariate symbol map
Uses two concentric circles (or size + color) to encode two variables at each location simultaneously.
Graduated symbol (classed)
Values are grouped into 3–6 size classes rather than scaled continuously. Easier to read but less precise.
Non-circular symbols
Squares, diamonds, or pictograms scaled by area. Less common, but useful when a second shape encoding is needed.
// 10 — FAQs
Frequently asked questions
What is a proportional symbol map?+
A proportional symbol map places symbols — most commonly circles — at specific geographic locations and sizes them in proportion to a quantitative variable. If a city has twice the population of another, its circle will have twice the area (not twice the radius), ensuring an honest visual comparison.
When should you use a proportional symbol map?+
Use a proportional symbol map when your data is tied to specific point locations (cities, stations, facilities). It also works well when you want to compare raw magnitudes across many locations simultaneously, and when region sizes vary dramatically and a choropleth would mislead.
When should you avoid a proportional symbol map?+
Avoid a proportional symbol map when you have too many points close together — symbols will overlap and hide each other. It is also a poor fit when your data is area-based (rates per region) rather than point-based — use a choropleth, or when the value range is extremely wide, making small symbols invisible next to large ones.
Is a proportional symbol map suitable for dashboards?+
Yes — a proportional symbol map can work well in dashboards as long as the panel is large enough for readers to perceive the encoded values, has a clear title, and includes the legend or axis labels needed to interpret it.
What category of chart is a proportional symbol map?+
Proportional Symbol Map belongs to the Geospatial family of charts. Charts in that family are designed to answer the same kind of question, so they often work as alternatives when one doesn't quite fit your data.
How do you read a proportional symbol map?+
Start with the axis labels and legend, then look at the overall shape before zooming into individual marks. Compare prominent features against the rest of the data, and verify any conclusion against the underlying numbers when precision matters.