✨ 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
80 lines
2.3 KiB
TypeScript
80 lines
2.3 KiB
TypeScript
export = Range;
|
|
/**
|
|
* @typedef {[number, boolean]} RangeValue
|
|
*/
|
|
/**
|
|
* @callback RangeValueCallback
|
|
* @param {RangeValue} rangeValue
|
|
* @returns {boolean}
|
|
*/
|
|
declare class Range {
|
|
/**
|
|
* @param {"left" | "right"} side
|
|
* @param {boolean} exclusive
|
|
* @returns {">" | ">=" | "<" | "<="}
|
|
*/
|
|
static getOperator(
|
|
side: "left" | "right",
|
|
exclusive: boolean
|
|
): ">" | ">=" | "<" | "<=";
|
|
/**
|
|
* @param {number} value
|
|
* @param {boolean} logic is not logic applied
|
|
* @param {boolean} exclusive is range exclusive
|
|
* @returns {string}
|
|
*/
|
|
static formatRight(value: number, logic: boolean, exclusive: boolean): string;
|
|
/**
|
|
* @param {number} value
|
|
* @param {boolean} logic is not logic applied
|
|
* @param {boolean} exclusive is range exclusive
|
|
* @returns {string}
|
|
*/
|
|
static formatLeft(value: number, logic: boolean, exclusive: boolean): string;
|
|
/**
|
|
* @param {number} start left side value
|
|
* @param {number} end right side value
|
|
* @param {boolean} startExclusive is range exclusive from left side
|
|
* @param {boolean} endExclusive is range exclusive from right side
|
|
* @param {boolean} logic is not logic applied
|
|
* @returns {string}
|
|
*/
|
|
static formatRange(
|
|
start: number,
|
|
end: number,
|
|
startExclusive: boolean,
|
|
endExclusive: boolean,
|
|
logic: boolean
|
|
): string;
|
|
/**
|
|
* @param {Array<RangeValue>} values
|
|
* @param {boolean} logic is not logic applied
|
|
* @return {RangeValue} computed value and it's exclusive flag
|
|
*/
|
|
static getRangeValue(values: Array<RangeValue>, logic: boolean): RangeValue;
|
|
/** @type {Array<RangeValue>} */
|
|
_left: Array<RangeValue>;
|
|
/** @type {Array<RangeValue>} */
|
|
_right: Array<RangeValue>;
|
|
/**
|
|
* @param {number} value
|
|
* @param {boolean=} exclusive
|
|
*/
|
|
left(value: number, exclusive?: boolean | undefined): void;
|
|
/**
|
|
* @param {number} value
|
|
* @param {boolean=} exclusive
|
|
*/
|
|
right(value: number, exclusive?: boolean | undefined): void;
|
|
/**
|
|
* @param {boolean} logic is not logic applied
|
|
* @return {string} "smart" range string representation
|
|
*/
|
|
format(logic?: boolean): string;
|
|
}
|
|
declare namespace Range {
|
|
export { RangeValue, RangeValueCallback };
|
|
}
|
|
type RangeValue = [number, boolean];
|
|
type RangeValueCallback = (rangeValue: RangeValue) => boolean;
|