Remove "whereami" search parameter, use "lat" and "lon" instead

This commit is contained in:
Anton Khorev 2024-07-06 16:56:49 +03:00
parent e3c9192758
commit 0d2010cd2f
3 changed files with 7 additions and 6 deletions

View file

@ -51,7 +51,7 @@ OSM.initializeContextMenu = function (map) {
lat = latlng.lat.toFixed(precision),
lng = latlng.lng.toFixed(precision);
OSM.router.route("/search?whereami=1&query=" + encodeURIComponent(lat + "," + lng));
OSM.router.route("/search?lat=" + encodeURIComponent(lat) + "&lon=" + encodeURIComponent(lng));
}
});

View file

@ -33,10 +33,11 @@ OSM.Search = function (map) {
$(".describe_location").on("click", function (e) {
e.preventDefault();
var center = map.getCenter().wrap(),
precision = OSM.zoomPrecision(map.getZoom());
OSM.router.route("/search?whereami=1&query=" + encodeURIComponent(
center.lat.toFixed(precision) + "," + center.lng.toFixed(precision)
));
precision = OSM.zoomPrecision(map.getZoom()),
lat = center.lat.toFixed(precision),
lng = center.lng.toFixed(precision);
OSM.router.route("/search?lat=" + encodeURIComponent(lat) + "&lon=" + encodeURIComponent(lng));
});
$("#sidebar_content")

View file

@ -221,7 +221,7 @@ class GeocoderController < ApplicationController
elsif latlon = query.match(%r{^([+-]?\d+(\.\d*)?)(?:\s+|\s*[,/]\s*)([+-]?\d+(\.\d*)?)$})
params.merge!(:lat => latlon[1].to_f, :lon => latlon[3].to_f).delete(:query)
params[:latlon_digits] = true unless params[:whereami]
params[:latlon_digits] = true
end
end