Ajout GeoJSON
davvalent

davvalent commited on 2022-08-26 03:52:04
Showing 2 changed files, with 45 additions and 0 deletions.

... ...
@@ -1,2 +1,3 @@
1 1
 node_modules/
2 2
 post-receive
3
+geojson.io.js
... ...
@@ -0,0 +1,44 @@
1
+{
2
+  "type": "FeatureCollection",
3
+  "features": [
4
+    {
5
+      "type": "Feature",
6
+      "properties": {
7
+        "name": "Chapelle Saint-Antoine"
8
+      },
9
+      "geometry": {
10
+        "type": "Point",
11
+        "coordinates": [
12
+          -73.55089724063873,
13
+          45.51883660822286
14
+        ]
15
+      }
16
+    },
17
+    {
18
+      "type": "Feature",
19
+      "properties": {
20
+        "name": "École Ville-Marie"
21
+      },
22
+      "geometry": {
23
+        "type": "Point",
24
+        "coordinates": [
25
+          -73.55039164423943,
26
+          45.51727578133604
27
+        ]
28
+      }
29
+    },
30
+    {
31
+      "type": "Feature",
32
+      "properties": {
33
+        "name": "Asile Saint-Vincent de Paul"
34
+      },
35
+      "geometry": {
36
+        "type": "Point",
37
+        "coordinates": [
38
+          -73.55142295360565,
39
+          45.51726544458981
40
+        ]
41
+      }
42
+    }
43
+  ]
44
+}
0 45
\ No newline at end of file
1 46