✨ 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
95 lines
2.3 KiB
TypeScript
95 lines
2.3 KiB
TypeScript
/**
|
|
* Current protocol version.
|
|
*/
|
|
export declare const protocol = 3;
|
|
/**
|
|
* Packet types.
|
|
*/
|
|
export declare const packets: {
|
|
open: number;
|
|
close: number;
|
|
ping: number;
|
|
pong: number;
|
|
message: number;
|
|
upgrade: number;
|
|
noop: number;
|
|
};
|
|
/**
|
|
* Encodes a packet.
|
|
*
|
|
* <packet type id> [ <data> ]
|
|
*
|
|
* Example:
|
|
*
|
|
* 5hello world
|
|
* 3
|
|
* 4
|
|
*
|
|
* Binary is encoded in an identical principle
|
|
*
|
|
* @api private
|
|
*/
|
|
export declare function encodePacket(packet: any, supportsBinary: any, utf8encode: any, callback: any): any;
|
|
/**
|
|
* Encodes a packet with binary data in a base64 string
|
|
*
|
|
* @param {Object} packet, has `type` and `data`
|
|
* @return {String} base64 encoded message
|
|
*/
|
|
export declare function encodeBase64Packet(packet: any, callback: any): any;
|
|
/**
|
|
* Decodes a packet. Data also available as an ArrayBuffer if requested.
|
|
*
|
|
* @return {Object} with `type` and `data` (if any)
|
|
* @api private
|
|
*/
|
|
export declare function decodePacket(data: any, binaryType: any, utf8decode: any): {
|
|
type: string;
|
|
data: any;
|
|
} | {
|
|
type: string;
|
|
data?: undefined;
|
|
};
|
|
/**
|
|
* Decodes a packet encoded in a base64 string.
|
|
*
|
|
* @param {String} base64 encoded message
|
|
* @return {Object} with `type` and `data` (if any)
|
|
*/
|
|
export declare function decodeBase64Packet(msg: any, binaryType: any): {
|
|
type: string;
|
|
data: Buffer;
|
|
};
|
|
/**
|
|
* Encodes multiple messages (payload).
|
|
*
|
|
* <length>:data
|
|
*
|
|
* Example:
|
|
*
|
|
* 11:hello world2:hi
|
|
*
|
|
* If any contents are binary, they will be encoded as base64 strings. Base64
|
|
* encoded strings are marked with a b before the length specifier
|
|
*
|
|
* @param {Array} packets
|
|
* @api private
|
|
*/
|
|
export declare function encodePayload(packets: any, supportsBinary: any, callback: any): any;
|
|
export declare function decodePayload(data: any, binaryType: any, callback: any): any;
|
|
/**
|
|
* Encodes multiple messages (payload) as binary.
|
|
*
|
|
* <1 = binary, 0 = string><number from 0-9><number from 0-9>[...]<number
|
|
* 255><data>
|
|
*
|
|
* Example:
|
|
* 1 3 255 1 2 3, if the binary contents are interpreted as 8 bit integers
|
|
*
|
|
* @param {Array} packets
|
|
* @return {Buffer} encoded payload
|
|
* @api private
|
|
*/
|
|
export declare function encodePayloadAsBinary(packets: any, callback: any): any;
|
|
export declare function decodePayloadAsBinary(data: any, binaryType: any, callback: any): any;
|