✨ 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
60 lines
2.4 KiB
TypeScript
Executable File
60 lines
2.4 KiB
TypeScript
Executable File
export interface URIComponents {
|
|
scheme?: string;
|
|
userinfo?: string;
|
|
host?: string;
|
|
port?: number | string;
|
|
path?: string;
|
|
query?: string;
|
|
fragment?: string;
|
|
reference?: string;
|
|
error?: string;
|
|
}
|
|
export interface URIOptions {
|
|
scheme?: string;
|
|
reference?: string;
|
|
tolerant?: boolean;
|
|
absolutePath?: boolean;
|
|
iri?: boolean;
|
|
unicodeSupport?: boolean;
|
|
domainHost?: boolean;
|
|
}
|
|
export interface URISchemeHandler<Components extends URIComponents = URIComponents, Options extends URIOptions = URIOptions, ParentComponents extends URIComponents = URIComponents> {
|
|
scheme: string;
|
|
parse(components: ParentComponents, options: Options): Components;
|
|
serialize(components: Components, options: Options): ParentComponents;
|
|
unicodeSupport?: boolean;
|
|
domainHost?: boolean;
|
|
absolutePath?: boolean;
|
|
}
|
|
export interface URIRegExps {
|
|
NOT_SCHEME: RegExp;
|
|
NOT_USERINFO: RegExp;
|
|
NOT_HOST: RegExp;
|
|
NOT_PATH: RegExp;
|
|
NOT_PATH_NOSCHEME: RegExp;
|
|
NOT_QUERY: RegExp;
|
|
NOT_FRAGMENT: RegExp;
|
|
ESCAPE: RegExp;
|
|
UNRESERVED: RegExp;
|
|
OTHER_CHARS: RegExp;
|
|
PCT_ENCODED: RegExp;
|
|
IPV4ADDRESS: RegExp;
|
|
IPV6ADDRESS: RegExp;
|
|
}
|
|
export declare const SCHEMES: {
|
|
[scheme: string]: URISchemeHandler;
|
|
};
|
|
export declare function pctEncChar(chr: string): string;
|
|
export declare function pctDecChars(str: string): string;
|
|
export declare function parse(uriString: string, options?: URIOptions): URIComponents;
|
|
export declare function removeDotSegments(input: string): string;
|
|
export declare function serialize(components: URIComponents, options?: URIOptions): string;
|
|
export declare function resolveComponents(base: URIComponents, relative: URIComponents, options?: URIOptions, skipNormalization?: boolean): URIComponents;
|
|
export declare function resolve(baseURI: string, relativeURI: string, options?: URIOptions): string;
|
|
export declare function normalize(uri: string, options?: URIOptions): string;
|
|
export declare function normalize(uri: URIComponents, options?: URIOptions): URIComponents;
|
|
export declare function equal(uriA: string, uriB: string, options?: URIOptions): boolean;
|
|
export declare function equal(uriA: URIComponents, uriB: URIComponents, options?: URIOptions): boolean;
|
|
export declare function escapeComponent(str: string, options?: URIOptions): string;
|
|
export declare function unescapeComponent(str: string, options?: URIOptions): string;
|