auto-sync: 2026-04-19 16:50:01

This commit is contained in:
Stream
2026-04-19 16:50:01 +03:00
parent b364751c83
commit 76d9c85396

View File

@@ -66,10 +66,10 @@ L.tileLayer('https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png', {
function planeIcon(heading) {
const deg = heading || 0;
return L.divIcon({
html: `<div style="font-size:20px;transform:rotate(${deg}deg);transform-origin:center;line-height:1;">✈</div>`,
html: `<div style="font-size:28px;color:#58a6ff;transform:rotate(${deg}deg);transform-origin:center;line-height:1;text-shadow:0 0 3px #000;">✈</div>`,
className: '',
iconSize: [24, 24],
iconAnchor: [12, 12],
iconSize: [32, 32],
iconAnchor: [16, 16],
});
}