✨ 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
57 lines
2.0 KiB
TypeScript
57 lines
2.0 KiB
TypeScript
import { DocNodeKind, DocNode, type IDocNodeParsedParameters } from './DocNode';
|
|
import type { TokenSequence } from '../parser/TokenSequence';
|
|
import type { TSDocMessageId } from '../parser/TSDocMessageId';
|
|
/**
|
|
* Constructor parameters for {@link DocErrorText}.
|
|
*/
|
|
export interface IDocErrorTextParsedParameters extends IDocNodeParsedParameters {
|
|
textExcerpt: TokenSequence;
|
|
messageId: TSDocMessageId;
|
|
errorMessage: string;
|
|
errorLocation: TokenSequence;
|
|
}
|
|
/**
|
|
* Represents a span of text that contained invalid markup.
|
|
* The characters should be rendered as plain text.
|
|
*/
|
|
export declare class DocErrorText extends DocNode {
|
|
private _text;
|
|
private readonly _textExcerpt;
|
|
private readonly _messageId;
|
|
private readonly _errorMessage;
|
|
private readonly _errorLocation;
|
|
/**
|
|
* Don't call this directly. Instead use {@link TSDocParser}
|
|
* @internal
|
|
*/
|
|
constructor(parameters: IDocErrorTextParsedParameters);
|
|
/** @override */
|
|
get kind(): DocNodeKind | string;
|
|
/**
|
|
* The characters that should be rendered as plain text because they
|
|
* could not be parsed successfully.
|
|
*/
|
|
get text(): string;
|
|
get textExcerpt(): TokenSequence | undefined;
|
|
/**
|
|
* The TSDoc error message identifier.
|
|
*/
|
|
get messageId(): TSDocMessageId;
|
|
/**
|
|
* A description of why the character could not be parsed.
|
|
*/
|
|
get errorMessage(): string;
|
|
/**
|
|
* The range of characters that caused the error. In general these may be
|
|
* somewhat farther ahead in the input stream from the DocErrorText node itself.
|
|
*
|
|
* @remarks
|
|
* For example, for the malformed HTML tag `<a href="123" @ /a>`, the DocErrorText node
|
|
* will correspond to the `<` character that looked like an HTML tag, whereas the
|
|
* error location might be the `@` character that caused the trouble.
|
|
*/
|
|
get errorLocation(): TokenSequence;
|
|
/** @override */
|
|
protected onGetChildNodes(): ReadonlyArray<DocNode | undefined>;
|
|
}
|
|
//# sourceMappingURL=DocErrorText.d.ts.map
|