From be6e1748619c2ddc6f608c2d2a2ff747e92ece13 Mon Sep 17 00:00:00 2001 From: seo Date: Sun, 12 Jul 2026 14:55:43 +0900 Subject: [PATCH] =?UTF-8?q?=EC=B2=B4=EB=A5=98=EC=A4=91=20=EB=B0=B0?= =?UTF-8?q?=EC=A7=80=20=EC=9D=B8=EB=9D=BC=EC=9D=B8=20=EC=8A=A4=ED=83=80?= =?UTF-8?q?=EC=9D=BC=20=EB=B3=B4=EA=B0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- js/main.js | 27 ++++++++++++++++++++++++++- 1 file changed, 26 insertions(+), 1 deletion(-) diff --git a/js/main.js b/js/main.js index e9d4981..2d4e439 100644 --- a/js/main.js +++ b/js/main.js @@ -2237,8 +2237,33 @@ function createFaceMarkerIcon(size = 60) { } function createCurrentStayIcon(text) { + const wrapStyle = [ + 'position:relative', + 'width:0', + 'height:0', + 'pointer-events:none', + 'transform:translate(-50%,-82px)' + ].join(';'); + const badgeStyle = [ + 'display:inline-flex', + 'align-items:center', + 'justify-content:center', + 'min-width:120px', + 'height:30px', + 'padding:0 10px', + 'border:2px solid #fff', + 'border-radius:999px', + 'background:rgba(28,28,30,.9)', + 'color:#fff', + 'box-shadow:0 4px 14px rgba(0,0,0,.28)', + 'box-sizing:border-box', + 'font-family:-apple-system,BlinkMacSystemFont,Segoe UI,sans-serif', + 'font-size:12px', + 'font-weight:800', + 'white-space:nowrap' + ].join(';'); return { - content: `
${text}
`, + content: `
${text}
`, anchor: new naver.maps.Point(0, 0) }; }