✨ 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
38 lines
1.6 KiB
JavaScript
38 lines
1.6 KiB
JavaScript
// Gujarati [gu]
|
|
import dayjs from '../index';
|
|
var locale = {
|
|
name: 'gu',
|
|
weekdays: 'રવિવાર_સોમવાર_મંગળવાર_બુધ્વાર_ગુરુવાર_શુક્રવાર_શનિવાર'.split('_'),
|
|
months: 'જાન્યુઆરી_ફેબ્રુઆરી_માર્ચ_એપ્રિલ_મે_જૂન_જુલાઈ_ઑગસ્ટ_સપ્ટેમ્બર_ઑક્ટ્બર_નવેમ્બર_ડિસેમ્બર'.split('_'),
|
|
weekdaysShort: 'રવિ_સોમ_મંગળ_બુધ્_ગુરુ_શુક્ર_શનિ'.split('_'),
|
|
monthsShort: 'જાન્યુ._ફેબ્રુ._માર્ચ_એપ્રિ._મે_જૂન_જુલા._ઑગ._સપ્ટે._ઑક્ટ્._નવે._ડિસે.'.split('_'),
|
|
weekdaysMin: 'ર_સો_મં_બુ_ગુ_શુ_શ'.split('_'),
|
|
ordinal: function ordinal(n) {
|
|
return n;
|
|
},
|
|
formats: {
|
|
LT: 'A h:mm વાગ્યે',
|
|
LTS: 'A h:mm:ss વાગ્યે',
|
|
L: 'DD/MM/YYYY',
|
|
LL: 'D MMMM YYYY',
|
|
LLL: 'D MMMM YYYY, A h:mm વાગ્યે',
|
|
LLLL: 'dddd, D MMMM YYYY, A h:mm વાગ્યે'
|
|
},
|
|
relativeTime: {
|
|
future: '%s મા',
|
|
past: '%s પેહલા',
|
|
s: 'અમુક પળો',
|
|
m: 'એક મિનિટ',
|
|
mm: '%d મિનિટ',
|
|
h: 'એક કલાક',
|
|
hh: '%d કલાક',
|
|
d: 'એક દિવસ',
|
|
dd: '%d દિવસ',
|
|
M: 'એક મહિનો',
|
|
MM: '%d મહિનો',
|
|
y: 'એક વર્ષ',
|
|
yy: '%d વર્ષ'
|
|
}
|
|
};
|
|
dayjs.locale(locale, null, true);
|
|
export default locale; |