How to create a choropleth Map from GeoJSON using OpenLayers
This tutorial shows how to add a styled GeoJSON overlay to the map, display a popup on click, and create a map legend. As an example data, we use countries with attributes from EUROSTAT in GeoJSON format. Download the sample data here
-
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 thesource URL
. See what’s available here. -
Add the GeoJSON layer. The following snippet creates GeoJSON layer hosted on MapTiler Cloud (check out the How to Upload GeoJSON to MapTiler Cloud tutorial). The GeoJSON used in the example contains data from Eurostat Marriage indicators dataset filtrated to just countries with some value of mean age of women at first marriage in 2019. Download the sample data here
-
Create the functions to get the style based on the age attribute.
-
Create a choropleth map based on the age attribute. Change the
style
property of the layer. -
Create the popup
html
element. -
Create the style for the popup
-
Create the overlay to anchor the popup
-
Add the overlay to the map
- Create a function to display a popup when clicking on the geojson layer and show the information of the age attribute
-
Create a map legend.
-
Create the style for the map legend.
View complete source code on GitHub
Learn more
Get more details about this tutorial on Zoomable Choropleth Map from GeoJSON with OpenLayers or check out 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