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
According to The GeoJSON Format description (Paragraph 3.1.1. Position) each position of geometry may include more than two elements. So checks for only two coordinates in components could be wrong.
For example, in point-geomvalidator: value => value.length === 2 probably should be validator: value => value.length >= 2
The text was updated successfully, but these errors were encountered:
According to The GeoJSON Format description (Paragraph 3.1.1. Position) each position of geometry may include more than two elements. So checks for only two coordinates in components could be wrong.
For example, in point-geom
validator: value => value.length === 2
probably should bevalidator: value => value.length >= 2
The text was updated successfully, but these errors were encountered: