✨ 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
148 lines
2.9 KiB
TypeScript
148 lines
2.9 KiB
TypeScript
import { RangePosition } from './css-syntax-error.js'
|
||
import Node from './node.js'
|
||
|
||
declare namespace Warning {
|
||
export interface WarningOptions {
|
||
/**
|
||
* End position, exclusive, in CSS node string that caused the warning.
|
||
*/
|
||
end?: RangePosition
|
||
|
||
/**
|
||
* End index, exclusive, in CSS node string that caused the warning.
|
||
*/
|
||
endIndex?: number
|
||
|
||
/**
|
||
* Start index, inclusive, in CSS node string that caused the warning.
|
||
*/
|
||
index?: number
|
||
|
||
/**
|
||
* CSS node that caused the warning.
|
||
*/
|
||
node?: Node
|
||
|
||
/**
|
||
* Name of the plugin that created this warning. `Result#warn` fills
|
||
* this property automatically.
|
||
*/
|
||
plugin?: string
|
||
|
||
/**
|
||
* Start position, inclusive, in CSS node string that caused the warning.
|
||
*/
|
||
start?: RangePosition
|
||
|
||
/**
|
||
* Word in CSS source that caused the warning.
|
||
*/
|
||
word?: string
|
||
}
|
||
|
||
// eslint-disable-next-line @typescript-eslint/no-use-before-define
|
||
export { Warning_ as default }
|
||
}
|
||
|
||
/**
|
||
* Represents a plugin’s warning. It can be created using `Node#warn`.
|
||
*
|
||
* ```js
|
||
* if (decl.important) {
|
||
* decl.warn(result, 'Avoid !important', { word: '!important' })
|
||
* }
|
||
* ```
|
||
*/
|
||
declare class Warning_ {
|
||
/**
|
||
* Column for inclusive start position in the input file with this warning’s source.
|
||
*
|
||
* ```js
|
||
* warning.column //=> 6
|
||
* ```
|
||
*/
|
||
column: number
|
||
|
||
/**
|
||
* Column for exclusive end position in the input file with this warning’s source.
|
||
*
|
||
* ```js
|
||
* warning.endColumn //=> 4
|
||
* ```
|
||
*/
|
||
endColumn?: number
|
||
|
||
/**
|
||
* Line for exclusive end position in the input file with this warning’s source.
|
||
*
|
||
* ```js
|
||
* warning.endLine //=> 6
|
||
* ```
|
||
*/
|
||
endLine?: number
|
||
|
||
/**
|
||
* Line for inclusive start position in the input file with this warning’s source.
|
||
*
|
||
* ```js
|
||
* warning.line //=> 5
|
||
* ```
|
||
*/
|
||
line: number
|
||
|
||
/**
|
||
* Contains the CSS node that caused the warning.
|
||
*
|
||
* ```js
|
||
* warning.node.toString() //=> 'color: white !important'
|
||
* ```
|
||
*/
|
||
node: Node
|
||
|
||
/**
|
||
* The name of the plugin that created this warning.
|
||
* When you call `Node#warn` it will fill this property automatically.
|
||
*
|
||
* ```js
|
||
* warning.plugin //=> 'postcss-important'
|
||
* ```
|
||
*/
|
||
plugin: string
|
||
|
||
/**
|
||
* The warning message.
|
||
*
|
||
* ```js
|
||
* warning.text //=> 'Try to avoid !important'
|
||
* ```
|
||
*/
|
||
text: string
|
||
|
||
/**
|
||
* Type to filter warnings from `Result#messages`.
|
||
* Always equal to `"warning"`.
|
||
*/
|
||
type: 'warning'
|
||
|
||
/**
|
||
* @param text Warning message.
|
||
* @param opts Warning options.
|
||
*/
|
||
constructor(text: string, opts?: Warning.WarningOptions)
|
||
|
||
/**
|
||
* Returns a warning position and message.
|
||
*
|
||
* ```js
|
||
* warning.toString() //=> 'postcss-lint:a.css:10:14: Avoid !important'
|
||
* ```
|
||
*
|
||
* @return Warning position and message.
|
||
*/
|
||
toString(): string
|
||
}
|
||
|
||
declare class Warning extends Warning_ {}
|
||
|
||
export = Warning
|