forked from GeoJSON-Net/GeoJSON.Net
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGeoJSONObjectType.cs
More file actions
62 lines (53 loc) · 2.36 KB
/
GeoJSONObjectType.cs
File metadata and controls
62 lines (53 loc) · 2.36 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
// --------------------------------------------------------------------------------------------------------------------
// <copyright file="GeoJSONObjectType.cs" company="Jörg Battermann">
// Copyright © Jörg Battermann 2011
// </copyright>
// <summary>
// Defines the GeoJSON Objects types as defined in the <see cref="http://geojson.org/geojson-spec.html#geojson-objects">geojson.org v1.0 spec</see>.
// </summary>
// --------------------------------------------------------------------------------------------------------------------
namespace GeoJSON.Net
{
/// <summary>
/// Defines the GeoJSON Objects types as defined in the <see cref="http://geojson.org/geojson-spec.html#geojson-objects">geojson.org v1.0 spec</see>.
/// </summary>
public enum GeoJSONObjectType
{
/// <summary>
/// Defines the <see cref="http://geojson.org/geojson-spec.html#point">Point</see> type.
/// </summary>
Point,
/// <summary>
/// Defines the <see cref="http://geojson.org/geojson-spec.html#multipoint">MultiPoint</see> type.
/// </summary>
MultiPoint,
/// <summary>
/// Defines the <see cref="http://geojson.org/geojson-spec.html#linestring">LineString</see> type.
/// </summary>
LineString,
/// <summary>
/// Defines the <see cref="http://geojson.org/geojson-spec.html#multilinestring">MultiLineString</see> type.
/// </summary>
MultiLineString,
/// <summary>
/// Defines the <see cref="http://geojson.org/geojson-spec.html#polygon">Polygon</see> type.
/// </summary>
Polygon,
/// <summary>
/// Defines the <see cref="http://geojson.org/geojson-spec.html#multipolygon">MultiPolygon</see> type.
/// </summary>
MultiPolygon,
/// <summary>
/// Defines the <see cref="http://geojson.org/geojson-spec.html#geometry-collection">GeometryCollection</see> type.
/// </summary>
GeometryCollection,
/// <summary>
/// Defines the <see cref="http://geojson.org/geojson-spec.html#feature-objects">Feature</see> type.
/// </summary>
Feature,
/// <summary>
/// Defines the <see cref="http://geojson.org/geojson-spec.html#feature-collection-objects">FeatureCollection</see> type.
/// </summary>
FeatureCollection
}
}