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
I need to make a list from a geojson data I use in open layer. Data can't be changed.
I tried in many way to do it using list.js, that looks me be perfect for my need. However I can not be able to do it.
Thanks for this issue. I'm not the library maintainer but I don't think that the library will ever support a native format for custom JavaScript objects like zona: <something> or nome: <something> really.
Adapting data is not generally bad, expecially in these situations. I mean: you can keep the original data exactly as-is, while it's possible to just adapt the data on-the-fly into a new desired data structure, and put that as input of the library.
Hi
I need to make a list from a geojson data I use in open layer. Data can't be changed.
I tried in many way to do it using list.js, that looks me be perfect for my need. However I can not be able to do it.
My data is something like that:
var json_2 = [ {"properties": { "zona": "Italia", "nome": "A"} }, {"properties": { "zona": "Italia", "nome": "I" } } ]
I should like to have a list with:
Italia - A
Italia - I
Is it possible in some way without parse the data?
The text was updated successfully, but these errors were encountered: