@syncfusion/ej2-maps 20.2.38 → 20.2.43

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1007,8 +1007,8 @@ function clusterTemplate(currentLayer, markerTemplate, maps, layerIndex, markerC
1007
1007
  shapeCustom['borderWidth'] = eventArg.border.width;
1008
1008
  shapeCustom['borderOpacity'] = isNullOrUndefined(eventArg.border.opacity) ? clusters_1.opacity : eventArg.border.opacity;
1009
1009
  }
1010
- tempX = (maps.isTileMap) ? tempX : (markerTemplate.id.indexOf('_Markers_Group') > -1) ? tempX : ((location_1.x + transPoint.x + eventArg.width) * maps.mapScaleValue);
1011
- tempY = (maps.isTileMap) ? tempY : (markerTemplate.id.indexOf('_Markers_Group') > -1) ? tempY : ((location_1.y + transPoint.y + (eventArg.height / 2)) * maps.mapScaleValue);
1010
+ tempX = (maps.isTileMap) ? tempX : (markerTemplate.id.indexOf('_Markers_Group') > -1) ? tempX : tempX + postionY - (eventArg.width / 2);
1011
+ tempY = (maps.isTileMap) ? tempY : (markerTemplate.id.indexOf('_Markers_Group') > -1) ? tempY : tempY - (eventArg.height / 2);
1012
1012
  if (maps.isTileMap && !maps.zoomSettings.enable) {
1013
1013
  tempX = location_1.x;
1014
1014
  tempY = location_1.y;
@@ -1087,7 +1087,7 @@ function clusterTemplate(currentLayer, markerTemplate, maps, layerIndex, markerC
1087
1087
  getElementByID(maps.element.id + '_Secondary_Element').appendChild(markerCollection);
1088
1088
  layerElement.appendChild(markerCollection);
1089
1089
  }
1090
- var markerCluster = document.getElementById(maps.element.id + '_LayerIndex_0_markerCluster');
1090
+ var markerCluster = document.getElementById(maps.element.id + '_LayerIndex_' + layerIndex + '_markerCluster');
1091
1091
  if (!isNullOrUndefined(markerCluster)) {
1092
1092
  markerCluster.remove();
1093
1093
  }
@@ -2235,6 +2235,8 @@ function getZoomTranslate(mapObject, layer, animate) {
2235
2235
  }
2236
2236
  }
2237
2237
  scaleFactor = (mapObject.enablePersistence) ? (mapObject.mapScaleValue === 0 ? 1 : mapObject.mapScaleValue) : scaleFactor;
2238
+ mapObject.widthBeforeRefresh = mapObject.availableSize.width;
2239
+ mapObject.heightBeforeRefresh = mapObject.availableSize.height;
2238
2240
  return { scale: animate ? 1 : scaleFactor, location: new Point(x, y) };
2239
2241
  }
2240
2242
  /**
@@ -3117,7 +3119,11 @@ function animate(element, delay, duration, process, end) {
3117
3119
  else {
3118
3120
  window.cancelAnimationFrame(clearAnimation);
3119
3121
  end.call(_this, { element: element });
3120
- element.setAttribute('style', markerStyle);
3122
+ if (element.id.indexOf('Marker') > -1) {
3123
+ console.log(element);
3124
+ var markerElement = getElementByID(element.id.split('_')[0] + '_Markers_Group');
3125
+ markerElement.setAttribute('style', markerStyle);
3126
+ }
3121
3127
  }
3122
3128
  };
3123
3129
  clearAnimation = window.requestAnimationFrame(startAnimation);
@@ -5294,6 +5300,12 @@ var loaded = 'loaded';
5294
5300
  * @private
5295
5301
  */
5296
5302
  var click = 'click';
5303
+ /**
5304
+ * Specifies the maps onclick event name.
5305
+ *
5306
+ * @private
5307
+ */
5308
+ var onclick = 'onclick';
5297
5309
  /**
5298
5310
  * Specifies the maps right click event name.
5299
5311
  *
@@ -6952,7 +6964,7 @@ var LayerPanel = /** @__PURE__ @class */ (function () {
6952
6964
  else {
6953
6965
  if (type !== 'Pan' && element1 && element) {
6954
6966
  element1.appendChild(element.children[0]);
6955
- if (!isNullOrUndefined(document.getElementById(_this.mapObject.element.id + '_animated_tiles'))) {
6967
+ if (!_this.mapObject.isAddLayer && !isNullOrUndefined(document.getElementById(_this.mapObject.element.id + '_animated_tiles'))) {
6956
6968
  document.getElementById(_this.mapObject.element.id + '_animated_tiles').id =
6957
6969
  _this.mapObject.element.id + '_animated_tiles_old';
6958
6970
  }
@@ -7481,6 +7493,7 @@ var Maps = /** @__PURE__ @class */ (function (_super) {
7481
7493
  this.renderArea();
7482
7494
  this.processRequestJsonData();
7483
7495
  this.renderComplete();
7496
+ this.isAddLayer = !this.isTileMap ? false : this.isAddLayer;
7484
7497
  };
7485
7498
  /**
7486
7499
  * To Initialize the control rendering.
@@ -8285,24 +8298,35 @@ var Maps = /** @__PURE__ @class */ (function (_super) {
8285
8298
  latitude: latitude, longitude: longitude,
8286
8299
  isShapeSelected: this.SelectedElement(targetEle)
8287
8300
  };
8288
- this.trigger('click', eventArgs_1, function (mouseArgs) {
8289
- if (targetEle.id.indexOf('shapeIndex') > -1) {
8290
- _this.mergeCluster();
8291
- if (getElement(_this.element.id + '_mapsTooltip') &&
8292
- _this.mapsTooltipModule.tooltipTargetID.indexOf('_MarkerIndex_') > -1) {
8293
- removeElement(_this.element.id + '_mapsTooltip');
8294
- }
8295
- }
8296
- if (_this.markerModule) {
8297
- _this.markerModule.markerClusterClick(e);
8298
- }
8299
- if (!eventArgs_1.cancel) {
8300
- _this.notify(click, targetEle);
8301
- }
8302
- if (!eventArgs_1.cancel && targetEle.id.indexOf('shapeIndex') !== -1) {
8303
- _this.triggerShapeSelection(targetEle);
8304
- }
8305
- });
8301
+ if (this.onclick) {
8302
+ eventArgs_1.name = onclick;
8303
+ this.trigger('onclick', eventArgs_1, function (mouseArgs) {
8304
+ _this.clickHandler(e, eventArgs_1, targetEle);
8305
+ });
8306
+ }
8307
+ else {
8308
+ this.trigger('click', eventArgs_1, function (mouseArgs) {
8309
+ _this.clickHandler(e, eventArgs_1, targetEle);
8310
+ });
8311
+ }
8312
+ }
8313
+ };
8314
+ Maps.prototype.clickHandler = function (e, eventArgs, targetEle) {
8315
+ if (targetEle.id.indexOf('shapeIndex') > -1) {
8316
+ this.mergeCluster();
8317
+ if (getElement(this.element.id + '_mapsTooltip') &&
8318
+ this.mapsTooltipModule.tooltipTargetID.indexOf('_MarkerIndex_') > -1) {
8319
+ removeElement(this.element.id + '_mapsTooltip');
8320
+ }
8321
+ }
8322
+ if (this.markerModule) {
8323
+ this.markerModule.markerClusterClick(e);
8324
+ }
8325
+ if (!eventArgs.cancel) {
8326
+ this.notify(click, targetEle);
8327
+ }
8328
+ if (!eventArgs.cancel && targetEle.id.indexOf('shapeIndex') !== -1) {
8329
+ this.triggerShapeSelection(targetEle);
8306
8330
  }
8307
8331
  };
8308
8332
  Maps.prototype.triggerShapeSelection = function (targetEle) {
@@ -8402,13 +8426,6 @@ var Maps = /** @__PURE__ @class */ (function (_super) {
8402
8426
  latitude = latLongValue.latitude;
8403
8427
  longitude = latLongValue.longitude;
8404
8428
  }
8405
- var eventArgs = {
8406
- cancel: false, name: click, target: targetId, x: e.clientX, y: e.clientY,
8407
- latitude: latitude, longitude: longitude, isShapeSelected: this.SelectedElement(targetEle)
8408
- };
8409
- // eslint-disable-next-line @typescript-eslint/no-empty-function
8410
- this.trigger('click', eventArgs, function (mouseArgs) {
8411
- });
8412
8429
  }
8413
8430
  this.titleTooltip(e, pageX, pageY, true);
8414
8431
  if (!isNullOrUndefined(this.legendModule)) {
@@ -8682,8 +8699,10 @@ var Maps = /** @__PURE__ @class */ (function (_super) {
8682
8699
  * @param {Object} layer - Specifies the layer for the maps.
8683
8700
  */
8684
8701
  Maps.prototype.addLayer = function (layer) {
8685
- this.layers.push(new LayerSettings(this.layers[0], 'layers', layer));
8686
- this.refresh();
8702
+ var mapsLayer = this.layers;
8703
+ mapsLayer.push(layer);
8704
+ this.isAddLayer = true;
8705
+ this.layers = mapsLayer;
8687
8706
  };
8688
8707
  /**
8689
8708
  * This method is used to remove a layer from map.
@@ -8692,8 +8711,9 @@ var Maps = /** @__PURE__ @class */ (function (_super) {
8692
8711
  * @returns {void}
8693
8712
  */
8694
8713
  Maps.prototype.removeLayer = function (index) {
8695
- this.layers.splice(index, 1);
8696
- this.refresh();
8714
+ var mapsLayer = this.layers;
8715
+ mapsLayer.splice(index, 1);
8716
+ this.layers = mapsLayer;
8697
8717
  };
8698
8718
  /**
8699
8719
  * This method is used to add markers dynamically in the maps.
@@ -8978,6 +8998,7 @@ var Maps = /** @__PURE__ @class */ (function (_super) {
8978
8998
  Maps.prototype.onPropertyChanged = function (newProp, oldProp) {
8979
8999
  var render = false;
8980
9000
  var isMarker = false;
9001
+ var isLayer = false;
8981
9002
  var isStaticMapType = false;
8982
9003
  var layerEle;
8983
9004
  if (newProp['layers']) {
@@ -8998,6 +9019,7 @@ var Maps = /** @__PURE__ @class */ (function (_super) {
8998
9019
  case 'legendSettings':
8999
9020
  case 'baseLayerIndex':
9000
9021
  if (prop === 'layers') {
9022
+ isLayer = true;
9001
9023
  var layerPropLength = Object.keys(newProp.layers).length;
9002
9024
  for (var x = 0; x < layerPropLength; x++) {
9003
9025
  if (!isNullOrUndefined(newProp.layers[x])) {
@@ -9022,7 +9044,7 @@ var Maps = /** @__PURE__ @class */ (function (_super) {
9022
9044
  break;
9023
9045
  case 'zoomSettings':
9024
9046
  if (!isNullOrUndefined(oldProp.zoomSettings)) {
9025
- if (newProp.zoomSettings.zoomFactor !== oldProp.zoomSettings.zoomFactor) {
9047
+ if (newProp.zoomSettings.zoomFactor !== oldProp.zoomSettings.zoomFactor && !isLayer) {
9026
9048
  render = false;
9027
9049
  }
9028
9050
  else if (newProp.zoomSettings.shouldZoomInitially !== oldProp.zoomSettings.shouldZoomInitially) {
@@ -9518,6 +9540,9 @@ var Maps = /** @__PURE__ @class */ (function (_super) {
9518
9540
  __decorate([
9519
9541
  Event()
9520
9542
  ], Maps.prototype, "click", void 0);
9543
+ __decorate([
9544
+ Event()
9545
+ ], Maps.prototype, "onclick", void 0);
9521
9546
  __decorate([
9522
9547
  Event()
9523
9548
  ], Maps.prototype, "doubleClick", void 0);
@@ -9749,7 +9774,7 @@ var Bubble = /** @__PURE__ @class */ (function () {
9749
9774
  // eslint-disable-next-line @typescript-eslint/no-explicit-any
9750
9775
  var translate;
9751
9776
  var animate$$1 = layer.animationDuration !== 0 || isNullOrUndefined(_this.maps.zoomModule);
9752
- if (_this.maps.zoomSettings.zoomFactor > 1 && !isNullOrUndefined(_this.maps.zoomModule)) {
9777
+ if (_this.maps.zoomSettings.zoomFactor > 1 && !isNullOrUndefined(_this.maps.zoomModule) && !_this.maps.isTileMap) {
9753
9778
  translate = getZoomTranslate(_this.maps, layer, animate$$1);
9754
9779
  }
9755
9780
  else {
@@ -9972,7 +9997,7 @@ var DataLabel = /** @__PURE__ @class */ (function () {
9972
9997
  var shapeWidth;
9973
9998
  var scaleZoomValue = !isNullOrUndefined(this.maps.scale) ? Math.floor(this.maps.scale) : 1;
9974
9999
  var zoomLabelsPosition = this.maps.zoomSettings.enable ? !isNullOrUndefined(this.maps.zoomShapeCollection) &&
9975
- this.maps.zoomShapeCollection.length > 0 : this.maps.zoomSettings.enable;
10000
+ this.maps.zoomShapeCollection.length > 0 && !this.maps.isAddLayer : this.maps.zoomSettings.enable;
9976
10001
  this.maps.translateType = 'labels';
9977
10002
  for (var j = 0; j < properties.length; j++) {
9978
10003
  if (shapeProperties[properties[j]]) {
@@ -12834,7 +12859,6 @@ var Selection = /** @__PURE__ @class */ (function () {
12834
12859
  Selection.prototype.addEventListener = function () {
12835
12860
  if (!this.maps.isDestroyed) {
12836
12861
  this.maps.on(click, this.mouseClick, this);
12837
- this.maps.on(Browser.touchEndEvent, this.mouseClick, this);
12838
12862
  }
12839
12863
  };
12840
12864
  /**
@@ -12847,7 +12871,6 @@ var Selection = /** @__PURE__ @class */ (function () {
12847
12871
  return;
12848
12872
  }
12849
12873
  this.maps.off(click, this.mouseClick);
12850
- this.maps.off(Browser.touchEndEvent, this.mouseClick);
12851
12874
  };
12852
12875
  Selection.prototype.mouseClick = function (targetElement) {
12853
12876
  if (!isNullOrUndefined(targetElement['type']) && targetElement['type'].indexOf('touch') !== -1 &&
@@ -13306,7 +13329,7 @@ var MapsTooltip = /** @__PURE__ @class */ (function () {
13306
13329
  options: tooltipOption,
13307
13330
  fill: option.fill,
13308
13331
  maps: this.maps,
13309
- element: target, eventArgs: e
13332
+ element: target, eventArgs: e, content: !isNullOrUndefined(currentData) ? currentData.toString() : ''
13310
13333
  };
13311
13334
  this.maps.trigger(tooltipRender, tooltipArgs, function (args) {
13312
13335
  if (!tooltipArgs.cancel && option.visible && !isNullOrUndefined(currentData) &&
@@ -13324,7 +13347,7 @@ var MapsTooltip = /** @__PURE__ @class */ (function () {
13324
13347
  header: '',
13325
13348
  data: option['data'],
13326
13349
  template: option['template'],
13327
- content: [currentData.toString()],
13350
+ content: tooltipArgs.content.toString() != currentData.toString() ? [tooltipArgs.content.toString()] : [currentData.toString()],
13328
13351
  shapes: [],
13329
13352
  location: option['location'],
13330
13353
  palette: [markerFill],
@@ -13340,7 +13363,7 @@ var MapsTooltip = /** @__PURE__ @class */ (function () {
13340
13363
  header: '',
13341
13364
  data: tooltipArgs.options['data'],
13342
13365
  template: tooltipArgs.options['template'],
13343
- content: [currentData.toString()],
13366
+ content: tooltipArgs.content.toString() != currentData.toString() ? [tooltipArgs.content.toString()] : [currentData.toString()],
13344
13367
  shapes: [],
13345
13368
  location: tooltipArgs.options['location'],
13346
13369
  palette: [markerFill],
@@ -13906,7 +13929,7 @@ var Zoom = /** @__PURE__ @class */ (function () {
13906
13929
  if (this.maps.isTileMap && (currentEle.id.indexOf('_line_Group') > -1)) {
13907
13930
  currentEle.remove();
13908
13931
  if (layerElement.children.length > 0 && layerElement.children[0]) {
13909
- layerElement.insertBefore(this.maps.navigationLineModule.renderNavigation(this.currentLayer, this.maps.tileZoomLevel, this.index), layerElement.children[0]);
13932
+ layerElement.insertBefore(this.maps.navigationLineModule.renderNavigation(this.currentLayer, this.maps.tileZoomLevel, this.index), layerElement.children[1]);
13910
13933
  }
13911
13934
  else {
13912
13935
  layerElement.appendChild(this.maps.navigationLineModule.renderNavigation(this.currentLayer, this.maps.tileZoomLevel, this.index));
@@ -14015,16 +14038,17 @@ var Zoom = /** @__PURE__ @class */ (function () {
14015
14038
  }
14016
14039
  }
14017
14040
  }
14018
- else if (currentEle.id.indexOf('_dataLableIndex_Group') > -1) {
14041
+ else if (currentEle.id.indexOf('_dataLableIndex_Group') > -1 && !isNullOrUndefined(this.maps.layers[this.index])) {
14019
14042
  this.intersect = [];
14020
14043
  this.maps.zoomLabelPositions = [];
14021
14044
  this.maps.zoomLabelPositions = this.maps.dataLabelModule.dataLabelCollections;
14045
+ var labelAnimate = !this.maps.isTileMap && animate$$1;
14022
14046
  for (var k = 0; k < currentEle.childElementCount; k++) {
14023
14047
  if (currentEle.childNodes[k]['id'].indexOf('_LabelIndex_') > -1) {
14024
14048
  var labelIndex = parseFloat(currentEle.childNodes[k]['id'].split('_LabelIndex_')[1].split('_')[0]);
14025
14049
  this.zoomshapewidth = currentEle.childNodes[k].getBoundingClientRect();
14026
14050
  this.maps.zoomShapeCollection.push(this.zoomshapewidth);
14027
- this.dataLabelTranslate(currentEle.childNodes[k], factor, x, y, scale, 'DataLabel', animate$$1);
14051
+ this.dataLabelTranslate(currentEle.childNodes[k], factor, x, y, scale, 'DataLabel', labelAnimate);
14028
14052
  var dataLabel = this.maps.layers[this.index].dataLabelSettings;
14029
14053
  var border = dataLabel.border;
14030
14054
  if (k > 0 && border['width'] > 1) {
@@ -14602,6 +14626,7 @@ var Zoom = /** @__PURE__ @class */ (function () {
14602
14626
  if (document.getElementById(_this.maps.element.id + '_LayerIndex_1')) {
14603
14627
  document.getElementById(_this.maps.element.id + '_LayerIndex_1').style.display = 'block';
14604
14628
  }
14629
+ _this.maps.isAddLayer = false;
14605
14630
  }, animationDuration);
14606
14631
  }
14607
14632
  }
@@ -15657,5 +15682,5 @@ var PdfExport = /** @__PURE__ @class */ (function () {
15657
15682
  * exporting all modules from maps index
15658
15683
  */
15659
15684
 
15660
- export { Maps, load, loaded, click, rightClick, doubleClick, resize, tooltipRender, shapeSelected, shapeHighlight, mousemove, mouseup, mousedown, layerRendering, shapeRendering, markerRendering, markerClusterRendering, markerClick, markerClusterClick, markerMouseMove, markerClusterMouseMove, dataLabelRendering, bubbleRendering, bubbleClick, bubbleMouseMove, animationComplete, legendRendering, annotationRendering, itemSelection, itemHighlight, beforePrint, zoomIn, zoomOut, pan, Annotation, Arrow, Font, Border, CenterPosition, TooltipSettings, Margin, ConnectorLineSettings, MarkerClusterSettings, MarkerClusterData, ColorMappingSettings, InitialMarkerSelectionSettings, InitialShapeSelectionSettings, SelectionSettings, HighlightSettings, NavigationLineSettings, BubbleSettings, CommonTitleSettings, SubTitleSettings, TitleSettings, ZoomSettings, ToggleLegendSettings, LegendSettings, DataLabelSettings, ShapeSettings, MarkerBase, MarkerSettings, LayerSettings, Tile, MapsAreaSettings, Size, stringToNumber, calculateSize, createSvg, getMousePosition, degreesToRadians, radiansToDegrees, convertGeoToPoint, convertTileLatLongToPoint, xToCoordinate, yToCoordinate, aitoff, roundTo, sinci, acos, calculateBound, triggerDownload, Point, MinMax, GeoLocation, measureText, TextOption, PathOption, ColorValue, RectOption, CircleOption, PolygonOption, PolylineOption, LineOption, Line, MapLocation, Rect, PatternOptions, renderTextElement, convertElement, formatValue, convertStringToValue, convertElementFromLabel, drawSymbols, getValueFromObject, markerColorChoose, markerShapeChoose, clusterTemplate, mergeSeparateCluster, clusterSeparate, marker, markerTemplate, maintainSelection, maintainStyleClass, appendShape, drawCircle, drawRectangle, drawPath, drawPolygon, drawPolyline, drawLine, calculateShapes, drawDiamond, drawTriangle, drawCross, drawHorizontalLine, drawVerticalLine, drawStar, drawBalloon, drawPattern, getFieldData, checkShapeDataFields, checkPropertyPath, filter, getRatioOfBubble, findMidPointOfPolygon, isCustomPath, textTrim, findPosition, removeElement, calculateCenterFromPixel, getTranslate, getZoomTranslate, fixInitialScaleForTile, getElementByID, getClientElement, Internalize, getTemplateFunction, getElement, getShapeData, triggerShapeEvent, getElementsByClassName, querySelector, getTargetElement, createStyle, customizeStyle, triggerItemSelectionEvent, removeClass, elementAnimate, timeout, showTooltip, wordWrap, createTooltip, drawSymbol, renderLegendShape, getElementOffset, changeBorderWidth, changeNavaigationLineWidth, targetTouches, calculateScale, getDistance, getTouches, getTouchCenter, sum, zoomAnimate, animate, MapAjax, smoothTranslate, compareZoomFactor, calculateZoomLevel, processResult, LayerPanel, Bubble, BingMap, Marker, ColorMapping, DataLabel, NavigationLine, Legend, Highlight, Selection, MapsTooltip, Zoom, Annotations, Print, ImageExport, PdfExport };
15685
+ export { Maps, load, loaded, click, onclick, rightClick, doubleClick, resize, tooltipRender, shapeSelected, shapeHighlight, mousemove, mouseup, mousedown, layerRendering, shapeRendering, markerRendering, markerClusterRendering, markerClick, markerClusterClick, markerMouseMove, markerClusterMouseMove, dataLabelRendering, bubbleRendering, bubbleClick, bubbleMouseMove, animationComplete, legendRendering, annotationRendering, itemSelection, itemHighlight, beforePrint, zoomIn, zoomOut, pan, Annotation, Arrow, Font, Border, CenterPosition, TooltipSettings, Margin, ConnectorLineSettings, MarkerClusterSettings, MarkerClusterData, ColorMappingSettings, InitialMarkerSelectionSettings, InitialShapeSelectionSettings, SelectionSettings, HighlightSettings, NavigationLineSettings, BubbleSettings, CommonTitleSettings, SubTitleSettings, TitleSettings, ZoomSettings, ToggleLegendSettings, LegendSettings, DataLabelSettings, ShapeSettings, MarkerBase, MarkerSettings, LayerSettings, Tile, MapsAreaSettings, Size, stringToNumber, calculateSize, createSvg, getMousePosition, degreesToRadians, radiansToDegrees, convertGeoToPoint, convertTileLatLongToPoint, xToCoordinate, yToCoordinate, aitoff, roundTo, sinci, acos, calculateBound, triggerDownload, Point, MinMax, GeoLocation, measureText, TextOption, PathOption, ColorValue, RectOption, CircleOption, PolygonOption, PolylineOption, LineOption, Line, MapLocation, Rect, PatternOptions, renderTextElement, convertElement, formatValue, convertStringToValue, convertElementFromLabel, drawSymbols, getValueFromObject, markerColorChoose, markerShapeChoose, clusterTemplate, mergeSeparateCluster, clusterSeparate, marker, markerTemplate, maintainSelection, maintainStyleClass, appendShape, drawCircle, drawRectangle, drawPath, drawPolygon, drawPolyline, drawLine, calculateShapes, drawDiamond, drawTriangle, drawCross, drawHorizontalLine, drawVerticalLine, drawStar, drawBalloon, drawPattern, getFieldData, checkShapeDataFields, checkPropertyPath, filter, getRatioOfBubble, findMidPointOfPolygon, isCustomPath, textTrim, findPosition, removeElement, calculateCenterFromPixel, getTranslate, getZoomTranslate, fixInitialScaleForTile, getElementByID, getClientElement, Internalize, getTemplateFunction, getElement, getShapeData, triggerShapeEvent, getElementsByClassName, querySelector, getTargetElement, createStyle, customizeStyle, triggerItemSelectionEvent, removeClass, elementAnimate, timeout, showTooltip, wordWrap, createTooltip, drawSymbol, renderLegendShape, getElementOffset, changeBorderWidth, changeNavaigationLineWidth, targetTouches, calculateScale, getDistance, getTouches, getTouchCenter, sum, zoomAnimate, animate, MapAjax, smoothTranslate, compareZoomFactor, calculateZoomLevel, processResult, LayerPanel, Bubble, BingMap, Marker, ColorMapping, DataLabel, NavigationLine, Legend, Highlight, Selection, MapsTooltip, Zoom, Annotations, Print, ImageExport, PdfExport };
15661
15686
  //# sourceMappingURL=ej2-maps.es5.js.map