We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
According to RFC7946 definition, to present the ring (with hole), it has to two dementional array.
https://tools.ietf.org/html/rfc7946#section-3.1.6 { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [100.0, 0.0], [101.0, 0.0], [101.0, 1.0], [100.0, 1.0], [100.0, 0.0] ] ] }, "properties": { "prop0": "value0", "prop1": { "this": "that" } }
The text was updated successfully, but these errors were encountered:
If you look at the Geometry class, it already wraps T inside of a list
protected List<T> coordinates = new ArrayList<T>();
Sorry, something went wrong.
No branches or pull requests
According to RFC7946 definition, to present the ring (with hole), it has to two dementional array.
https://tools.ietf.org/html/rfc7946#section-3.1.6
{
"type": "Feature",
"geometry": {
"type": "Polygon",
"coordinates": [
[
[100.0, 0.0],
[101.0, 0.0],
[101.0, 1.0],
[100.0, 1.0],
[100.0, 0.0]
]
]
},
"properties": {
"prop0": "value0",
"prop1": {
"this": "that"
}
}
The text was updated successfully, but these errors were encountered: