Your First Map in ArcGIS Pro¶
Goal: End this tutorial with a real map, styled, labeled, and exported. ~30 minutes.
What you'll do
- Create a project.
- Add a basemap and three data layers.
- Style and label them.
- Add a layout and export to PDF.
What you'll need¶
- ArcGIS Pro installed and licensed (1-year free for students).
- An internet connection (for the basemap).
- That's it.
Step 1 — Create a project¶
- Launch ArcGIS Pro.
- Click New → Map.
- Name:
first_map. Location:C:\GIS\projects\first_map. - Tick Create a new folder for this project. Click OK.
A new map opens, with a default basemap.
Step 2 — Add data¶
We'll use ArcGIS Living Atlas — Esri's hosted catalog of authoritative data.
- In the Catalog Pane (right side) → Portal → Living Atlas.
- Search "USA Counties" — find the USA Counties (Generalized) layer.
- Right-click → Add To Current Map.
- Search "USA States" → add it.
- Search "USA Major Cities" → add it.
You should now see counties (background), states (mid), cities (top) in the Contents pane.
Step 3 — Zoom to your area¶
- Right-click the States layer → Zoom to Layer.
- Use scroll-wheel to zoom into your state.
- In Map ribbon → Bookmarks → New Bookmark — call it "My state".
Step 4 — Style each layer¶
States — outline only¶
- Click the symbol below "USA States" in Contents.
- Pick Black Outline, width 1.5 pt, no fill.
Counties — choropleth by population¶
- Right-click counties → Symbology.
- Primary symbology = Graduated Colors.
- Field =
POP2020(or whatever population field exists). - Method = Natural Breaks, classes = 5.
- Color scheme = sequential blue.
- Legend → click "More" → Format All Symbols → outline = 0.25 pt, gray.
Cities — proportional points¶
- Right-click cities → Symbology.
- Primary symbology = Graduated Symbols (or Proportional Symbols).
- Field =
POP2020. Min size 4, max 18. - Marker = circle, fill = warm orange, white outline 0.5 pt.
You should now have a styled, layered map.
Step 5 — Label cities¶
- Click the cities layer.
- In the Labeling ribbon → click Label to turn on.
- Field =
NAME. - Symbol → font size 9, color dark gray, halo white 1 pt.
- Position → Best Position.
If the labels look too crowded, set a scale visibility range so they only show when zoomed in. Layer Properties → Display.
Step 6 — Filter to top cities¶
Cities is too dense. Let's keep only big ones.
- Right-click cities → Properties → Definition Query.
- New query:
POP2020 > 100000. - Click OK.
Only cities with > 100k population now appear.
Step 7 — Build a layout¶
- Insert ribbon → New Layout → Letter (8.5 × 11) Landscape.
- Activate the new Layout tab.
- Insert → Map Frame → drag a big rectangle.
- Pick the Map you've been working on.
The map appears in the layout. To zoom inside it: right-click → Activate. Pan/zoom to your bookmarked view. Layout → Close Activation.
Step 8 — Add the essentials¶
In the Insert ribbon, add:
- Title (top center): "Population by County, 2020". Bold, 22 pt.
- Legend (right side). Click → Format Legend → uncheck cities (or keep), tidy labels.
- Scale Bar (bottom). Pick Stepped Scale Line 1. Attach to your map frame.
- North Arrow (corner). Subtle.
- Text (bottom): "Source: USA Counties (Esri Living Atlas), 2020. Map by [your name]." 8 pt.
Step 9 — Export¶
- Share ribbon → Export Layout.
- Format = PDF.
- Resolution = 300 dpi.
- Tick Embed all document fonts.
- Click Export.
Open the PDF. You have your first map.
Step 10 — Save the project¶
Ctrl+S. Done.
Reflection¶
You just did:
- ✅ Project creation
- ✅ Data discovery (Living Atlas)
- ✅ Symbology (graduated colors + proportional symbols)
- ✅ Labeling (Maplex)
- ✅ Definition queries
- ✅ Layouts and exports
That's most of an entry-level GIS analyst's daily toolkit.
Next¶
Try it again with your local data — pull a CSV with city stats from your state and re-do the workflow. The repetition is what locks it in.
→ Or: Create a Choropleth Map for a deeper dive on the most common map type.