admin管理员组文章数量:1344308
I need to convert a GeoJSON output from a server to a Javascript array; I have done some searches and they were for the 'regular' JSON outputs and not the GeoJSON. Here is the output from the Server:
{"type":"FeatureCollection","features":[{"type":"Feature","property":"blah"}, {"type":"Feature","property":"blah2"}]}
And here is what I need (note, no quotation on the 'features' variable needed):
features = [{"type":"Feature","property":"blah"}, {"type":"Feature","property":"blah2"}]}
I think I need to find the 'features' property and then loop through its objects? Thanks!
I need to convert a GeoJSON output from a server to a Javascript array; I have done some searches and they were for the 'regular' JSON outputs and not the GeoJSON. Here is the output from the Server:
{"type":"FeatureCollection","features":[{"type":"Feature","property":"blah"}, {"type":"Feature","property":"blah2"}]}
And here is what I need (note, no quotation on the 'features' variable needed):
features = [{"type":"Feature","property":"blah"}, {"type":"Feature","property":"blah2"}]}
I think I need to find the 'features' property and then loop through its objects? Thanks!
Share Improve this question asked Sep 30, 2014 at 19:07 IrfanClemsonIrfanClemson 1,7796 gold badges35 silver badges56 bronze badges 4- So you have a valid JSON string, and you want to convert it to something that is not valid ? – adeneo Commented Sep 30, 2014 at 19:10
-
features = JSON.parse('{"type":"FeatureCollection","features":[{"type":"Feature","property":"blah"}, {"type":"Feature","property":"blah2"}]}').features
– Malk Commented Sep 30, 2014 at 19:11 - I need to convert to a standard Javascript array for something in my javascript code; the regular (valid) GeoJSON is being used fine in some other part of the code. Thanks. – IrfanClemson Commented Sep 30, 2014 at 19:15
- @Malk: I need to do in a loop--can't hard code the values. Thanks. – IrfanClemson Commented Sep 30, 2014 at 19:16
1 Answer
Reset to default 8A GeoJSON object is still a JSON object (it's the first thing their documentation says).
http://geojson/geojson-spec.html
If you want to store the features PROPERTY of a GeoJSON object, access the property value as you would normally after conversion to a javascript object and push that property into a new variable, or use as is.
var geoObject = JSON.parse(geoJSONObject);
var features = [];
features = geoObject.features;
本文标签: Converting GeoJSON object to Javascript ArrayStack Overflow
版权声明:本文标题:Converting GeoJSON object to Javascript Array - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743757005a2533688.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论