SolidPolygonPath
type SolidPolygonPath: [any[]];
An array of positions forming a closed shape, such as a country or a lake.
Example
A polygon without holes:
{
"type": "Polygon",
"coordinates": [
[
[100, 0],
[101, 0],
[101, 1],
[100, 1],
[100, 0]
]
]
}