Fix goto function in editor mode

This commit is contained in:
Markus Koch 2020-04-19 17:00:01 +02:00
parent 2e790adc90
commit 8d5fc922d1
1 changed files with 11 additions and 5 deletions

View File

@ -196,8 +196,12 @@ function jump_to_marker(e) {
function prompt_location() {
var str = prompt("Enter coordinates to jump to:\n\n" +
"Format: x, y [, zoom]", get_current_location_str());
if (str)
document.location.hash = "#" + str;
if (str) {
if (!editor_mode)
document.location.hash = "#" + str;
else
onHashChange(null, "#" + str);
}
}
var search_element;
@ -334,10 +338,12 @@ mymap.on('moveend', update_hash_from_position);
mymap.on('dragstart', function () { is_user_drag = 1;});
mymap.on('keydown', function (e) { if (e.originalEvent.code.match(/Arrow.*/)) is_user_drag = 1;});
function onHashChange(e) {
if (document.location.hash == "#" + get_current_location_str())
function onHashChange(e, hash=null) {
if (!hash)
hash = document.location.hash;
if (hash == "#" + get_current_location_str())
return; // We're already there
coordstr = window.location.hash.slice(1).replace(/%20/g, "").split(",");
coordstr = hash.slice(1).replace(/%20/g, "").split(",");
if (coordstr.length < 2)
coordstr.push(0); // Default y
if (coordstr.length < 3)