✨ 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
1.7 KiB
Markdown
57 lines
1.7 KiB
Markdown
# @microsoft/tsdoc
|
|
|
|
<div>
|
|
<br />
|
|
<a href="https://tsdoc.org/">
|
|
<img width="200" src="https://tsdoc.org/images/site/tsdoc.svg">
|
|
</a>
|
|
<p />
|
|
</div>
|
|
|
|
This library is the reference implementation of a parser for the TSDoc syntax. Using this library is an easy way to ensure that your tool is 100% compatible with the standard.
|
|
|
|
|
|
## What is TSDoc?
|
|
|
|
**TSDoc** is a proposal to standardize the doc comments used in [TypeScript](http://www.typescriptlang.org/) source files. It allows different tools to extract content from comments without getting confused by each other's syntax. The **TSDoc** notation looks pretty familiar:
|
|
|
|
```typescript
|
|
export class Statistics {
|
|
/**
|
|
* Returns the average of two numbers.
|
|
*
|
|
* @remarks
|
|
* This method is part of the {@link core-library#Statistics | Statistics subsystem}.
|
|
*
|
|
* @param x - The first input number
|
|
* @param y - The second input number
|
|
* @returns The arithmetic mean of `x` and `y`
|
|
*
|
|
* @beta
|
|
*/
|
|
public static getAverage(x: number, y: number): number {
|
|
return (x + y) / 2.0;
|
|
}
|
|
}
|
|
```
|
|
|
|
## Give it a try!
|
|
|
|
Check out the [TSDoc Playground](https://tsdoc.org/play) for a cool live demo of our parser!
|
|
|
|
|
|
## API Usage
|
|
|
|
The [api-demo](https://github.com/microsoft/tsdoc/tree/main/api-demo) folder on GitHub illustrates how
|
|
to invoke the TSDoc parser.
|
|
|
|
A separate NPM package [`@microsoft/tsdoc-config`](https://www.npmjs.com/package/@microsoft/tsdoc-config)
|
|
is used for loading the **tsdoc.json** file.
|
|
|
|
|
|
## Get involved
|
|
|
|
The **TSDoc** project is actively evolving. Please visit the website for the latest documentation, instructions for building/debugging the projects, and other resources:
|
|
|
|
https://tsdoc.org/
|