1{
2    "type" : "Feature",
3    "id" : "Poly",
4    "properties" : {
5        "name" : "Poly",
6        "text" : "This is a Feature with a Polygon",
7        "color" : "limegreen"
8    },
9    "geometry" : {
10        "type" : "Polygon",
11        "coordinates" : [
12            [
13                [17.13, 51.11],
14                [30.54, 50.42],
15                [26.70, 58.36],
16                [17.13, 51.11]
17            ],
18            [
19                [23.46, 54.36],
20                [20.52, 51.91],
21                [28.25, 51.50],
22                [26.80, 54.36],
23                [23.46, 54.36]
24            ]
25        ]
26    }
27}
28