aboutsummaryrefslogtreecommitdiff
path: root/resources/map.js
diff options
context:
space:
mode:
Diffstat (limited to 'resources/map.js')
-rw-r--r--resources/map.js5
1 files changed, 3 insertions, 2 deletions
diff --git a/resources/map.js b/resources/map.js
index ac9a506..9cc9471 100644
--- a/resources/map.js
+++ b/resources/map.js
@@ -35,6 +35,8 @@ $(document).ready(function() {
});
GlobalMap = map;
+ L.control.locate().addTo(map);
+
function createQueryData(bbox) {
// TODO: Use POST instead of GET, for neatness
return "data=[out:json];(" +
@@ -134,11 +136,10 @@ $(document).ready(function() {
if (isHierarchical.exec(key)) {
key = key.split(':')[1];
}
- if (!_.contains(self.hospitalAttributes, key) && isBoolean(val)) {
+ if ((!_.contains(self.hospitalAttributes, key)) && isBoolean(val)) {
self.hospitalAttributes.push(key);
}
});
- self.hospitalAttributes;
}
function onLocationFound(e) {