1{
2    "type":"FeatureCollection",
3    "features": [
4        {
5            "type":"Feature",
6            "id":"Poly",
7            "properties": {
8                "text":"This is a Feature with a Polygon"
9            },
10            "geometry": {
11               "type": "Polygon",
12               "coordinates": [
13                   [
14                       [17.13, 51.11],
15                       [30.54, 50.42],
16                       [26.70, 58.36],
17                       [17.13, 51.11]
18                   ],
19                   [
20                       [23.46, 54.36],
21                       [20.52, 51.91],
22                       [28.25, 51.50],
23                       [26.80, 54.36],
24                       [23.46, 54.36]
25                   ]
26               ]
27           }
28       },
29       {
30           "type":"Feature",
31           "id":"MultiLine",
32           "properties": {
33               "text":"This is a Feature with a MultiLineString"
34           },
35           "geometry": {
36              "type": "MultiLineString",
37              "coordinates": [
38                [[13.5, 43], [10.73, 59.92]],
39                [[9.15, 45], [-3.15, 58.90]]
40              ]
41           }
42       }
43    ]
44}
45