✨ 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
2.6 KiB
JavaScript
73 lines
2.6 KiB
JavaScript
import { getDefaultOptions, setDefaultOptions as setInternalDefaultOptions } from "../_lib/defaultOptions/index.js";
|
|
import requiredArgs from "../_lib/requiredArgs/index.js";
|
|
/**
|
|
* @name setDefaultOptions
|
|
* @category Common Helpers
|
|
* @summary Set default options including locale.
|
|
* @pure false
|
|
*
|
|
* @description
|
|
* Sets the defaults for
|
|
* `options.locale`, `options.weekStartsOn` and `options.firstWeekContainsDate`
|
|
* arguments for all functions.
|
|
*
|
|
* @param {Object} newOptions - an object with options.
|
|
* @param {Locale} [newOptions.locale] - the locale object. See [Locale]{@link https://date-fns.org/docs/Locale}
|
|
* @param {0|1|2|3|4|5|6} [newOptions.weekStartsOn] - the index of the first day of the week (0 - Sunday)
|
|
* @param {1|2|3|4|5|6|7} [newOptions.firstWeekContainsDate] - the day of January, which is always in the first week of the year
|
|
* @throws {TypeError} 1 argument required
|
|
*
|
|
* @example
|
|
* // Set global locale:
|
|
* import { es } from 'date-fns/locale'
|
|
* setDefaultOptions({ locale: es })
|
|
* const result = format(new Date(2014, 8, 2), 'PPPP')
|
|
* //=> 'martes, 2 de septiembre de 2014'
|
|
*
|
|
* @example
|
|
* // Start of the week for 2 September 2014:
|
|
* const result = startOfWeek(new Date(2014, 8, 2))
|
|
* //=> Sun Aug 31 2014 00:00:00
|
|
*
|
|
* @example
|
|
* // Start of the week for 2 September 2014,
|
|
* // when we set that week starts on Monday by default:
|
|
* setDefaultOptions({ weekStartsOn: 1 })
|
|
* const result = startOfWeek(new Date(2014, 8, 2))
|
|
* //=> Mon Sep 01 2014 00:00:00
|
|
*
|
|
* @example
|
|
* // Manually set options take priority over default options:
|
|
* setDefaultOptions({ weekStartsOn: 1 })
|
|
* const result = startOfWeek(new Date(2014, 8, 2), { weekStartsOn: 0 })
|
|
* //=> Sun Aug 31 2014 00:00:00
|
|
*
|
|
* @example
|
|
* // Remove the option by setting it to `undefined`:
|
|
* setDefaultOptions({ weekStartsOn: 1 })
|
|
* setDefaultOptions({ weekStartsOn: undefined })
|
|
* const result = startOfWeek(new Date(2014, 8, 2))
|
|
* //=> Sun Aug 31 2014 00:00:00
|
|
*/
|
|
export default function setDefaultOptions(newOptions) {
|
|
requiredArgs(1, arguments);
|
|
var result = {};
|
|
var defaultOptions = getDefaultOptions();
|
|
for (var property in defaultOptions) {
|
|
if (Object.prototype.hasOwnProperty.call(defaultOptions, property)) {
|
|
;
|
|
result[property] = defaultOptions[property];
|
|
}
|
|
}
|
|
for (var _property in newOptions) {
|
|
if (Object.prototype.hasOwnProperty.call(newOptions, _property)) {
|
|
if (newOptions[_property] === undefined) {
|
|
delete result[_property];
|
|
} else {
|
|
;
|
|
result[_property] = newOptions[_property];
|
|
}
|
|
}
|
|
}
|
|
setInternalDefaultOptions(result);
|
|
} |