✨ 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
73 lines
1.8 KiB
Markdown
73 lines
1.8 KiB
Markdown
# cli-width
|
|
|
|
Get stdout window width, with four fallbacks, `tty`, `output.columns`, a custom environment variable and then a default.
|
|
|
|
[](http://badge.fury.io/js/cli-width)
|
|
[](https://travis-ci.org/knownasilya/cli-width)
|
|
[](https://coveralls.io/github/knownasilya/cli-width?branch=master)
|
|
|
|
Tested against NodeJS v10+
|
|
|
|
## Usage
|
|
|
|
```
|
|
npm install --save cli-width
|
|
```
|
|
|
|
```js
|
|
"use strict";
|
|
|
|
const cliWidth = require("cli-width");
|
|
|
|
cliWidth(); // maybe 204 :)
|
|
```
|
|
|
|
You can also set the `CLI_WIDTH` environment variable.
|
|
|
|
If none of the methods are supported, and the environment variable isn't set,
|
|
the default width value is going to be `0`, that can be changed using the configurable `options`.
|
|
|
|
## API
|
|
|
|
### cliWidth([options])
|
|
|
|
`cliWidth` can be configured using an `options` parameter, the possible properties are:
|
|
|
|
- **defaultWidth**\<number\> Defines a default value to be used if none of the methods are available, defaults to `0`
|
|
- **output**\<object\> A stream to be used to read width values from, defaults to `process.stdout`
|
|
- **tty**\<object\> TTY module to try to read width from as a fallback, defaults to `require('tty')`
|
|
|
|
### Examples
|
|
|
|
Defining both a default width value and a stream output to try to read from:
|
|
|
|
```js
|
|
const cliWidth = require("cli-width");
|
|
const ttys = require("ttys");
|
|
|
|
cliWidth({
|
|
defaultWidth: 80,
|
|
output: ttys.output,
|
|
});
|
|
```
|
|
|
|
Defines a different tty module to read width from:
|
|
|
|
```js
|
|
const cliWidth = require("cli-width");
|
|
const ttys = require("ttys");
|
|
|
|
cliWidth({
|
|
tty: ttys,
|
|
});
|
|
```
|
|
|
|
## Tests
|
|
|
|
```bash
|
|
npm install
|
|
npm test
|
|
```
|
|
|
|
Coverage can be generated with `npm run coverage`.
|