You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi ! There is no properties member for FeatureCollection. The RFC states that it is forbidden to use the same properties for that purpose, (https://datatracker.ietf.org/doc/html/rfc7946#section-6)
RFC also states that it is possible to extend the model, so you may have an "additionalProperties" members for instance.
Not sure how to implement this in a proper way (dynamic objects maybe ?)
Hi,
is it possible to add properties in root element ?
ex:
{
"type": "FeatureCollection",
"properties": {
"Creator": "Me",
"records": 1,
"label": "Track 1"
},
"features": [
{
"type": "Feature",
"properties": {
"name": "trk1"
},
"geometry": {
"type": "LineString",
"coordinates": [
[
44.43613529205322,
11.499595642089844,
62.3203125
],
[
44.43568468093872,
11.499295234680176,
62.46875
],
[
44.43199396133423,
11.496570110321045,
62.10546875
]
]
}
}
]
}
The text was updated successfully, but these errors were encountered: