snippet geojson
davvalent

davvalent commited on 2022-08-26 15:26:42
Showing 2 changed files, with 11 additions and 1 deletions.

... ...
@@ -1,4 +1,3 @@
1 1
 node_modules/
2 2
 post-receive
3
-geojson.io.js
4 3
 img/infographie/*
... ...
@@ -0,0 +1,11 @@
1
+window.api.map.addLayer(
2
+    L.imageOverlay(
3
+      "https://ntnlv.ca/faubourg/map/img/plan-fond-transparent-min.png", [
4
+        [45.5155088875666, -73.55432183482827],
5
+        [45.52127103906887, -73.54793549518355]
6
+      ], {
7
+        opacity: 0.5,
8
+        alt: "Plan d'expropriation du Faubourg à M'lasse"
9
+      }
10
+    )
11
+).setView([45.51823567357893, -73.55085910368373], 18)
0 12