✨ 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
55 lines
1.6 KiB
JavaScript
55 lines
1.6 KiB
JavaScript
var LoaderLoadingError = require("./LoaderLoadingError");
|
|
var url;
|
|
|
|
module.exports = function loadLoader(loader, callback) {
|
|
if(loader.type === "module") {
|
|
try {
|
|
if(url === undefined) url = require("url");
|
|
var loaderUrl = url.pathToFileURL(loader.path);
|
|
var modulePromise = eval("import(" + JSON.stringify(loaderUrl.toString()) + ")");
|
|
modulePromise.then(function(module) {
|
|
handleResult(loader, module, callback);
|
|
}, callback);
|
|
return;
|
|
} catch(e) {
|
|
callback(e);
|
|
}
|
|
} else {
|
|
try {
|
|
var module = require(loader.path);
|
|
} catch(e) {
|
|
// it is possible for node to choke on a require if the FD descriptor
|
|
// limit has been reached. give it a chance to recover.
|
|
if(e instanceof Error && e.code === "EMFILE") {
|
|
var retry = loadLoader.bind(null, loader, callback);
|
|
if(typeof setImmediate === "function") {
|
|
// node >= 0.9.0
|
|
return setImmediate(retry);
|
|
} else {
|
|
// node < 0.9.0
|
|
return process.nextTick(retry);
|
|
}
|
|
}
|
|
return callback(e);
|
|
}
|
|
return handleResult(loader, module, callback);
|
|
}
|
|
};
|
|
|
|
function handleResult(loader, module, callback) {
|
|
if(typeof module !== "function" && typeof module !== "object") {
|
|
return callback(new LoaderLoadingError(
|
|
"Module '" + loader.path + "' is not a loader (export function or es6 module)"
|
|
));
|
|
}
|
|
loader.normal = typeof module === "function" ? module : module.default;
|
|
loader.pitch = module.pitch;
|
|
loader.raw = module.raw;
|
|
if(typeof loader.normal !== "function" && typeof loader.pitch !== "function") {
|
|
return callback(new LoaderLoadingError(
|
|
"Module '" + loader.path + "' is not a loader (must have normal or pitch function)"
|
|
));
|
|
}
|
|
callback();
|
|
}
|