diff options
author | Christopher Baines <cbaines8@gmail.com> | 2013-02-03 12:06:49 +0000 |
---|---|---|
committer | Christopher Baines <cbaines8@gmail.com> | 2013-02-03 12:06:49 +0000 |
commit | 60b9618cef0fb622c5b994e9cc1e393972897900 (patch) | |
tree | 788504db120cc015c99f347a1c5feab2aba93a4e /resources | |
parent | 1bdd7878c657ce8f617fe620c9631fc3941a0ca8 (diff) | |
download | health-map-60b9618cef0fb622c5b994e9cc1e393972897900.tar health-map-60b9618cef0fb622c5b994e9cc1e393972897900.tar.gz |
Dont just use amenity nodes
Diffstat (limited to 'resources')
-rw-r--r-- | resources/op2geojson.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/resources/op2geojson.js b/resources/op2geojson.js index 5a0f3a2..a4233fd 100644 --- a/resources/op2geojson.js +++ b/resources/op2geojson.js @@ -20,7 +20,7 @@ op2geojson = function() { // As the nodes do not relate to other bits, // they can be added here - if (item.tags != undefined && item.tags['amenity'] != undefined) { + if (item.tags != undefined) { features.push( instance.point(item) ); } |