These terms adhere to RFC 7946 - The GeoJSON Format.

Sections

Definition

A MultiPoint represents two or more geographic Points that share a relationship.

This adheres to the RFC 7946 internet standard when serialized into JSON. When deserialized, this class becomes an immutable object which should be initiated using its static factory methods. The list of points must be equal to or greater than 2.

See the multi-geometries section for more information.

JSON Example & Class Diagram

Raw GeoJSON

{
   "type": "MultiPoint",
   "coordinates": [
     [100.0, 0.0],
     [101.0, 1.0]
   ]
 }

Class Diagram

For complete & up to date information, see the API documentation. For a dynamic interactive diagram, see the FigJam diagram.