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
It would really help if the documentation had working examples. FeatureCollections do work. Have you tried validating the geojson? http://geojson.io/http://geojsonlint.com/
Your geojson source should look something like this:
{
data: {
features: [
{
geometry: {
coordinates: [
[longitude, latitude]
],
type: "Point" // or some other valid geojson type
},
properties: {},
type: "Feature"
}
],
id: "some-id"
type: "FeatureCollection"
},
type: "geojson"
}
I can’t figure out how to load a geojson file with an array of multiple features as featurecollection.
Maybe it can’t do it?
The text was updated successfully, but these errors were encountered: