-
-
Notifications
You must be signed in to change notification settings - Fork 164
Expand file tree
/
Copy pathGeoJSONObjectType.cs
More file actions
82 lines (73 loc) · 2.14 KB
/
GeoJSONObjectType.cs
File metadata and controls
82 lines (73 loc) · 2.14 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
// Copyright © Joerg Battermann 2014, Matt Hunt 2017
namespace GeoJSON.Net
{
/// <summary>
/// Defines the GeoJSON Objects types.
/// </summary>
public enum GeoJSONObjectType
{
/// <summary>
/// Defines the Point type.
/// </summary>
/// <remarks>
/// See https://tools.ietf.org/html/rfc7946#section-3.1.2
/// </remarks>
Point,
/// <summary>
/// Defines the MultiPoint type.
/// </summary>
/// <remarks>
/// See https://tools.ietf.org/html/rfc7946#section-3.1.3
/// </remarks>
MultiPoint,
/// <summary>
/// Defines the LineString type.
/// </summary>
/// <remarks>
/// See https://tools.ietf.org/html/rfc7946#section-3.1.4
/// </remarks>
LineString,
/// <summary>
/// Defines the MultiLineString type.
/// </summary>
/// <remarks>
/// See https://tools.ietf.org/html/rfc7946#section-3.1.5
/// </remarks>
MultiLineString,
/// <summary>
/// Defines the Polygon type.
/// </summary>
/// <remarks>
/// See https://tools.ietf.org/html/rfc7946#section-3.1.6
/// </remarks>
Polygon,
/// <summary>
/// Defines the MultiPolygon type.
/// </summary>
/// <remarks>
/// See https://tools.ietf.org/html/rfc7946#section-3.1.7
/// </remarks>
MultiPolygon,
/// <summary>
/// Defines the GeometryCollection type.
/// </summary>
/// <remarks>
/// See https://tools.ietf.org/html/rfc7946#section-3.1.8
/// </remarks>
GeometryCollection,
/// <summary>
/// Defines the Feature type.
/// </summary>
/// <remarks>
/// See https://tools.ietf.org/html/rfc7946#section-3.2
/// </remarks>
Feature,
/// <summary>
/// Defines the FeatureCollection type.
/// </summary>
/// <remarks>
/// See https://tools.ietf.org/html/rfc7946#section-3.3
/// </remarks>
FeatureCollection
}
}