aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Baines <cbaines8@gmail.com>2013-02-03 12:06:49 +0000
committerChristopher Baines <cbaines8@gmail.com>2013-02-03 12:06:49 +0000
commit60b9618cef0fb622c5b994e9cc1e393972897900 (patch)
tree788504db120cc015c99f347a1c5feab2aba93a4e
parent1bdd7878c657ce8f617fe620c9631fc3941a0ca8 (diff)
downloadhealth-map-60b9618cef0fb622c5b994e9cc1e393972897900.tar
health-map-60b9618cef0fb622c5b994e9cc1e393972897900.tar.gz
Dont just use amenity nodes
-rw-r--r--resources/op2geojson.js2
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) );
}