Show Line Data from GeoJSON on the Map
This tutorial shows how to add a GeoJSON line overlay to the map.
-
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 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 link to the geojson. Download the sample data here.
map.on('load', async function() { const geojson = await maptilersdk.data.get('YOUR_MAPTILER_DATASET_ID_HERE'); map.addSource('gps_tracks', { 'type': 'geojson', 'data': geojson }); });
-
Add the vector layer
map.addLayer({ 'id': 'grand_teton', 'type': 'line', 'source': 'gps_tracks', 'layout': {}, 'paint': { 'line-color': '#e11', 'line-width': 4 } });
View complete source code on GitHub
Learn more
Check out the tutorials How to add a GeoJSON in MapLibre (video & code) to learn how to load a point GeoJSON and change the point icon.