fix(gps): upgrade to real-time continuous GPS tracking for walking and driving (v15)

This commit is contained in:
2026-09-12 10:08:58 -07:00
parent 31fdb8b7be
commit adeaab05b5
4 changed files with 343 additions and 161 deletions
+17
View File
@@ -555,6 +555,23 @@ body {
color: #ffffff;
}
#btn-locate-me.active {
background: rgba(6, 182, 212, 0.28);
border-color: var(--accent-cyan);
box-shadow: 0 0 12px rgba(6, 182, 212, 0.45);
}
#btn-locate-me.active svg {
animation: pulseGps 1.8s ease-in-out infinite;
color: #38bdf8;
}
@keyframes pulseGps {
0% { transform: scale(1); filter: drop-shadow(0 0 0 rgba(6, 182, 212, 0)); }
50% { transform: scale(1.18); filter: drop-shadow(0 0 6px rgba(6, 182, 212, 0.9)); }
100% { transform: scale(1); filter: drop-shadow(0 0 0 rgba(6, 182, 212, 0)); }
}
.map-search-box {
display: flex;
gap: 6px;