diff options
Diffstat (limited to 'tests/auto/qgeojson/08-feature.json')
-rw-r--r-- | tests/auto/qgeojson/08-feature.json | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/tests/auto/qgeojson/08-feature.json b/tests/auto/qgeojson/08-feature.json new file mode 100644 index 00000000..540c31b2 --- /dev/null +++ b/tests/auto/qgeojson/08-feature.json @@ -0,0 +1,25 @@ +{ + "type":"Feature", + "id":"Poly", + "properties": { + "text":"This is a Feature with a Polygon" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [17.13, 51.11], + [30.54, 50.42], + [26.70, 58.36], + [17.13, 51.11] + ], + [ + [23.46, 54.36], + [20.52, 51.91], + [28.25, 51.50], + [26.80, 54.36], + [23.46, 54.36] + ] + ] + } +} |