✨ 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
77 lines
2.8 KiB
JavaScript
77 lines
2.8 KiB
JavaScript
"use strict";
|
|
// Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT license.
|
|
// See LICENSE in the project root for license information.
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.ParserMessageLog = void 0;
|
|
var ParserMessage_1 = require("./ParserMessage");
|
|
/**
|
|
* Used to report errors and warnings that occurred during parsing.
|
|
*/
|
|
var ParserMessageLog = /** @class */ (function () {
|
|
function ParserMessageLog() {
|
|
this._messages = [];
|
|
}
|
|
Object.defineProperty(ParserMessageLog.prototype, "messages", {
|
|
/**
|
|
* The unfiltered list of all messages.
|
|
*/
|
|
get: function () {
|
|
return this._messages;
|
|
},
|
|
enumerable: false,
|
|
configurable: true
|
|
});
|
|
/**
|
|
* Append a message to the log.
|
|
*/
|
|
ParserMessageLog.prototype.addMessage = function (parserMessage) {
|
|
this._messages.push(parserMessage);
|
|
};
|
|
/**
|
|
* Append a message associated with a TextRange.
|
|
*/
|
|
ParserMessageLog.prototype.addMessageForTextRange = function (messageId, messageText, textRange) {
|
|
this.addMessage(new ParserMessage_1.ParserMessage({
|
|
messageId: messageId,
|
|
messageText: messageText,
|
|
textRange: textRange
|
|
}));
|
|
};
|
|
/**
|
|
* Append a message associated with a TokenSequence.
|
|
*/
|
|
ParserMessageLog.prototype.addMessageForTokenSequence = function (messageId, messageText, tokenSequence, docNode) {
|
|
this.addMessage(new ParserMessage_1.ParserMessage({
|
|
messageId: messageId,
|
|
messageText: messageText,
|
|
textRange: tokenSequence.getContainingTextRange(),
|
|
tokenSequence: tokenSequence,
|
|
docNode: docNode
|
|
}));
|
|
};
|
|
/**
|
|
* Append a message associated with a TokenSequence.
|
|
*/
|
|
ParserMessageLog.prototype.addMessageForDocErrorText = function (docErrorText) {
|
|
var tokenSequence;
|
|
if (docErrorText.textExcerpt) {
|
|
// If there is an excerpt directly associated with the DocErrorText, highlight that:
|
|
tokenSequence = docErrorText.textExcerpt;
|
|
}
|
|
else {
|
|
// Otherwise we can use the errorLocation, but typically that is meant to give additional
|
|
// details, not to indicate the primary location of the problem.
|
|
tokenSequence = docErrorText.errorLocation;
|
|
}
|
|
this.addMessage(new ParserMessage_1.ParserMessage({
|
|
messageId: docErrorText.messageId,
|
|
messageText: docErrorText.errorMessage,
|
|
textRange: tokenSequence.getContainingTextRange(),
|
|
tokenSequence: tokenSequence,
|
|
docNode: docErrorText
|
|
}));
|
|
};
|
|
return ParserMessageLog;
|
|
}());
|
|
exports.ParserMessageLog = ParserMessageLog;
|
|
//# sourceMappingURL=ParserMessageLog.js.map
|