From d7b3692b2ab20a6f929ca3936d0dd478d63da5bc Mon Sep 17 00:00:00 2001 From: HikeMap User Date: Sat, 10 Jan 2026 22:08:05 -0600 Subject: [PATCH] Increase combat camera zoom level from 19 to 21 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Zooms in much closer to the monster for a more dramatic effect. Monster scale also increased from 3x to 5x to match. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.html b/index.html index 9430423..6d4fc6d 100644 --- a/index.html +++ b/index.html @@ -2298,7 +2298,7 @@ } @keyframes monster-combat-zoom { 0% { transform: scale(1); } - 100% { transform: scale(3); } + 100% { transform: scale(5); } } .monster-icon { width: 50px; @@ -15818,7 +15818,7 @@ // Fly to monster with dramatic zoom and pitch map.flyTo({ center: monsterPos, - zoom: 19, // Close zoom + zoom: 21, // Very close zoom pitch: 60, // Tilt camera down like a drone bearing: map.getBearing(), // Keep current rotation duration: 1200, // 1.2 second animation