projects
/
rails.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
59d5b5f
)
Use appropriate precision for "Where am I?"
author
John Firebaugh
<john.firebaugh@gmail.com>
Tue, 5 Nov 2013 21:27:18 +0000
(13:27 -0800)
committer
John Firebaugh
<john.firebaugh@gmail.com>
Tue, 5 Nov 2013 21:27:18 +0000
(13:27 -0800)
app/assets/javascripts/index.js
patch
|
blob
|
history
diff --git
a/app/assets/javascripts/index.js
b/app/assets/javascripts/index.js
index e9e95abfef40e81eb7f3ae0be17fdc97a2735aeb..a044937fc1158546bc3f6cff24bac50743bc2f13 100644
(file)
--- a/
app/assets/javascripts/index.js
+++ b/
app/assets/javascripts/index.js
@@
-303,6
+303,9
@@
$(document).ready(function () {
$("#describe_location").on("click", function(e) {
e.preventDefault();
- OSM.route("/search?query=" + encodeURIComponent(map.getCenter().lat + "," + map.getCenter().lng));
+ var precision = zoomPrecision(map.getZoom());
+ OSM.route("/search?query=" + encodeURIComponent(
+ map.getCenter().lat.toFixed(precision) + "," +
+ map.getCenter().lng.toFixed(precision)));
});
});