Learn how to customize vector tiles
You can use Esri Leaflet to display vector tile
In this tutorial, you style land parcels from a public vector tile service
Prerequisites
You need an ArcGIS Location Platform or ArcGIS Online account.
Steps
Review the source data
This tutorial uses the Santa Monica Mountains Parcels vector tile service
-
Go to the item page
An item page is a web page in ArcGIS Online or the developer dashboard used to access and manage the properties for an item and the content it references such as a web map, hosted layer, or file. for the Santa Monica Mountains Parcels vector tile layerA vector tile layer is a data layer used to access and display tiled data and its corresponding styles. . -
Under Details, find the Created from property. Follow the link to view the item page for the original feature layer
A hosted feature layer is a hosted layer (item) in a portal that is used to manage the properties and settings of a spatially-enabled feature layer in a feature service. , Santa_Monica_Mountains_Parcels. -
Click the Data tab to view the layer's features
A feature is a single record, also known as a row, that represents a real-world entity. It typically contains a geometry (point, multipoint, polyline, or polygon) and attributes but it can also contain just attributes. and attributesAttributes are fields and values for a single feature or non-spatial record. They are typically stored in a database or service such as a feature service. . Each feature represents a land parcel and has attributes such as an address, use code, and number of square feet. -
Review the values of the
Usefield. You will use this field to style vector tiles in your application.Type
Get the starter app
Select a type of authentication and follow the steps to create a new app.
Choose API key authentication if you:
- Want the easiest way to get started.
- Want to build public applications
A public application is an application that allows anonymous access without requiring users to sign in with an ArcGIS account. It supports API key or app authentication. that access ArcGIS Location ServicesArcGIS Location Services, also referred to as Location Services, are services hosted by Esri that provide geospatial functionality for developing mapping applications. They include the ArcGIS Basemap Styles service, ArcGIS Static Basemap Tiles service, ArcGIS Places service, ArcGIS Geocoding service, ArcGIS Routing service, ArcGIS GeoEnrichment service, and ArcGIS Elevation service. An ArcGIS Location Platform or ArcGIS Online account is required to use the services. and secure itemsAn item, also known as a content item, is a resource stored in a portal such as a web map, hosted layer, style, script tool, file, or notebook. . - Have an ArcGIS Location Platform or ArcGIS Online account.
Choose user authentication if you:
- Want to build private applications.
- Require application users to sign in with their own ArcGIS account
An ArcGIS account is an identity with a user type and set of privileges that can access specific ArcGIS products, tools, APIs, services, and resources. The main account types that can be used for development are an ArcGIS Location Platform account, ArcGIS Online account, and ArcGIS Enterprise account. ArcGIS Location Platform and ArcGIS Online accounts are also associated with a subscription. and access resources their behalf. - Have an ArcGIS Online account.
To learn more about both types of authentication, go to Authentication.
Set up authentication
Set developer credentials
Use the API key or OAuth developer credentials
Add a vector tile layer
Use the Vector class from Esri Leaflet Vector to add data from the Santa Monica Mountains Parcels vector tile service
-
Create a
Vectorand set theTile Layer urlto the URL of the Santa Monica Mountains Parcels vector tile service. Add it to the map.Use dark colors for code blocks L.esri.Vector.vectorBasemapLayer(basemapEnum, { token: accessToken, pane: "tilePane" }).addTo(map); const parcelsUrl = "https://vectortileservices3.arcgis.com/GVgbJbqm8hXASVYi/arcgis/rest/services/Santa_Monica_Mountains_Parcels_VTL/VectorTileServer"; L.esri.Vector.vectorTileLayer( parcelsUrl, ).addTo(map); </script>
Style parcels by use type
Use the MapLibre style specification to style land parcels according to their Use category.
Since Leaflet does not support WebGL, Esri Leaflet Vector uses MapLibre GL JS internally to render vector tiles.
-
Add a
stylefunction to theVector.Tile Layer Use dark colors for code blocks L.esri.Vector.vectorTileLayer( parcelsUrl, { style: function (style) { return style; } } ).addTo(map); -
Add a custom
fill-colorto the new style layer. Usegetto retrieveUseattribute values, viewed in the previous step. UseType caseto create a conditional expression that assigns a unique color to each use type.Use dark colors for code blocks L.esri.Vector.vectorTileLayer( parcelsUrl, { style: function (style) { style.layers[0].paint = { "fill-color": ["case", ["==", ["get", "UseType"], "Residential"], "#E8E191", // Yellow ["==", ["get", "UseType"], "Commercial"], "#E580A2", // Red ["==", ["get", "UseType"], "Government"], "#79E284", // Green ["==", ["get", "UseType"], "Industrial"], "#C080E5", // Purple ["==", ["get", "UseType"], "Institutional"], "#80BBE5", // Blue "#bfbfbf" ] }; return style; } } ).addTo(map); -
Run the app. The vector tiles should appear with custom colors for residential, commercial, government, industrial, and institutional land parcels. All remaining parcels should be displayed in gray.
Add an outline layer
Add another style layer to the MapLibre style object to display parcel outlines.
-
Add a
linelayer to the list oflayersin the style object. Set the source toesriand thesource-layertoSantato reference the vector tile service._Monica _Mountains _Parcels Use dark colors for code blocks { style: function (style) { style.layers[0].paint = { "fill-color": ["case", ["==", ["get", "UseType"], "Residential"], "#E8E191", // Yellow ["==", ["get", "UseType"], "Commercial"], "#E580A2", // Red ["==", ["get", "UseType"], "Government"], "#79E284", // Green ["==", ["get", "UseType"], "Industrial"], "#C080E5", // Purple ["==", ["get", "UseType"], "Institutional"], "#80BBE5", // Blue "#bfbfbf" ] }; style.layers.push({ "id": "parcels-outline", "source": "Santa_Monica_Mountains_Parcels_VTL", "source-layer": "Santa_Monica_Mountains_Parcels", "type": "line", }); return style; } } -
Style the color, width, and opacity of the parcel outlines.
Use dark colors for code blocks style.layers.push({ "id": "parcels-outline", "source": "Santa_Monica_Mountains_Parcels_VTL", "source-layer": "Santa_Monica_Mountains_Parcels", "type": "line", "paint": { "line-color": "#000000", "line-width": 0.25, "line-opacity": 0.25 } });
Run the app
Run the app.
You should see the styled vector tile layer with parcels displayed on the basemap layer. Parcels should be styled in different colors based on their use type, and thin outlines should be present around each parcel.What's next?
Learn how to use additional location services in these tutorials:


