These terms adhere to RFC 7946 - The GeoJSON Format.
Sections
Definition
A MultiLineString is an array of LineString coordinate arrays.
See the multi-geometries section for more information.
JSON Example & Class Diagram
Raw GeoJSON
{
"type": "MultiLineString",
"coordinates": [
[
[100.0, 0.0],
[101.0, 1.0]
],
[
[102.0, 2.0],
[103.0, 3.0]
]
]
}
Class Diagram
For complete & up to date information, see the API documentation. For a dynamic interactive diagram, see the FigJam diagram.
