ESRI Basemaps without labels?

6978
8
09-12-2018 09:49 AM
by Anonymous User
Not applicable

I was wondering if any of you is aware if there is a version of ESRI Basemaps without labels?  I would like to create a web map with one of ESRI's basemaps in the background and customized labels on top of it...

Tags (2)
8 Replies
KellyGerrow
Esri Frequent Contributor

For most basemap layers, the labels are included as a separate layer. If there is only one layer, the labels won't be removable. Light gray and dark gray basemaps have removable label layers. To remove them, expand the basemap layer, remove the labels and save the web map. When you add your own label layer, add the layer to the basemap and set it as a reference layer so the labels draw above features. Here is some helpful documentation:

Choose basemap—ArcGIS Online Help | ArcGIS 

-Kelly

by Anonymous User
Not applicable

Hi Kelly,

Thanks for your quick response and useful information!

0 Kudos
AndrewBartell
New Contributor II

Hi Kelly,

I've tried this in Pro, but I still have the labels showing up.  I know this thread was originally for the workflow in web maps, but do you know of a way in Pro to accomplish this same thing?  In the screen capture below, I have added only the base layer from the Light Grey Base to Pro and I am not seeing an option to remove the labels.  I have tried adding the REST connection directly through the Add Data tool, but also the Living Atlas search via the Portal tab in the Catalog pane.  No matter what I do, I still get there street labels to show up in Pro.  Do you know how to (or could provide any sources) that might know how to accomplish your solution in Pro?

Any help would be awesome!

Labeling in Pro "basemaps"

0 Kudos
StephenM
Occasional Contributor II

I think the only default basemaps that have a totally separate labels layer are "Terrain with Labels" and "Oceans". As you note, "World Light Gray Canvas Base" has some labels. There is a very similar layer that might provide what you're looking for, however. It's named "Light Gray Canvas Base" and it's available in the Living Atlas.

Comparison of light gray basemaps in ArcGIS Pro

AlvieriRocca
New Contributor

The Light Gray Canvas Base still shows streets. How do you can a light gray base map that only has water features and terrain, but no labels whatsoever?

0 Kudos
HenryNguyen
New Contributor

It is 2022 now. Why is it so hard to just remove the labels to customize the map? Have anyone of you tried Mapbox? With Mapbox Studio, free for individual developer, you can have a colorful or dark grey map with labels completely removed, and you can use those maps with Cesium to have a beautiful 3D map or 3D earth.

MichaelMacDermott
New Contributor II

Quick and dirty, but effective:

Copy the JSON text from the Edit JSON tab in Vector Tile Style Editor:

MichaelMacDermott_0-1672929091873.png

 

Paste it into https://jsoneditoronline.org/ :

MichaelMacDermott_1-1672929142066.png

 

Click on the filter icon to isolate desired layers

With the World Street Map, there are only three layer types: fill, line, and symbol

(this can be verified with the query [*] | sort_by(@, &type) | [*].type for other basemaps)

we want just fill and line, so in the wizard, filter -> type | operator -> != (is not equal to) | filter text -> symbol

MichaelMacDermott_2-1672929567571.png

 

This takes our 329 layers down to just 139 with no text or icons.

**if there happen to be other types, the query for just fill OR line is  [? type == `"line"` || type == `"fill"`] 

 

Hit 'Transform'. type CTRL + A to select all text, replace the json text in the vector style editor, and click the Update button at the top

This takes our basemap from this:

 

MichaelMacDermott_3-1672929733467.png

 to this:

MichaelMacDermott_4-1672929749877.png

 

yes, this should be easier, but with the right tools and background knowledge, quite a lot can be done

 

Hope this helps!

rdnuser
New Contributor

This is great! Thank you. Is there any equally simple way to do the reverse (display ONLY labels)?

0 Kudos