✨ 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
22 lines
1.2 KiB
TypeScript
22 lines
1.2 KiB
TypeScript
import type { LineCounter } from './parse/line-counter';
|
|
export type ErrorCode = 'ALIAS_PROPS' | 'BAD_ALIAS' | 'BAD_DIRECTIVE' | 'BAD_DQ_ESCAPE' | 'BAD_INDENT' | 'BAD_PROP_ORDER' | 'BAD_SCALAR_START' | 'BLOCK_AS_IMPLICIT_KEY' | 'BLOCK_IN_FLOW' | 'DUPLICATE_KEY' | 'IMPOSSIBLE' | 'KEY_OVER_1024_CHARS' | 'MISSING_CHAR' | 'MULTILINE_IMPLICIT_KEY' | 'MULTIPLE_ANCHORS' | 'MULTIPLE_DOCS' | 'MULTIPLE_TAGS' | 'NON_STRING_KEY' | 'TAB_AS_INDENT' | 'TAG_RESOLVE_FAILED' | 'UNEXPECTED_TOKEN' | 'BAD_COLLECTION_TYPE';
|
|
export type LinePos = {
|
|
line: number;
|
|
col: number;
|
|
};
|
|
export declare class YAMLError extends Error {
|
|
name: 'YAMLParseError' | 'YAMLWarning';
|
|
code: ErrorCode;
|
|
message: string;
|
|
pos: [number, number];
|
|
linePos?: [LinePos] | [LinePos, LinePos];
|
|
constructor(name: YAMLError['name'], pos: [number, number], code: ErrorCode, message: string);
|
|
}
|
|
export declare class YAMLParseError extends YAMLError {
|
|
constructor(pos: [number, number], code: ErrorCode, message: string);
|
|
}
|
|
export declare class YAMLWarning extends YAMLError {
|
|
constructor(pos: [number, number], code: ErrorCode, message: string);
|
|
}
|
|
export declare const prettifyError: (src: string, lc: LineCounter) => (error: YAMLError) => void;
|