// Copyright © Joerg Battermann 2014, Matt Hunt 2017
namespace GeoJSON.Net
{
///
/// Defines the GeoJSON Objects types.
///
public enum GeoJSONObjectType
{
///
/// Defines the Point type.
///
///
/// See https://tools.ietf.org/html/rfc7946#section-3.1.2
///
Point,
///
/// Defines the MultiPoint type.
///
///
/// See https://tools.ietf.org/html/rfc7946#section-3.1.3
///
MultiPoint,
///
/// Defines the LineString type.
///
///
/// See https://tools.ietf.org/html/rfc7946#section-3.1.4
///
LineString,
///
/// Defines the MultiLineString type.
///
///
/// See https://tools.ietf.org/html/rfc7946#section-3.1.5
///
MultiLineString,
///
/// Defines the Polygon type.
///
///
/// See https://tools.ietf.org/html/rfc7946#section-3.1.6
///
Polygon,
///
/// Defines the MultiPolygon type.
///
///
/// See https://tools.ietf.org/html/rfc7946#section-3.1.7
///
MultiPolygon,
///
/// Defines the GeometryCollection type.
///
///
/// See https://tools.ietf.org/html/rfc7946#section-3.1.8
///
GeometryCollection,
///
/// Defines the Feature type.
///
///
/// See https://tools.ietf.org/html/rfc7946#section-3.2
///
Feature,
///
/// Defines the FeatureCollection type.
///
///
/// See https://tools.ietf.org/html/rfc7946#section-3.3
///
FeatureCollection
}
}