-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: add cities.geojson (external secondary instance for “all quest…
…ions”)
- Loading branch information
1 parent
81a57c3
commit 3e512a6
Showing
1 changed file
with
65 additions
and
0 deletions.
There are no files selected for viewing
65 changes: 65 additions & 0 deletions
65
packages/common/src/fixtures/preview-service/xforms/cities.geojson
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
{ | ||
"type": "FeatureCollection", | ||
"features": [ | ||
{ | ||
"type": "Feature", | ||
"properties": { | ||
"title": "Warsaw", | ||
"info": "Capital city of Poland", | ||
"id": "1" | ||
}, | ||
"geometry": { | ||
"type": "Point", | ||
"coordinates": [ | ||
21.0122, | ||
52.2297 | ||
] | ||
} | ||
}, | ||
{ | ||
"type": "Feature", | ||
"properties": { | ||
"title": "Berlin", | ||
"info": "Capital city of Germany", | ||
"id": "2" | ||
}, | ||
"geometry": { | ||
"type": "Point", | ||
"coordinates": [ | ||
13.4050, | ||
52.5200 | ||
] | ||
} | ||
}, | ||
{ | ||
"type": "Feature", | ||
"properties": { | ||
"title": "Paris", | ||
"info": "Capital city of France", | ||
"id": "3" | ||
}, | ||
"geometry": { | ||
"type": "Point", | ||
"coordinates": [ | ||
2.3522, | ||
48.8566 | ||
] | ||
} | ||
}, | ||
{ | ||
"type": "Feature", | ||
"properties": { | ||
"title": "Kyiv", | ||
"info": "Capital city of Ukraine", | ||
"id": "4" | ||
}, | ||
"geometry": { | ||
"type": "Point", | ||
"coordinates": [ | ||
30.5234, | ||
50.4501 | ||
] | ||
} | ||
} | ||
] | ||
} |