Show MultiGeometry data from GeoJSON on the Map
This tutorial shows how to add a MultiGeometry GeoJSON overlay to the map using OpenLayers.
-
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 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. -
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 GeoJSON multigeometries sample data.
-
Create the styles. Create one style for each geometry type: point, line, polygon, etc.
-
Create a function that returns the style depending on the type of geometry of the features in the GeoJSON
-
Add the vector layer.
-
Fit the map view to the bounding box of the data.