我想知道我是否有一个GeoJSON对象,例如
var geoJSONLoc= {
"type": "FeatureCollection",
"features": [
{
"type": "Feature",
"properties": {
"timeReported": "2013-01-22 08:42:26+01"
},
"geometry": {
"type": "Point",
"coordinates": [
7.582512743,
51.933292258,
1
]
}
},
{
"type": "Feature",
"properties": {
"timeReported": "2013-01-22 10:00:26+01"
},
"geometry": {
"type": "Point",
"coordinates": [
7.602516645,
51.94962073,
1
]
}
}]}
如何将其保存到.json文件中以备将来使用?
我正在尝试使用
localStorage.setItem('geoJSONLoc.json', geoJSONLoc);
但它似乎不是正确的答案。
答案 0 :(得分:1)
我在NodeJS上做了一些工作,所以这可能远离基础。 但你不能使用fs模块吗?
类似
var fs = require('fs')
fs.writeFile('geoJSONLoc.json', geoJSONLoc, function(err){
if(err){
console.log(err);
}
});