✨ 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
59 lines
2.3 KiB
TypeScript
59 lines
2.3 KiB
TypeScript
import { DocNodeKind, DocNode, type IDocNodeParameters, type IDocNodeParsedParameters } from './DocNode';
|
|
import type { TokenSequence } from '../parser/TokenSequence';
|
|
/**
|
|
* Constructor parameters for {@link DocMemberIdentifier}.
|
|
*/
|
|
export interface IDocMemberIdentifierParameters extends IDocNodeParameters {
|
|
identifier: string;
|
|
}
|
|
/**
|
|
* Constructor parameters for {@link DocMemberIdentifier}.
|
|
*/
|
|
export interface IDocMemberIdentifierParsedParameters extends IDocNodeParsedParameters {
|
|
leftQuoteExcerpt?: TokenSequence;
|
|
identifierExcerpt: TokenSequence;
|
|
rightQuoteExcerpt?: TokenSequence;
|
|
}
|
|
/**
|
|
* A member identifier is part of a {@link DocMemberReference}.
|
|
*/
|
|
export declare class DocMemberIdentifier extends DocNode {
|
|
private readonly _leftQuoteExcerpt;
|
|
private _identifier;
|
|
private readonly _identifierExcerpt;
|
|
private readonly _rightQuoteExcerpt;
|
|
/**
|
|
* Don't call this directly. Instead use {@link TSDocParser}
|
|
* @internal
|
|
*/
|
|
constructor(parameters: IDocMemberIdentifierParameters | IDocMemberIdentifierParsedParameters);
|
|
/**
|
|
* Tests whether the input string can be used without quotes as a member identifier in a declaration reference.
|
|
* If not, {@link DocMemberIdentifier.hasQuotes} will be required.
|
|
*
|
|
* @remarks
|
|
* In order to be used without quotes, the string must follow the identifier syntax for ECMAScript / TypeScript,
|
|
* and it must not be one of the reserved words used for system selectors (such as `instance`, `static`,
|
|
* `constructor`, etc).
|
|
*/
|
|
static isValidIdentifier(identifier: string): boolean;
|
|
/** @override */
|
|
get kind(): DocNodeKind | string;
|
|
/**
|
|
* The identifier string without any quote encoding.
|
|
*
|
|
* @remarks
|
|
* If the value is not a valid ECMAScript identifier, it will be quoted as a
|
|
* string literal during rendering.
|
|
*/
|
|
get identifier(): string;
|
|
/**
|
|
* Returns true if the identifier will be rendered as a quoted string literal
|
|
* instead of as a programming language identifier. This is required if the
|
|
* `identifier` property is not a valid ECMAScript identifier.
|
|
*/
|
|
get hasQuotes(): boolean;
|
|
/** @override */
|
|
protected onGetChildNodes(): ReadonlyArray<DocNode | undefined>;
|
|
}
|
|
//# sourceMappingURL=DocMemberIdentifier.d.ts.map
|