✨ 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
91 lines
2.1 KiB
TypeScript
91 lines
2.1 KiB
TypeScript
import { Emitter } from "@socket.io/component-emitter";
|
|
/**
|
|
* Protocol version.
|
|
*
|
|
* @public
|
|
*/
|
|
export declare const protocol: number;
|
|
export declare enum PacketType {
|
|
CONNECT = 0,
|
|
DISCONNECT = 1,
|
|
EVENT = 2,
|
|
ACK = 3,
|
|
CONNECT_ERROR = 4,
|
|
BINARY_EVENT = 5,
|
|
BINARY_ACK = 6
|
|
}
|
|
export interface Packet {
|
|
type: PacketType;
|
|
nsp: string;
|
|
data?: any;
|
|
id?: number;
|
|
attachments?: number;
|
|
}
|
|
/**
|
|
* A socket.io Encoder instance
|
|
*/
|
|
export declare class Encoder {
|
|
private replacer?;
|
|
/**
|
|
* Encoder constructor
|
|
*
|
|
* @param {function} replacer - custom replacer to pass down to JSON.parse
|
|
*/
|
|
constructor(replacer?: (this: any, key: string, value: any) => any);
|
|
/**
|
|
* Encode a packet as a single string if non-binary, or as a
|
|
* buffer sequence, depending on packet type.
|
|
*
|
|
* @param {Object} obj - packet object
|
|
*/
|
|
encode(obj: Packet): any[];
|
|
/**
|
|
* Encode packet as string.
|
|
*/
|
|
private encodeAsString;
|
|
/**
|
|
* Encode packet as 'buffer sequence' by removing blobs, and
|
|
* deconstructing packet into object with placeholders and
|
|
* a list of buffers.
|
|
*/
|
|
private encodeAsBinary;
|
|
}
|
|
interface DecoderReservedEvents {
|
|
decoded: (packet: Packet) => void;
|
|
}
|
|
/**
|
|
* A socket.io Decoder instance
|
|
*
|
|
* @return {Object} decoder
|
|
*/
|
|
export declare class Decoder extends Emitter<{}, {}, DecoderReservedEvents> {
|
|
private reviver?;
|
|
private reconstructor;
|
|
/**
|
|
* Decoder constructor
|
|
*
|
|
* @param {function} reviver - custom reviver to pass down to JSON.stringify
|
|
*/
|
|
constructor(reviver?: (this: any, key: string, value: any) => any);
|
|
/**
|
|
* Decodes an encoded packet string into packet JSON.
|
|
*
|
|
* @param {String} obj - encoded packet
|
|
*/
|
|
add(obj: any): void;
|
|
/**
|
|
* Decode a packet String (JSON data)
|
|
*
|
|
* @param {String} str
|
|
* @return {Object} packet
|
|
*/
|
|
private decodeString;
|
|
private tryParse;
|
|
private static isPayloadValid;
|
|
/**
|
|
* Deallocates a parser's resources
|
|
*/
|
|
destroy(): void;
|
|
}
|
|
export {};
|