✨ 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
39 lines
1.8 KiB
TypeScript
39 lines
1.8 KiB
TypeScript
import type { GlobalShim, ValueOf } from './types.js';
|
|
export declare const TsRunner: {
|
|
readonly Node: "node";
|
|
readonly Bun: "bun";
|
|
readonly TsNode: "ts-node";
|
|
readonly EsbuildRegister: "esbuild-register";
|
|
readonly EsbuildRunner: "esbuild-runner";
|
|
readonly OXC: "oxc";
|
|
readonly SWC: "swc";
|
|
readonly TSX: "tsx";
|
|
};
|
|
export type TsRunner = ValueOf<typeof TsRunner>;
|
|
export declare const TS_ESM_PARTIAL_SUPPORTED: boolean;
|
|
export declare const MTS_SUPPORTED: boolean;
|
|
export declare const MODULE_REGISTER_SUPPORTED: boolean;
|
|
export declare const STRIP_TYPES_NODE_VERSION = "22.6";
|
|
export declare const TRANSFORM_TYPES_NODE_VERSION = "22.7";
|
|
export declare const FEATURE_TYPESCRIPT_NODE_VERSION = "22.10";
|
|
export declare const DEFAULT_TYPES_NODE_VERSION = "23.6";
|
|
export declare const STRIP_TYPES_FLAG = "--experimental-strip-types";
|
|
export declare const TRANSFORM_TYPES_FLAG = "--experimental-transform-types";
|
|
export declare const NO_STRIP_TYPES_FLAG = "--no-experimental-strip-types";
|
|
export declare const NODE_OPTIONS: string[];
|
|
export declare const NO_STRIP_TYPES: boolean;
|
|
export declare const DEFAULT_TIMEOUT: number | undefined;
|
|
export declare const DEFAULT_EXEC_ARGV: string[];
|
|
export declare const DEFAULT_TS_RUNNER: TsRunner | undefined;
|
|
export declare const DEFAULT_GLOBAL_SHIMS: boolean;
|
|
export declare const DEFAULT_GLOBAL_SHIMS_PRESET: GlobalShim[];
|
|
export declare const IMPORT_FLAG = "--import";
|
|
export declare const REQUIRE_FLAG = "--require";
|
|
export declare const REQUIRE_ABBR_FLAG = "-r";
|
|
export declare const REQUIRE_FLAGS: Set<string>;
|
|
export declare const LOADER_FLAG = "--loader";
|
|
export declare const EXPERIMENTAL_LOADER_FLAG = "--experimental-loader";
|
|
export declare const LOADER_FLAGS: Set<string>;
|
|
export declare const IMPORT_FLAG_SUPPORTED: boolean;
|
|
export declare const INT32_BYTES = 4;
|