✨ 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
64 lines
1.6 KiB
JSON
64 lines
1.6 KiB
JSON
{
|
|
"name": "asynckit",
|
|
"version": "0.4.0",
|
|
"description": "Minimal async jobs utility library, with streams support",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"clean": "rimraf coverage",
|
|
"lint": "eslint *.js lib/*.js test/*.js",
|
|
"test": "istanbul cover --reporter=json tape -- 'test/test-*.js' | tap-spec",
|
|
"win-test": "tape test/test-*.js",
|
|
"browser": "browserify -t browserify-istanbul test/lib/browserify_adjustment.js test/test-*.js | obake --coverage | tap-spec",
|
|
"report": "istanbul report",
|
|
"size": "browserify index.js | size-table asynckit",
|
|
"debug": "tape test/test-*.js"
|
|
},
|
|
"pre-commit": [
|
|
"clean",
|
|
"lint",
|
|
"test",
|
|
"browser",
|
|
"report",
|
|
"size"
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/alexindigo/asynckit.git"
|
|
},
|
|
"keywords": [
|
|
"async",
|
|
"jobs",
|
|
"parallel",
|
|
"serial",
|
|
"iterator",
|
|
"array",
|
|
"object",
|
|
"stream",
|
|
"destroy",
|
|
"terminate",
|
|
"abort"
|
|
],
|
|
"author": "Alex Indigo <iam@alexindigo.com>",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/alexindigo/asynckit/issues"
|
|
},
|
|
"homepage": "https://github.com/alexindigo/asynckit#readme",
|
|
"devDependencies": {
|
|
"browserify": "^13.0.0",
|
|
"browserify-istanbul": "^2.0.0",
|
|
"coveralls": "^2.11.9",
|
|
"eslint": "^2.9.0",
|
|
"istanbul": "^0.4.3",
|
|
"obake": "^0.1.2",
|
|
"phantomjs-prebuilt": "^2.1.7",
|
|
"pre-commit": "^1.1.3",
|
|
"reamde": "^1.1.0",
|
|
"rimraf": "^2.5.2",
|
|
"size-table": "^0.2.0",
|
|
"tap-spec": "^4.1.1",
|
|
"tape": "^4.5.1"
|
|
},
|
|
"dependencies": {}
|
|
}
|