Show polygon data from GeoJSON on the map
In this tutorial, we will demonstrate the process of incorporating a GeoJSON polygon overlay onto the map. Through the following steps, you will learn how to seamlessly integrate this feature into your web mapping applications.
-
Copy the following code, paste it into your favorite text editor, and save it as a
.html
file. -
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).
-
Replace
YOUR_MAPTILER_API_KEY_HERE
with your actual MapTiler API key. -
The next is up to you. You can center your map wherever you desire (modifying the
starting position
) and set an appropriate zoom level (modifying thestarting zoom
) to match your users’ needs. Additionally, you can change the map’s look (by updating thesource URL
); choose from a range of visually appealing map styles from our extensive MapTiler standard maps, or create your own to truly differentiate your application. -
Add event handler for map load event. You will add code to create a GeoJSON source and a vector layer in this handler.
map.on('load', async function() { });
-
Create GeoJSON source. The following snippet creates GeoJSON source hosted on MapTiler Cloud (check out the How to Upload GeoJSON to MapTiler Cloud tutorial). Publish the dataset and copy the link to the GeoJSON. Download the Rio de Janeiro sample data.
map.on('load', async function() { const geojson = await maptilersdk.data.get('YOUR_MAPTILER_DATASET_ID_HERE'); map.addSource('rio_cats', { type: 'geojson', data: geojson }); });
-
Add the vector layer
map.addLayer({ 'id': 'rio_cats', 'type': 'fill', 'source': 'rio_cats', 'layout': {}, 'paint': { 'fill-color': '#98b', 'fill-opacity': 0.8 } });
Learn more
Check out the tutorials on How to add a GeoJSON in MapLibre (video & code) to learn how to load a point GeoJSON and change the point icon.