✨ 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
41 lines
1.8 KiB
TypeScript
41 lines
1.8 KiB
TypeScript
import type { LocaleAnalysisResult } from '../helpers/i18n-provider';
|
|
import type { LocaleRouteDefinition } from '../route-definitions/locale-route-definition';
|
|
import type { LocaleRouteMatch } from '../route-matches/locale-route-match';
|
|
import { RouteMatcher } from './route-matcher';
|
|
export type LocaleMatcherMatchOptions = {
|
|
/**
|
|
* If defined, this indicates to the matcher that the request should be
|
|
* treated as locale-aware. If this is undefined, it means that this
|
|
* application was not configured for additional locales.
|
|
*/
|
|
i18n?: LocaleAnalysisResult;
|
|
};
|
|
export declare class LocaleRouteMatcher<D extends LocaleRouteDefinition = LocaleRouteDefinition> extends RouteMatcher<D> {
|
|
/**
|
|
* Identity returns the identity part of the matcher. This is used to compare
|
|
* a unique matcher to another. This is also used when sorting dynamic routes,
|
|
* so it must contain the pathname part as well.
|
|
*/
|
|
get identity(): string;
|
|
/**
|
|
* Match will attempt to match the given pathname against this route while
|
|
* also taking into account the locale information.
|
|
*
|
|
* @param pathname The pathname to match against.
|
|
* @param options The options to use when matching.
|
|
* @returns The match result, or `null` if there was no match.
|
|
*/
|
|
match(pathname: string, options?: LocaleMatcherMatchOptions): LocaleRouteMatch<D> | null;
|
|
/**
|
|
* Test will attempt to match the given pathname against this route while
|
|
* also taking into account the locale information.
|
|
*
|
|
* @param pathname The pathname to match against.
|
|
* @param options The options to use when matching.
|
|
* @returns The match result, or `null` if there was no match.
|
|
*/
|
|
test(pathname: string, options?: LocaleMatcherMatchOptions): {
|
|
params?: Record<string, string | string[]> | undefined;
|
|
} | null;
|
|
}
|