@@ -15,7 +15,7 @@ public enum GeoJSONObjectType
15
15
/// <remarks>
16
16
/// See https://tools.ietf.org/html/rfc7946#section-3.1.2
17
17
/// </remarks>
18
- [ EnumMember ( Value = "point " ) ]
18
+ [ EnumMember ( Value = "Point " ) ]
19
19
Point ,
20
20
21
21
/// <summary>
@@ -24,7 +24,7 @@ public enum GeoJSONObjectType
24
24
/// <remarks>
25
25
/// See https://tools.ietf.org/html/rfc7946#section-3.1.3
26
26
/// </remarks>
27
- [ EnumMember ( Value = "multipoint " ) ]
27
+ [ EnumMember ( Value = "MultiPoint " ) ]
28
28
MultiPoint ,
29
29
30
30
/// <summary>
@@ -33,7 +33,7 @@ public enum GeoJSONObjectType
33
33
/// <remarks>
34
34
/// See https://tools.ietf.org/html/rfc7946#section-3.1.4
35
35
/// </remarks>
36
- [ EnumMember ( Value = "linestring " ) ]
36
+ [ EnumMember ( Value = "LineString " ) ]
37
37
LineString ,
38
38
39
39
/// <summary>
@@ -42,7 +42,7 @@ public enum GeoJSONObjectType
42
42
/// <remarks>
43
43
/// See https://tools.ietf.org/html/rfc7946#section-3.1.5
44
44
/// </remarks>
45
- [ EnumMember ( Value = "point " ) ]
45
+ [ EnumMember ( Value = "MultiLineString " ) ]
46
46
MultiLineString ,
47
47
48
48
/// <summary>
@@ -51,7 +51,7 @@ public enum GeoJSONObjectType
51
51
/// <remarks>
52
52
/// See https://tools.ietf.org/html/rfc7946#section-3.1.6
53
53
/// </remarks>
54
- [ EnumMember ( Value = "point " ) ]
54
+ [ EnumMember ( Value = "Polygon " ) ]
55
55
Polygon ,
56
56
57
57
/// <summary>
@@ -60,7 +60,7 @@ public enum GeoJSONObjectType
60
60
/// <remarks>
61
61
/// See https://tools.ietf.org/html/rfc7946#section-3.1.7
62
62
/// </remarks>
63
- [ EnumMember ( Value = "point " ) ]
63
+ [ EnumMember ( Value = "MultiPolygon " ) ]
64
64
MultiPolygon ,
65
65
66
66
/// <summary>
@@ -69,7 +69,7 @@ public enum GeoJSONObjectType
69
69
/// <remarks>
70
70
/// See https://tools.ietf.org/html/rfc7946#section-3.1.8
71
71
/// </remarks>
72
- [ EnumMember ( Value = "point " ) ]
72
+ [ EnumMember ( Value = "GeometryCollection " ) ]
73
73
GeometryCollection ,
74
74
75
75
/// <summary>
@@ -78,7 +78,7 @@ public enum GeoJSONObjectType
78
78
/// <remarks>
79
79
/// See https://tools.ietf.org/html/rfc7946#section-3.2
80
80
/// </remarks>
81
- [ EnumMember ( Value = "point " ) ]
81
+ [ EnumMember ( Value = "Feature " ) ]
82
82
Feature ,
83
83
84
84
/// <summary>
@@ -87,7 +87,7 @@ public enum GeoJSONObjectType
87
87
/// <remarks>
88
88
/// See https://tools.ietf.org/html/rfc7946#section-3.3
89
89
/// </remarks>
90
- [ EnumMember ( Value = "point " ) ]
90
+ [ EnumMember ( Value = "FeatureCollection " ) ]
91
91
FeatureCollection
92
92
}
93
93
}
0 commit comments