diff --git a/Clusterthematic.html b/Clusterthematic.html index a376d65d55867ab326daae13688b7dc36be41493..9530c0c1811c8ae2b0d6871f9cbc3411c4e7fa94 100644 --- a/Clusterthematic.html +++ b/Clusterthematic.html @@ -107,6 +107,22 @@ var colors = ['#fbb03b', '#0074D9', '#2ECC40']; map.on('load', function () { + // Add arrondissements + + map.addSource('lignes', { + type: 'geojson', + data: 'https://raw.githubusercontent.com/mastersigat/data/main/arrondissements.geojson' + }); + + map.addLayer({ + 'id': 'Lignes', + 'type': 'line', + 'source': 'lignes', + 'paint': {'line-width': 1, + 'line-color': '#AAAAAA'} + }); + + // ADD reporting layer map.addSource('earthquakes', {