summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--public/common/client.js22
1 files changed, 16 insertions, 6 deletions
diff --git a/public/common/client.js b/public/common/client.js
index 33b9147..ae0f0b8 100644
--- a/public/common/client.js
+++ b/public/common/client.js
@@ -961,13 +961,20 @@ var update_zoom = function () {}
}
const map = document.getElementById("map") || e_inner.querySelector("div")
- var map_w = mapwrap ? mapwrap.clientWidth : map.clientWidth
- var map_h = mapwrap ? mapwrap.clientHeight : map.clientHeight
+ var map_w = 1920
+ var map_h = 1080
+
+ function update_map_size() {
+ map_w = mapwrap ? mapwrap.clientWidth : map.clientWidth
+ map_h = mapwrap ? mapwrap.clientHeight : map.clientHeight
+ if (e_scroll.dataset.mapHeight)
+ map_h = Number(e_scroll.dataset.mapHeight)
+ if (e_scroll.dataset.mapWidth)
+ map_w = Number(e_scroll.dataset.mapWidth)
+ console.log("UPDATE MAP SIZE", map_w, map_h)
+ }
- if (e_scroll.dataset.mapHeight)
- map_h = Number(e_scroll.dataset.mapHeight)
- if (e_scroll.dataset.mapWidth)
- map_w = Number(e_scroll.dataset.mapWidth)
+ update_map_size()
console.log("INIT MAP", map, map_w, map_h, window.devicePixelRatio)
@@ -1031,6 +1038,8 @@ var update_zoom = function () {}
// export function
toggle_zoom = function () {
+ update_map_size()
+
if (transform1.scale === 1) {
if (mapwrap && window.innerWidth > 800) {
cycle_map_fit()
@@ -1050,6 +1059,7 @@ var update_zoom = function () {}
// export function
update_zoom = function () {
+ update_map_size()
update_map_fit()
update_transform_on_resize()
scroll_log_to_end()