devextreme
Version:
HTML5 JavaScript Component Suite for Responsive Web Development
356 lines (355 loc) • 12.5 kB
JavaScript
/**
* DevExtreme (esm/__internal/ui/map/m_map.js)
* Version: 24.2.6
* Build date: Mon Mar 17 2025
*
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
*/
import _extends from "@babel/runtime/helpers/esm/extends";
import eventsEngine from "../../../common/core/events/core/events_engine";
import pointerEvents from "../../../common/core/events/pointer";
import {
addNamespace
} from "../../../common/core/events/utils/index";
import registerComponent from "../../../core/component_registrator";
import devices from "../../../core/devices";
import $ from "../../../core/renderer";
import {
wrapToArray
} from "../../../core/utils/array";
import {
fromPromise
} from "../../../core/utils/deferred";
import {
extend
} from "../../../core/utils/extend";
import {
titleize
} from "../../../core/utils/inflector";
import {
each
} from "../../../core/utils/iterator";
import {
isNumeric
} from "../../../core/utils/type";
import errors from "../../../ui/widget/ui.errors";
import Widget from "../../core/widget/widget";
import azure from "./m_provider.dynamic.azure";
import bing from "./m_provider.dynamic.bing";
import google from "./m_provider.dynamic.google";
import googleStatic from "./m_provider.google_static";
const PROVIDERS = {
azure: azure,
googleStatic: googleStatic,
google: google,
bing: bing
};
const MAP_CLASS = "dx-map";
const MAP_CONTAINER_CLASS = "dx-map-container";
const MAP_SHIELD_CLASS = "dx-map-shield";
class Map extends Widget {
_getDefaultOptions() {
return _extends({}, super._getDefaultOptions(), {
bounds: {
northEast: null,
southWest: null
},
center: {
lat: 0,
lng: 0
},
zoom: 1,
width: 300,
height: 300,
type: "roadmap",
provider: "google",
autoAdjust: true,
markers: [],
markerIconSrc: null,
onMarkerAdded: null,
onMarkerRemoved: null,
routes: [],
onRouteAdded: null,
onRouteRemoved: null,
apiKey: {
bing: "",
google: "",
googleStatic: ""
},
providerConfig: {
mapId: "",
useAdvancedMarkers: true
},
controls: false,
onReady: null,
onUpdated: null,
onClick: null
})
}
_defaultOptionsRules() {
return super._defaultOptionsRules().concat([{
device: () => "desktop" === devices.real().deviceType && !devices.isSimulator(),
options: {
focusStateEnabled: true
}
}])
}
ctor(element, options) {
super.ctor(element, options);
if (options) {
if ("provider" in options && "bing" === options.provider) {
this._logDeprecatedBingProvider()
}
}
}
_logDeprecatedBingProvider() {
this._logDeprecatedOptionWarning("provider: bing", {
since: "24.2",
message: "Use other map providers, such as Azure, Google, or GoogleStatic."
})
}
_setDeprecatedOptions() {
super._setDeprecatedOptions();
extend(this._deprecatedOptions, {
"providerConfig.useAdvancedMarkers": {
since: "24.2",
message: "Google deprecated the original map markers. Transition to advanced markers for future compatibility."
}
})
}
_renderFocusTarget() {}
_init() {
super._init();
this.$element().addClass("dx-map");
this._lastAsyncAction = Promise.resolve();
this._checkOption("provider");
this._checkOption("markers");
this._checkOption("routes");
this._initContainer();
this._grabEvents();
this._rendered = {}
}
_useTemplates() {
return false
}
_checkOption(option) {
const value = this.option(option);
if ("markers" === option && !Array.isArray(value)) {
throw errors.Error("E1022")
}
if ("routes" === option && !Array.isArray(value)) {
throw errors.Error("E1023")
}
}
_initContainer() {
this._$container = $("<div>").addClass("dx-map-container");
this.$element().append(this._$container)
}
_grabEvents() {
const eventName = addNamespace(pointerEvents.down, this.NAME);
eventsEngine.on(this.$element(), eventName, this._cancelEvent.bind(this))
}
_cancelEvent(e) {
const cancelByProvider = this._provider && this._provider.isEventsCanceled(e) && !this.option("disabled");
if (cancelByProvider) {
e.stopPropagation()
}
}
_saveRendered(option) {
const value = this.option(option);
this._rendered[option] = value.slice()
}
_render() {
super._render();
this._renderShield();
this._saveRendered("markers");
this._saveRendered("routes");
const {
provider: provider
} = this.option();
this._provider = new PROVIDERS[provider](this, this._$container);
this._queueAsyncAction("render", this._rendered.markers, this._rendered.routes)
}
_renderShield() {
let $shield;
if (this.option("disabled")) {
$shield = $("<div>").addClass("dx-map-shield");
this.$element().append($shield)
} else {
$shield = this.$element().find(".dx-map-shield");
$shield.remove()
}
}
_clean() {
this._cleanFocusState();
if (this._provider) {
this._provider.clean()
}
this._provider = null;
this._lastAsyncAction = Promise.resolve();
this.setOptionSilent("bounds", {
northEast: null,
southWest: null
});
delete this._suppressAsyncAction
}
_optionChanged(args) {
const {
name: name,
value: value
} = args;
const changeBag = this._optionChangeBag;
this._optionChangeBag = null;
switch (name) {
case "disabled":
this._renderShield();
super._optionChanged(args);
this._queueAsyncAction("updateDisabled");
break;
case "width":
case "height":
super._optionChanged(args);
this._dimensionChanged();
break;
case "provider":
this._suppressAsyncAction = true;
this._invalidate();
if ("bing" === value) {
this._logDeprecatedBingProvider()
}
break;
case "apiKey":
errors.log("W1001");
break;
case "bounds":
this._queueAsyncAction("updateBounds");
break;
case "center":
this._queueAsyncAction("updateCenter");
break;
case "zoom":
this._queueAsyncAction("updateZoom");
break;
case "type":
this._queueAsyncAction("updateMapType");
break;
case "controls":
this._queueAsyncAction("updateControls", this._rendered.markers, this._rendered.routes);
break;
case "autoAdjust":
this._queueAsyncAction("adjustViewport");
break;
case "markers":
case "routes": {
this._checkOption(name);
const prevValue = this._rendered[name];
this._saveRendered(name);
this._queueAsyncAction(`update${titleize(name)}`, changeBag ? changeBag.removed : prevValue, changeBag ? changeBag.added : this._rendered[name]).then((result => {
if (changeBag) {
changeBag.resolve(result)
}
}));
break
}
case "markerIconSrc":
this._queueAsyncAction("updateMarkers", this._rendered.markers, this._rendered.markers);
break;
case "providerConfig":
this._suppressAsyncAction = true;
this._invalidate();
break;
case "onReady":
case "onUpdated":
case "onMarkerAdded":
case "onMarkerRemoved":
case "onRouteAdded":
case "onRouteRemoved":
case "onClick":
break;
default:
super._optionChanged.apply(this, arguments)
}
}
_visibilityChanged(visible) {
if (visible) {
this._dimensionChanged()
}
}
_dimensionChanged() {
this._queueAsyncAction("updateDimensions")
}
_queueAsyncAction(name, markers, routers) {
const options = [].slice.call(arguments).slice(1);
const isActionSuppressed = this._suppressAsyncAction;
this._lastAsyncAction = this._lastAsyncAction.then((() => {
if (!this._provider || isActionSuppressed) {
return Promise.resolve()
}
return this._provider[name].apply(this._provider, options).then((result => {
result = wrapToArray(result);
const mapRefreshed = result[0];
if (mapRefreshed && !this._disposed) {
this._triggerReadyAction()
}
return result[1]
}))
}));
return this._lastAsyncAction
}
_triggerReadyAction() {
this._createActionByOption("onReady")({
originalMap: this._provider.map()
})
}
_triggerUpdateAction() {
this._createActionByOption("onUpdated")()
}
setOptionSilent(name, value) {
this._setOptionWithoutOptionChange(name, value)
}
addMarker(marker) {
return this._addFunction("markers", marker)
}
removeMarker(marker) {
return this._removeFunction("markers", marker)
}
addRoute(route) {
return this._addFunction("routes", route)
}
removeRoute(route) {
return this._removeFunction("routes", route)
}
_addFunction(optionName, addingValue) {
const optionValue = this.option(optionName);
const addingValues = wrapToArray(addingValue);
optionValue.push.apply(optionValue, addingValues);
return this._partialArrayOptionChange(optionName, optionValue, addingValues, [])
}
_removeFunction(optionName, removingValue) {
const optionValue = this.option(optionName);
const removingValues = wrapToArray(removingValue);
each(removingValues, ((removingIndex, removingValue) => {
const index = isNumeric(removingValue) ? removingValue : null === optionValue || void 0 === optionValue ? void 0 : optionValue.indexOf(removingValue);
if (-1 !== index) {
const removing = optionValue.splice(index, 1)[0];
removingValues.splice(removingIndex, 1, removing)
} else {
throw errors.log("E1021", titleize(optionName.substring(0, optionName.length - 1)), removingValue)
}
}));
return this._partialArrayOptionChange(optionName, optionValue, [], removingValues)
}
_partialArrayOptionChange(optionName, optionValue, addingValues, removingValues) {
return fromPromise(new Promise((resolve => {
this._optionChangeBag = {
resolve: resolve,
added: addingValues,
removed: removingValues
};
this.option(optionName, optionValue)
})).then((result => result && 1 === result.length ? result[0] : result)), this)
}
}
registerComponent("dxMap", Map);
export default Map;