ArcGIS Online

Basemap… or just ‘Map’?

Did you know you can edit basemap labels?  This changes everything right?

What was a dream is now a reality thanks to the developers of the Vector Tile Style Editor (VTSE).  With label editing they’ve given us keys to the library and access to the heart of Esri’s core collection of Living Atlas Basemaps.  Apps like this restructure the way you think of and execute a map or plan a project.  The Style Editor can be a place to retrieve global base data which can be filtered by roads, hydrology, contours, populated places, points of interest, or really any combination of what exists.  The final piece was being able to customize the labels and now we have that. 

It’s this combination of Vector Basemaps with the ArcGIS Online Map Viewer and Vector Tile Style Editor that is really changing the way that you combine basemaps into your work, to the point where you may begin to question whether it is still a Basemap! Let’s go through the process, then talk about the implications with an example.

We’ll start with the exciting enhancement of how to isolate specific labels, remove them, or change their style. The work is done in the JSON code, but the incorporation of a JSON editor into the VTSE makes this a relatively simple process. 

The mechanics of making the change

For this example, I’m using a single-layer version of the Light Gray Canvas Map, so I’ve opened it into the VTSE and saved it. I want to modify just the ‘France’ label.  To do this I’ll remove it from the existing layer, then duplicate that layer and adjust the code to bring it back on its own. Once that is established, I can make my custom modifications.

Step 1:

Clicking on the ‘France’ label in the map selects the relevant layer and opens the label tools. In this example, the layer is ‘Admin0 point/x large’

Selecting the 'France' label layer by clicking on the name.

Step 2:

Keeping the layer selected, open the ‘Edit JSON’ option. It will take you to the relevant section of code.  Find this:

The VTSE in JSON mode, with the section of code to be changed highlighted.

Variations

Most of our label filters use the ‘label class’ format, but there are some variations. You may see: “filter”: [“==”,”_symbol”…

Occasionally the filter may look something like this (The “all” instruction allows additional clauses to be added):  “filter”: [“all”, [“==”, “_label_class”, 1], [“!in”, “Viz”, 3]],

Regardless, your new instruction should be added to the existing filter.

Step 3:

In my example I’m replacing it with this:

The VTSE in JSON editing mode, with the changed code highlighted.

Update the map, and the ‘France’ label has disappeared

No ‘filter’?

Not all label layers will have an existing ‘filter’ (if the layer ID includes ‘/default’ it probably does not). If this is the case, add this line below “source layer”:

“filter”: [“!=”,”text field“, “target label “],

Step 4:

Go back to the ‘edit layer styles’ tool.

With the layer selected, go to ‘Actions’ at the top and duplicate the layer (The new layer has ‘/1’ added to the name). Alternatively, you can copy/paste the relevant section of JSON code for the same effect.

Duplicating a layer in the VTSE using the 'Actions' menu.

Step 5:

With the new layer selected, go back to the code.

In the second part, change “!=”  to  “==”

The “==” is the instruction to use only your chosen label. The ‘France’ label reappears, but it is now on a separate layer.

I’ve also taken this opportunity to change the name of the layer to add ‘France only’, but this is not essential.

Changing the code to include a label rather than exclude it. The VTSE with the relevant code highlighted.

Step 6:

The ‘France’ label is now isolated, so I can change its appearance.

The VTSE, with the isolated 'France' label now larger and in red.

Changing Multiple Labels

Removing multiple labels within a layer is straight-forward – Just repeat the “!=” command:

Code adjustment for multiple label removal, with a section of the map showing the change.

However, re-establishing the label requires duplicating the whole block of code:

IN the VTSE, duplicating the code block to feature a second country (Algeria).

Adding Information

It’s also possible to add some extra text to labels, but you need to be aware of the implications:

Here I’ve made the counties the subject of the Light Gray Canvas Map, but I want to enhance it more by adding the word ‘County’.

I’ve found the relevant layers and opened the JSON editor:

‘text field’ identifies the data source for the label (“_name”). By adding ‘County’ immediately after, that will be added as a suffix to the labels…

Adding a 'county' suffix in the JSOON code, with 2 graphics showing the before and after

… but be careful! The suffix will be added to ALL third order (Admin 2) labels, regardless of the context. If the map is to be used worldwide it could be misleading, and potentially insulting. In France ‘Yvelines’ and ‘Hauts-de-Seine are ‘Départements’.

A graphic showing the 'county' suffix added to labels in France.

Times have changed…

Now that we know how to modify labels it’s probably a good time to ask when does it cease being a Basemap?  At what point do these redesigns, reconfigurations, mixing of tiles, and label editing turn into maps of their own?  

Let’s look at this map which is a combination of SIX different vector tiles! Four of the layers were modified in the Style Editor and the last two were enhanced with the Map Viewer’s cartographic tools of Effects, Blend Modes and Transparency.  This workflow produces a mix up of digital and reality with near infinite customizations of colors and text with base layers becoming more like active map layers. 

Blended basemaps showing the Himalaya Mountains and beyond.
The imagery seems like its painted on the landscape when its subdued. Then the greener forests and enhanced terrain give depth and texture to the map.

This map uses a modified version of this Reference, Detail, Base, with code borrowed from the Topographic Map.  Shout out to Andy Skinner on creating the parent layers for this map which are a beta Physical Geography version of Esri’s Human Geography basemap.  

The map was designed with these criteria: 

  1. Accentuate the forested areas 
  2. Has World Imagery, but reduced and used more as a contextual layer
  3. Displays a user created tile layer 
  4. Has customized labels

Let’s zoom into the Central Valley of California and see how it was done. 

Central Valley, California with subdued imagery and enhanced forests.
Take a look at the Basemap layers and do you see that there are only five listed? The sixth is part of the layer “Physical_Geography_Base” using code copied in from the World Topographic Map.

Accentuate the forested areas

Did you know you can copy code from one basemap to another?  In the Vector Tile Style Editor within the World Topographic Map under ‘Natural’ there are two layers in the  ‘Vegetation’ category.  We can use those to emphasize the forested areas.  Open up the JSON Editor and take the code containing the two vegetation layers and copy it out (lines 121-195).

Image of the Topographic Map with the portion of code for vegetation in the process of being highlighted and copied.

Next paste those lines of code (mind the comma) into the JSON of the Physical Geography Base and you can see the forested areas get tinted green.  Next adjust the Color to be a bluer green with Opacity that persists at every scale. See this blog to see a more detailed example of how this is done. 

Image in the Style Editor showing the modification of the vegetation layer with Color and Opacity.

Has World Imagery, but reduced and used more as a contextual layer

To help mute out the imagery the Physical Geography Base layer is tinted white-grey with 30% Opacity. This helps to tone down the saturation and make the imagery more subtle.

Image in the Style Editor showing the land layer modified with Color and Opacity.

Take this layer into the Map Viewer to combine it with Imagery and World Hillshade. Using Blend Modes, ‘Multiplythe Base Layer with World Hillshade; next ‘Multiply’ World Hillshade with World Imagery and set the Transparency to 50% to further reduce its presence. Such nice and nuanced terrain and imagery now! 

Image showing the basemaps in the Map Viewer with the Base layer being 'Blended' with the World Hillshade.

Displays a locally produced vector tile styled in the editor

What’s really cool is you can publish your own vector tiles from Pro and use the Style Editor for the cartography. Vector Tiles are cached and extremely performant especially for complex polygons with thousands of vertices. Here’s a lake polygon for an area in California known as Tulare Lake that reappeared in the spring of 2023. I’ve broken the single polygon into two so now I have a polyline and a polygon. By selecting both of them I can publish them from Pro as a Vector Tile… 

Image of ArcGIS Pro and two layers being published as Vector Tiles to ArcGIS Online.

Then in the Style Editor I can do cool things like duplicate the outline and use different stroke sizes, colors, and opacity levels to achieve a faded or glowing effect. 

Image of the Tulare Lake Vector Tile with a series of duplicated outlines to create a feathered effect.

Lastly ‘Multiply’ the lake in the Map Viewer which gives it a more fluid look and integrates it into the landscape. 

Image of the styled Tulare Lake polygon 'Multiplied' with the layers beneath it.

Has customized labels

Andy’s already detailed out the steps above for how to isolate and manipulate a label. Let’s take it a step further and make the label really fit our map by moving it more in alignment with the lake outline. Using the reference layer, I have isolated the label for “Tulare Lake” and made it its own layer. Then I changed the font, color, size and increased the Line Height, Text Anchor, and Offset so that the label is moved and perfectly centered within my lake polygon. 

Image of the Reference layer with the styling applied to the Tulare Lake label.

Nice and neat in the center!

Image showing the original placement of the label and the modified location that was adjusted in the Style Editor.

Like Andy also showed, let’s add the word “County” to our Administrative 2 layer by adding it in the JSON “text-field”.

Image of the word 'County' added into the text field section of code.

Not a just a ‘basemap’ anymore.

The final map showing Tulare Lake and the modified six basemaps.

If you would like to see these steps in action, please check out this video.

So what’s the answer? Basemap… or Map?

Well, that’s up to you! We’ll continue to provide and update basemaps as we always have, but it’s a starting point. Don’t think of the basemap as that separate item floating somewhere behind your information. With these tools it can be, and should be, an integral part of your presentation.

Please feel free to reach out to us with comments or questions.

About the authors

Andy is a Cartographic Designer who has been building maps for 50 years. He has been working with Esri in Redlands for 14 years, most recently on the creation of some of Esri's vector basemaps, and the development of color ramps for ArcGIS Online. Prior to Esri, he was Manager of Cartographic Design at Rand McNally, and before that a Senior Cartographer at GeoSystems/MapQuest. He is originally from England, and worked for a number of years at what is now the University of Derby before moving to the USA. Andy can be contacted at: askinner@esri.com

Connect:

With over two decades of GIS experience Emily has mapped elephants in Thailand, wildlife poachers in the Republic of Palau, land use related issues around Yosemite National Park, and active wildfire incidents for the State of California. Presently she is a Senior Product Engineer and Cartographer with the ArcGIS Living Atlas of the World where she styles and designs layers, maps, and apps with the Environment Team. When not making maps, she is a true geographer and loves traveling with her family.

Connect:
Subscribe
Notify of
0 Comments
Inline Feedbacks
View all comments

Next Article

Using Arcade to Translate Pop-Ups for Use in the ArcGIS Instant Apps

Read this article