Premier jet d'informations dans le GIS
davvalent

davvalent commited on 2022-08-26 23:18:30
Showing 2 changed files, with 22 additions and 9 deletions.

... ...
@@ -4,11 +4,12 @@
4 4
     {
5 5
       "type": "Feature",
6 6
       "properties": {
7
-        "rdfs:label": "Chapelle Saint-Antoine",
8
-        "qdmtl:thoroughfare": "foo",
9
-        "starting": 1234,
10
-        "ending": 1231,
11
-        "inventoryNumber": 87
7
+        "appellation": "Chapelle Saint-Antoine",
8
+        "rdfs:label": "1379 rue de la Gauchetière Est",
9
+        "qdmtl:thoroughfare": "http://data.qdmtl.ca/Thoroughfare/Gauchetiere",
10
+        "starting": 1379,
11
+        "ending": 1379,
12
+        "inventoryNumber": 247
12 13
       },
13 14
       "geometry": {
14 15
         "type": "Point",
... ...
@@ -21,7 +22,12 @@
21 22
     {
22 23
       "type": "Feature",
23 24
       "properties": {
24
-        "rdfs:label": "École Ville-Marie"
25
+        "rdfs:label": "1311 rue Craig rue Est",
26
+        "appellation": "École Ville-Marie",
27
+        "qdmtl:thoroughfare": "http://data.qdmtl.ca/Thoroughfare/Craig",
28
+        "starting": 1311,
29
+        "ending": 1311,
30
+        "inventoryNumber": 172
25 31
       },
26 32
       "geometry": {
27 33
         "type": "Point",
... ...
@@ -34,7 +40,12 @@
34 40
     {
35 41
       "type": "Feature",
36 42
       "properties": {
37
-        "rdfs:label": "Asile Saint-Vincent de Paul"
43
+        "rdfs:label": "970-1000 rue de la Visitation",
44
+        "qdmtl:thoroughfare": "http://data.qdmtl.ca/Thoroughfare/Visitation",
45
+        "appellation": "Asile Saint-Vincent de Paul",
46
+        "starting": 970,
47
+        "ending": 1000,
48
+        "inventoryNumber": 183
38 49
       },
39 50
       "geometry": {
40 51
         "type": "Point",
... ...
@@ -47,11 +58,12 @@
47 58
     {
48 59
       "type": "Feature",
49 60
       "properties": {
50
-        "rdfs:label": "",
61
+        "rdfs:label": "1184-1188 rue de la Gauchetière Est",
51 62
         "qdmtl:thoroughfare": "http://data.qdmtl.ca/Thoroughfare/Gauchetiere",
52 63
         "starting": 1184,
53 64
         "ending": 1188,
54
-        "inventoryNumber": 219
65
+        "inventoryNumber": 219,
66
+        "appellation": ""
55 67
       },
56 68
       "geometry": {
57 69
         "type": "Point",
... ...
@@ -53,6 +53,7 @@
53 53
         const informationsPopUp = `
54 54
           <b>Informations</b>
55 55
           <ul>
56
+            <li>${feature.properties["appellation"]}</li>
56 57
             <li>${feature.properties["rdfs:label"]}</li>
57 58
             <li>${feature.properties["qdmtl:thoroughfare"]}</li>
58 59
             <li>${feature.properties["inventoryNumber"]}</li>
59 60