✨ 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
33 lines
1.5 KiB
TypeScript
33 lines
1.5 KiB
TypeScript
/**
|
|
* Used to group the {@link StandardTags} definitions according to the level of support
|
|
* expected from documentation tools that implement the standard.
|
|
*/
|
|
export declare enum Standardization {
|
|
/**
|
|
* TSDoc tags in the "Core" standardization group are considered essential.
|
|
* Their meaning is standardized, and every documentation tool is expected
|
|
* to recognize them. The TSDoc parser library typically provides dedicated APIs
|
|
* for accessing these tags.
|
|
*/
|
|
Core = "Core",
|
|
/**
|
|
* TSDoc tags in the "Extended" standardization group are optional. Documentation tools
|
|
* may or may not support them. If they do, the syntax and semantics should conform to
|
|
* the TSDoc standard definitions.
|
|
*/
|
|
Extended = "Extended",
|
|
/**
|
|
* TSDoc tags in the "Discretionary" standardization group are optional. Although the
|
|
* syntax is specified, the semantics for these tags are implementation-specific
|
|
* (and sometimes difficult to describe completely without referring to a specific
|
|
* implementation). Discretionary tags are included in the TSDoc standard to ensure that
|
|
* if two different popular tools use the same tag name, developers can expect the syntax
|
|
* to be the same, and the semantics to be somewhat similar.
|
|
*/
|
|
Discretionary = "Discretionary",
|
|
/**
|
|
* The tag is not part of the TSDoc standard. All used-defined tags are assigned to this group.
|
|
*/
|
|
None = "None"
|
|
}
|
|
//# sourceMappingURL=Standardization.d.ts.map
|