+
+ $("#search_form").on("submit", function(e) {
+ e.preventDefault();
+ router("/search?query=" + encodeURIComponent($("#query").val()) + OSM.formatHash(map));
+ });
+
+ $("#describe_location").on("click", function(e) {
+ e.preventDefault();
+ router("/search?query=" + encodeURIComponent(map.getCenter().lat + "," + map.getCenter().lng));
+ });