Skip to content

Commit d55f7ee

Browse files
Merge pull request #302 from getodk/chore/all-questions-cities-geojson-extsecinst
Add `cities.geojson`, external secondary instance for “all questions" demo form
2 parents 64f259e + 3e512a6 commit d55f7ee

File tree

1 file changed

+65
-0
lines changed

1 file changed

+65
-0
lines changed
Lines changed: 65 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,65 @@
1+
{
2+
"type": "FeatureCollection",
3+
"features": [
4+
{
5+
"type": "Feature",
6+
"properties": {
7+
"title": "Warsaw",
8+
"info": "Capital city of Poland",
9+
"id": "1"
10+
},
11+
"geometry": {
12+
"type": "Point",
13+
"coordinates": [
14+
21.0122,
15+
52.2297
16+
]
17+
}
18+
},
19+
{
20+
"type": "Feature",
21+
"properties": {
22+
"title": "Berlin",
23+
"info": "Capital city of Germany",
24+
"id": "2"
25+
},
26+
"geometry": {
27+
"type": "Point",
28+
"coordinates": [
29+
13.4050,
30+
52.5200
31+
]
32+
}
33+
},
34+
{
35+
"type": "Feature",
36+
"properties": {
37+
"title": "Paris",
38+
"info": "Capital city of France",
39+
"id": "3"
40+
},
41+
"geometry": {
42+
"type": "Point",
43+
"coordinates": [
44+
2.3522,
45+
48.8566
46+
]
47+
}
48+
},
49+
{
50+
"type": "Feature",
51+
"properties": {
52+
"title": "Kyiv",
53+
"info": "Capital city of Ukraine",
54+
"id": "4"
55+
},
56+
"geometry": {
57+
"type": "Point",
58+
"coordinates": [
59+
30.5234,
60+
50.4501
61+
]
62+
}
63+
}
64+
]
65+
}

0 commit comments

Comments
 (0)