From f0bd205ee9a4bd18a6dcd7d0f31fc0189dc2b44e Mon Sep 17 00:00:00 2001 From: SharanRP Date: Wed, 21 Feb 2024 23:12:42 +0530 Subject: [PATCH 1/4] Loader fixed --- css/80_app.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/css/80_app.css b/css/80_app.css index 16eb06acad..16475b7531 100644 --- a/css/80_app.css +++ b/css/80_app.css @@ -2759,7 +2759,7 @@ button.raw-tag-option svg.icon { background-color: #f5f5f5; } .tag-reference-loading .icon { - background-image: url(img/mini-loader.gif); + background-image: url(img/6-dots-rotate.svg); background-position: 0 0; } From 6a40d86d1d56261f4d717cede94e36baf023b3bb Mon Sep 17 00:00:00 2001 From: SharanRP Date: Wed, 21 Feb 2024 23:34:01 +0530 Subject: [PATCH 2/4] Loader fixed --- img/6-dots-rotate.svg | 1 + 1 file changed, 1 insertion(+) create mode 100644 img/6-dots-rotate.svg diff --git a/img/6-dots-rotate.svg b/img/6-dots-rotate.svg new file mode 100644 index 0000000000..2332d135aa --- /dev/null +++ b/img/6-dots-rotate.svg @@ -0,0 +1 @@ + \ No newline at end of file From b347f1b23f8089db944c7fb46da82369ee7e3470 Mon Sep 17 00:00:00 2001 From: SharanRP Date: Wed, 21 Feb 2024 23:36:28 +0530 Subject: [PATCH 3/4] Revert "Loader fixed" This reverts commit 6a40d86d1d56261f4d717cede94e36baf023b3bb. --- img/6-dots-rotate.svg | 1 - 1 file changed, 1 deletion(-) delete mode 100644 img/6-dots-rotate.svg diff --git a/img/6-dots-rotate.svg b/img/6-dots-rotate.svg deleted file mode 100644 index 2332d135aa..0000000000 --- a/img/6-dots-rotate.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file From 7b5bf68cbb24592c492349a5113f94c0a2133df8 Mon Sep 17 00:00:00 2001 From: SharanRP Date: Thu, 22 Feb 2024 00:46:17 +0530 Subject: [PATCH 4/4] Added fractional zoom in url --- css/80_app.css | 2 +- modules/core/validator.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/css/80_app.css b/css/80_app.css index 16475b7531..34e864f3e3 100644 --- a/css/80_app.css +++ b/css/80_app.css @@ -2759,7 +2759,7 @@ button.raw-tag-option svg.icon { background-color: #f5f5f5; } .tag-reference-loading .icon { - background-image: url(img/6-dots-rotate.svg); + background-image: url(img/mini-loader); background-position: 0 0; } diff --git a/modules/core/validator.js b/modules/core/validator.js index 58a8b77005..8c1b67b3d7 100644 --- a/modules/core/validator.js +++ b/modules/core/validator.js @@ -304,7 +304,7 @@ export function coreValidator(context) { } if (focusCenter) { // Adjust the view - const setZoom = Math.max(context.map().zoom(), 19); + const setZoom = Math.max(context.map().zoom(), 19.3); context.map().unobscuredCenterZoomEase(focusCenter, setZoom); }