✨ 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
20 lines
1004 B
TypeScript
20 lines
1004 B
TypeScript
/// <reference types="node" />
|
|
import type { ParsedUrlQuery } from 'querystring';
|
|
/**
|
|
* Takes a ParsedUrlQuery object and either returns it unmodified or returns an empty object
|
|
*
|
|
* Even though we do not track read access on the returned searchParams we need to
|
|
* return an empty object if we are doing a 'force-static' render. This is to ensure
|
|
* we don't encode the searchParams into the flight data.
|
|
*/
|
|
export declare function createUntrackedSearchParams(searchParams: ParsedUrlQuery): ParsedUrlQuery;
|
|
/**
|
|
* Takes a ParsedUrlQuery object and returns a Proxy that tracks read access to the object
|
|
*
|
|
* If running in the browser will always return the provided searchParams object.
|
|
* When running during SSR will return empty during a 'force-static' render and
|
|
* otherwise it returns a searchParams object which tracks reads to trigger dynamic rendering
|
|
* behavior if appropriate
|
|
*/
|
|
export declare function createDynamicallyTrackedSearchParams(searchParams: ParsedUrlQuery): ParsedUrlQuery;
|