How to use and filter data for MapTiler Countries
This tutorial shows how to use and filter data for MapTiler Countries dataset and make a choropleth map of the US states. MapTiler Countries is a dataset that primarily contains data about administrative divisions of a world based on countries and their territories.
-
Copy the following code, paste it into your favorite text editor, and save it as a
.html
file. -
Replace
YOUR_MAPTILER_API_KEY_HERE
with your actual MapTiler API key. -
The next it’s up to you. You can start the map in a different place by modifying the
starting position
andstarting zoom
, and you can change the look of the map to any of our styles, or yours, by updating thestyle
. See what’s available here. -
Install the npm package.
-
Include the CSS file.
If you have a bundler that can handle CSS, you can
import
the CSS or include it with a<link>
in the head of the document via the CDN -
Include the following code in your JavaScript file (Example: app.js).
-
Add event handler for map
load
event. You will add code to create a vector source and a vector layer in this handler. -
Create vector source. The following snippet creates vector source for the MapTiler Countries dataset.
-
Get the id of the first symbol layer. We want to include the vector layer below the map labels. That means we need to know the id of the first symbol layer so we can include the vector layer before this layer.
-
Add the vector layer. We need to include
firsSymbolId
to themap.addLayer
function to display the vector under the maps labels -
Filter the data to only show the states of USA. Add a filter to the layer to only display level 1 items. The dataset now contains divisions and sub-subdivisions only for the US, if you need other country`s divisions, please contact us.
-
Create a choropleth map based on the name attribute. Change the
fill-color
property of the layer.
View complete source code on GitHub
Learn more
Check out the How to create a countries map with your own data tutorial.
Visit the MapTiler Countries schema to know how it is organized into different thematic layers and which attribute and values each layer contains.
Read the following How-tos related to choropleth maps:
How to style a choropleth map in Edit Tool
Prepare GeoJSON with attributes for choropleth map and upload GeoJSON to MapTiler Cloud