✨ 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
93 lines
4.1 KiB
JavaScript
93 lines
4.1 KiB
JavaScript
'use strict';
|
||
|
||
var GetIntrinsic = require('get-intrinsic');
|
||
|
||
var $SyntaxError = require('es-errors/syntax');
|
||
var $TypeError = require('es-errors/type');
|
||
var isInteger = require('math-intrinsics/isInteger');
|
||
var $Uint8Array = GetIntrinsic('%Uint8Array%', true);
|
||
|
||
var IsBigIntElementType = require('./IsBigIntElementType');
|
||
var IsDetachedBuffer = require('./IsDetachedBuffer');
|
||
var NumericToRawBytes = require('./NumericToRawBytes');
|
||
|
||
var isArrayBuffer = require('is-array-buffer');
|
||
var isSharedArrayBuffer = require('is-shared-array-buffer');
|
||
var hasOwn = require('hasown');
|
||
|
||
var tableTAO = require('./tables/typed-array-objects');
|
||
|
||
var defaultEndianness = require('../helpers/defaultEndianness');
|
||
var forEach = require('../helpers/forEach');
|
||
|
||
// https://262.ecma-international.org/15.0/#sec-setvalueinbuffer
|
||
|
||
/* eslint max-params: 0 */
|
||
|
||
module.exports = function SetValueInBuffer(arrayBuffer, byteIndex, type, value, isTypedArray, order) {
|
||
var isSAB = isSharedArrayBuffer(arrayBuffer);
|
||
if (!isArrayBuffer(arrayBuffer) && !isSAB) {
|
||
throw new $TypeError('Assertion failed: `arrayBuffer` must be an ArrayBuffer or a SharedArrayBuffer');
|
||
}
|
||
|
||
if (!isInteger(byteIndex) || byteIndex < 0) {
|
||
throw new $TypeError('Assertion failed: `byteIndex` must be a non-negative integer');
|
||
}
|
||
|
||
if (typeof type !== 'string' || !hasOwn(tableTAO.size, '$' + type)) {
|
||
throw new $TypeError('Assertion failed: `type` must be one of ' + tableTAO.choices);
|
||
}
|
||
|
||
if (typeof value !== 'number' && typeof value !== 'bigint') {
|
||
throw new $TypeError('Assertion failed: `value` must be a Number or a BigInt');
|
||
}
|
||
|
||
if (typeof isTypedArray !== 'boolean') {
|
||
throw new $TypeError('Assertion failed: `isTypedArray` must be a boolean');
|
||
}
|
||
if (order !== 'SEQ-CST' && order !== 'UNORDERED' && order !== 'INIT') {
|
||
throw new $TypeError('Assertion failed: `order` must be `"SEQ-CST"`, `"UNORDERED"`, or `"INIT"`');
|
||
}
|
||
|
||
if (arguments.length > 6 && typeof arguments[6] !== 'boolean') {
|
||
throw new $TypeError('Assertion failed: `isLittleEndian` must be a boolean, if present');
|
||
}
|
||
|
||
if (IsDetachedBuffer(arrayBuffer)) {
|
||
throw new $TypeError('Assertion failed: ArrayBuffer is detached'); // step 1
|
||
}
|
||
|
||
// 2. Assert: There are sufficient bytes in arrayBuffer starting at byteIndex to represent a value of type.
|
||
|
||
if (IsBigIntElementType(type) ? typeof value !== 'bigint' : typeof value !== 'number') { // step 3
|
||
throw new $TypeError('Assertion failed: `value` must be a BigInt if type is ~BIGINT64~ or ~BIGUINT64~, otherwise a Number');
|
||
}
|
||
|
||
// 4. Let block be arrayBuffer’s [[ArrayBufferData]] internal slot.
|
||
|
||
var elementSize = tableTAO.size['$' + type]; // step 5
|
||
|
||
// 6. If isLittleEndian is not present, set isLittleEndian to either true or false. The choice is implementation dependent and should be the alternative that is most efficient for the implementation. An implementation must use the same value each time this step is executed and the same value must be used for the corresponding step in the GetValueFromBuffer abstract operation.
|
||
var isLittleEndian = arguments.length > 6 ? arguments[6] : defaultEndianness === 'little'; // step 6
|
||
|
||
var rawBytes = NumericToRawBytes(type, value, isLittleEndian); // step 7
|
||
|
||
if (isSAB) { // step 8
|
||
/*
|
||
Let execution be the [[CandidateExecution]] field of the surrounding agent's Agent Record.
|
||
Let eventList be the [[EventList]] field of the element in execution.[[EventsRecords]] whose [[AgentSignifier]] is AgentSignifier().
|
||
If isTypedArray is true and IsNoTearConfiguration(type, order) is true, let noTear be true; otherwise let noTear be false.
|
||
Append WriteSharedMemory { [[Order]]: order, [[NoTear]]: noTear, [[Block]]: block, [[ByteIndex]]: byteIndex, [[ElementSize]]: elementSize, [[Payload]]: rawBytes } to eventList.
|
||
*/
|
||
throw new $SyntaxError('SharedArrayBuffer is not supported by this implementation');
|
||
} else {
|
||
// 9. Store the individual bytes of rawBytes into block, in order, starting at block[byteIndex].
|
||
var arr = new $Uint8Array(arrayBuffer, byteIndex, elementSize);
|
||
forEach(rawBytes, function (rawByte, i) {
|
||
arr[i] = rawByte;
|
||
});
|
||
}
|
||
|
||
// 10. Return NormalCompletion(undefined).
|
||
};
|