✨ MAJOR FEATURES: • Auto-zoom intelligence với smart bounds fitting • Enhanced 3D GPS markers với pulsing effects • Professional route display với 6-layer rendering • Status-based parking icons với availability indicators • Production-ready build optimizations 🗺️ AUTO-ZOOM FEATURES: • Smart bounds fitting cho GPS + selected parking • Adaptive padding (50px) cho visual balance • Max zoom control (level 16) để tránh quá gần • Dynamic centering khi không có selection 🎨 ENHANCED VISUALS: • 3D GPS marker với multi-layer pulse effects • Advanced parking icons với status colors • Selection highlighting với animation • Dimming system cho non-selected items 🛣️ ROUTE SYSTEM: • OpenRouteService API integration • Multi-layer route rendering (glow, shadow, main, animated) • Real-time distance & duration calculation • Visual route info trong popup 📱 PRODUCTION READY: • SSR safe với dynamic imports • Build errors resolved • Global deployment via Vercel • Optimized performance 🌍 DEPLOYMENT: • Vercel: https://whatever-ctk2auuxr-phong12hexdockworks-projects.vercel.app • Bundle size: 22.8 kB optimized • Global CDN distribution • HTTPS enabled 💾 VERSION CONTROL: • MapView-v2.0.tsx backup created • MAPVIEW_VERSIONS.md documentation • Full version history tracking
39 lines
1.6 KiB
JavaScript
39 lines
1.6 KiB
JavaScript
// Georgian [ka]
|
|
import dayjs from '../index';
|
|
var locale = {
|
|
name: 'ka',
|
|
weekdays: 'კვირა_ორშაბათი_სამშაბათი_ოთხშაბათი_ხუთშაბათი_პარასკევი_შაბათი'.split('_'),
|
|
weekdaysShort: 'კვი_ორშ_სამ_ოთხ_ხუთ_პარ_შაბ'.split('_'),
|
|
weekdaysMin: 'კვ_ორ_სა_ოთ_ხუ_პა_შა'.split('_'),
|
|
months: 'იანვარი_თებერვალი_მარტი_აპრილი_მაისი_ივნისი_ივლისი_აგვისტო_სექტემბერი_ოქტომბერი_ნოემბერი_დეკემბერი'.split('_'),
|
|
monthsShort: 'იან_თებ_მარ_აპრ_მაი_ივნ_ივლ_აგვ_სექ_ოქტ_ნოე_დეკ'.split('_'),
|
|
weekStart: 1,
|
|
formats: {
|
|
LT: 'h:mm A',
|
|
LTS: 'h:mm:ss A',
|
|
L: 'DD/MM/YYYY',
|
|
LL: 'D MMMM YYYY',
|
|
LLL: 'D MMMM YYYY h:mm A',
|
|
LLLL: 'dddd, D MMMM YYYY h:mm A'
|
|
},
|
|
relativeTime: {
|
|
future: '%s შემდეგ',
|
|
past: '%s წინ',
|
|
s: 'წამი',
|
|
m: 'წუთი',
|
|
mm: '%d წუთი',
|
|
h: 'საათი',
|
|
hh: '%d საათის',
|
|
d: 'დღეს',
|
|
dd: '%d დღის განმავლობაში',
|
|
M: 'თვის',
|
|
MM: '%d თვის',
|
|
y: 'წელი',
|
|
yy: '%d წლის'
|
|
},
|
|
ordinal: function ordinal(n) {
|
|
return n;
|
|
}
|
|
};
|
|
dayjs.locale(locale, null, true);
|
|
export default locale; |