@antv/l7-map 2.5.37-mini → 2.5.37-mini10

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.
@@ -5,8 +5,8 @@ var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefau
5
5
  Object.defineProperty(exports, "__esModule", {
6
6
  value: true
7
7
  });
8
+ exports.RIGHT_BUTTON = exports.LEFT_BUTTON = exports.BUTTONS_FLAGS = void 0;
8
9
  exports.buttonStillPressed = buttonStillPressed;
9
- exports.BUTTONS_FLAGS = exports.RIGHT_BUTTON = exports.LEFT_BUTTON = void 0;
10
10
 
11
11
  var _defineProperty2 = _interopRequireDefault(require("@babel/runtime/helpers/defineProperty"));
12
12
 
@@ -13,8 +13,6 @@ var _createClass2 = _interopRequireDefault(require("@babel/runtime/helpers/creat
13
13
 
14
14
  var _defineProperty2 = _interopRequireDefault(require("@babel/runtime/helpers/defineProperty"));
15
15
 
16
- var _l7Utils = require("@antv/l7-utils");
17
-
18
16
  var DragPanHandler = function () {
19
17
  function DragPanHandler(el, mousePan, touchPan) {
20
18
  (0, _classCallCheck2.default)(this, DragPanHandler);
@@ -33,20 +31,14 @@ var DragPanHandler = function () {
33
31
  this.inertiaOptions = options || {};
34
32
  this.mousePan.enable();
35
33
  this.touchPan.enable();
36
-
37
- if (!_l7Utils.isMini) {
38
- this.el.classList.add('l7-touch-drag-pan');
39
- }
34
+ this.el.classList.add('l7-touch-drag-pan');
40
35
  }
41
36
  }, {
42
37
  key: "disable",
43
38
  value: function disable() {
44
39
  this.mousePan.disable();
45
40
  this.touchPan.disable();
46
-
47
- if (!_l7Utils.isMini) {
48
- this.el.classList.remove('l7-touch-drag-pan');
49
- }
41
+ this.el.classList.remove('l7-touch-drag-pan');
50
42
  }
51
43
  }, {
52
44
  key: "isEnabled",
@@ -1 +1 @@
1
- {"version":3,"sources":["../../../src/handler/shim/drag_pan.ts"],"names":["DragPanHandler","el","mousePan","touchPan","options","inertiaOptions","enable","isMini","classList","add","disable","remove","isEnabled","isActive"],"mappings":";;;;;;;;;;;;;;;AAAA;;IAeqBA,c;AAQnB,0BACEC,EADF,EAEEC,QAFF,EAGEC,QAHF,EAIE;AAAA;AAAA;AAAA;AAAA;AAAA;AACA,SAAKF,EAAL,GAAUA,EAAV;AACA,SAAKC,QAAL,GAAgBA,QAAhB;AACA,SAAKC,QAAL,GAAgBA,QAAhB;AACD;;;;WAqBD,gBAAcC,OAAd,EAAyC;AACvC,WAAKC,cAAL,GAAsBD,OAAO,IAAI,EAAjC;AACA,WAAKF,QAAL,CAAcI,MAAd;AACA,WAAKH,QAAL,CAAcG,MAAd;;AACA,UAAI,CAACC,eAAL,EAAa;AACX,aAAKN,EAAL,CAAQO,SAAR,CAAkBC,GAAlB,CAAsB,mBAAtB;AACD;AACF;;;WAQD,mBAAiB;AACf,WAAKP,QAAL,CAAcQ,OAAd;AACA,WAAKP,QAAL,CAAcO,OAAd;;AACA,UAAI,CAACH,eAAL,EAAa;AACX,aAAKN,EAAL,CAAQO,SAAR,CAAkBG,MAAlB,CAAyB,mBAAzB;AACD;AACF;;;WAOD,qBAAmB;AACjB,aAAO,KAAKT,QAAL,CAAcU,SAAd,MAA6B,KAAKT,QAAL,CAAcS,SAAd,EAApC;AACD;;;WAOD,oBAAkB;AAChB,aAAO,KAAKV,QAAL,CAAcW,QAAd,MAA4B,KAAKV,QAAL,CAAcU,QAAd,EAAnC;AACD","sourcesContent":["import { isMini } from '@antv/l7-utils';\nimport { MousePanHandler } from '../mouse/';\nimport { TouchPanHandler } from '../touch/';\n\nexport interface IDragPanOptions {\n linearity?: number;\n easing?: (t: number) => number;\n deceleration?: number;\n maxSpeed?: number;\n}\n\n/**\n * The `DragPanHandler` allows the user to pan the map by clicking and dragging\n * the cursor.\n */\nexport default class DragPanHandler {\n public inertiaOptions: IDragPanOptions;\n private el: HTMLElement;\n private mousePan: MousePanHandler;\n private touchPan: TouchPanHandler;\n /**\n * @private\n */\n constructor(\n el: HTMLElement,\n mousePan: MousePanHandler,\n touchPan: TouchPanHandler,\n ) {\n this.el = el;\n this.mousePan = mousePan;\n this.touchPan = touchPan;\n }\n\n /**\n * Enables the \"drag to pan\" interaction.\n *\n * @param {Object} [options] Options object\n * @param {number} [options.linearity=0] factor used to scale the drag velocity\n * @param {Function} [options.easing=bezier(0, 0, 0.3, 1)] easing function applled to `map.panTo` when applying the drag.\n * @param {number} [options.maxSpeed=1400] the maximum value of the drag velocity.\n * @param {number} [options.deceleration=2500] the rate at which the speed reduces after the pan ends.\n *\n * @example\n * map.dragPan.enable();\n * @example\n * map.dragPan.enable({\n * linearity: 0.3,\n * easing: bezier(0, 0, 0.3, 1),\n * maxSpeed: 1400,\n * deceleration: 2500,\n * });\n */\n public enable(options?: IDragPanOptions) {\n this.inertiaOptions = options || {};\n this.mousePan.enable();\n this.touchPan.enable();\n if (!isMini) {\n this.el.classList.add('l7-touch-drag-pan');\n }\n }\n\n /**\n * Disables the \"drag to pan\" interaction.\n *\n * @example\n * map.dragPan.disable();\n */\n public disable() {\n this.mousePan.disable();\n this.touchPan.disable();\n if (!isMini) {\n this.el.classList.remove('l7-touch-drag-pan');\n }\n }\n\n /**\n * Returns a Boolean indicating whether the \"drag to pan\" interaction is enabled.\n *\n * @returns {boolean} `true` if the \"drag to pan\" interaction is enabled.\n */\n public isEnabled() {\n return this.mousePan.isEnabled() && this.touchPan.isEnabled();\n }\n\n /**\n * Returns a Boolean indicating whether the \"drag to pan\" interaction is active, i.e. currently being used.\n *\n * @returns {boolean} `true` if the \"drag to pan\" interaction is active.\n */\n public isActive() {\n return this.mousePan.isActive() || this.touchPan.isActive();\n }\n}\n"],"file":"drag_pan.js"}
1
+ {"version":3,"sources":["../../../src/handler/shim/drag_pan.ts"],"names":["DragPanHandler","el","mousePan","touchPan","options","inertiaOptions","enable","classList","add","disable","remove","isEnabled","isActive"],"mappings":";;;;;;;;;;;;;;;IAcqBA,c;AAQnB,0BACEC,EADF,EAEEC,QAFF,EAGEC,QAHF,EAIE;AAAA;AAAA;AAAA;AAAA;AAAA;AACA,SAAKF,EAAL,GAAUA,EAAV;AACA,SAAKC,QAAL,GAAgBA,QAAhB;AACA,SAAKC,QAAL,GAAgBA,QAAhB;AACD;;;;WAqBD,gBAAcC,OAAd,EAAyC;AACvC,WAAKC,cAAL,GAAsBD,OAAO,IAAI,EAAjC;AACA,WAAKF,QAAL,CAAcI,MAAd;AACA,WAAKH,QAAL,CAAcG,MAAd;AACA,WAAKL,EAAL,CAAQM,SAAR,CAAkBC,GAAlB,CAAsB,mBAAtB;AACD;;;WAQD,mBAAiB;AACf,WAAKN,QAAL,CAAcO,OAAd;AACA,WAAKN,QAAL,CAAcM,OAAd;AACA,WAAKR,EAAL,CAAQM,SAAR,CAAkBG,MAAlB,CAAyB,mBAAzB;AACD;;;WAOD,qBAAmB;AACjB,aAAO,KAAKR,QAAL,CAAcS,SAAd,MAA6B,KAAKR,QAAL,CAAcQ,SAAd,EAApC;AACD;;;WAOD,oBAAkB;AAChB,aAAO,KAAKT,QAAL,CAAcU,QAAd,MAA4B,KAAKT,QAAL,CAAcS,QAAd,EAAnC;AACD","sourcesContent":["import { MousePanHandler } from '../mouse/';\nimport { TouchPanHandler } from '../touch/';\n\nexport interface IDragPanOptions {\n linearity?: number;\n easing?: (t: number) => number;\n deceleration?: number;\n maxSpeed?: number;\n}\n\n/**\n * The `DragPanHandler` allows the user to pan the map by clicking and dragging\n * the cursor.\n */\nexport default class DragPanHandler {\n public inertiaOptions: IDragPanOptions;\n private el: HTMLElement;\n private mousePan: MousePanHandler;\n private touchPan: TouchPanHandler;\n /**\n * @private\n */\n constructor(\n el: HTMLElement,\n mousePan: MousePanHandler,\n touchPan: TouchPanHandler,\n ) {\n this.el = el;\n this.mousePan = mousePan;\n this.touchPan = touchPan;\n }\n\n /**\n * Enables the \"drag to pan\" interaction.\n *\n * @param {Object} [options] Options object\n * @param {number} [options.linearity=0] factor used to scale the drag velocity\n * @param {Function} [options.easing=bezier(0, 0, 0.3, 1)] easing function applled to `map.panTo` when applying the drag.\n * @param {number} [options.maxSpeed=1400] the maximum value of the drag velocity.\n * @param {number} [options.deceleration=2500] the rate at which the speed reduces after the pan ends.\n *\n * @example\n * map.dragPan.enable();\n * @example\n * map.dragPan.enable({\n * linearity: 0.3,\n * easing: bezier(0, 0, 0.3, 1),\n * maxSpeed: 1400,\n * deceleration: 2500,\n * });\n */\n public enable(options?: IDragPanOptions) {\n this.inertiaOptions = options || {};\n this.mousePan.enable();\n this.touchPan.enable();\n this.el.classList.add('l7-touch-drag-pan');\n }\n\n /**\n * Disables the \"drag to pan\" interaction.\n *\n * @example\n * map.dragPan.disable();\n */\n public disable() {\n this.mousePan.disable();\n this.touchPan.disable();\n this.el.classList.remove('l7-touch-drag-pan');\n }\n\n /**\n * Returns a Boolean indicating whether the \"drag to pan\" interaction is enabled.\n *\n * @returns {boolean} `true` if the \"drag to pan\" interaction is enabled.\n */\n public isEnabled() {\n return this.mousePan.isEnabled() && this.touchPan.isEnabled();\n }\n\n /**\n * Returns a Boolean indicating whether the \"drag to pan\" interaction is active, i.e. currently being used.\n *\n * @returns {boolean} `true` if the \"drag to pan\" interaction is active.\n */\n public isActive() {\n return this.mousePan.isActive() || this.touchPan.isActive();\n }\n}\n"],"file":"drag_pan.js"}
@@ -13,8 +13,6 @@ var _createClass2 = _interopRequireDefault(require("@babel/runtime/helpers/creat
13
13
 
14
14
  var _defineProperty2 = _interopRequireDefault(require("@babel/runtime/helpers/defineProperty"));
15
15
 
16
- var _l7Utils = require("@antv/l7-utils");
17
-
18
16
  var TouchZoomRotateHandler = function () {
19
17
  function TouchZoomRotateHandler(el, touchZoom, touchRotate, tapDragZoom) {
20
18
  (0, _classCallCheck2.default)(this, TouchZoomRotateHandler);
@@ -42,10 +40,7 @@ var TouchZoomRotateHandler = function () {
42
40
  }
43
41
 
44
42
  this.tapDragZoom.enable();
45
-
46
- if (!_l7Utils.isMini) {
47
- this.el.classList.add('l7-touch-zoom-rotate');
48
- }
43
+ this.el.classList.add('l7-touch-zoom-rotate');
49
44
  }
50
45
  }, {
51
46
  key: "disable",
@@ -53,10 +48,7 @@ var TouchZoomRotateHandler = function () {
53
48
  this.touchZoom.disable();
54
49
  this.touchRotate.disable();
55
50
  this.tapDragZoom.disable();
56
-
57
- if (!_l7Utils.isMini) {
58
- this.el.classList.remove('l7-touch-zoom-rotate');
59
- }
51
+ this.el.classList.remove('l7-touch-zoom-rotate');
60
52
  }
61
53
  }, {
62
54
  key: "isEnabled",
@@ -1 +1 @@
1
- {"version":3,"sources":["../../../src/handler/shim/touch_zoom_rotate.ts"],"names":["TouchZoomRotateHandler","el","touchZoom","touchRotate","tapDragZoom","rotationDisabled","enabled","options","enable","isMini","classList","add","disable","remove","isEnabled","isActive"],"mappings":";;;;;;;;;;;;;;;AAAA;;IAWqBA,sB;AAWnB,kCACEC,EADF,EAEEC,SAFF,EAGEC,WAHF,EAIEC,WAJF,EAKE;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AACA,SAAKH,EAAL,GAAUA,EAAV;AACA,SAAKC,SAAL,GAAiBA,SAAjB;AACA,SAAKC,WAAL,GAAmBA,WAAnB;AACA,SAAKC,WAAL,GAAmBA,WAAnB;AACA,SAAKC,gBAAL,GAAwB,KAAxB;AACA,SAAKC,OAAL,GAAe,IAAf;AACD;;;;WAaD,gBAAcC,OAAd,EAA8C;AAC5C,WAAKL,SAAL,CAAeM,MAAf,CAAsBD,OAAtB;;AACA,UAAI,CAAC,KAAKF,gBAAV,EAA4B;AAC1B,aAAKF,WAAL,CAAiBK,MAAjB,CAAwBD,OAAxB;AACD;;AACD,WAAKH,WAAL,CAAiBI,MAAjB;;AACA,UAAI,CAACC,eAAL,EAAa;AACX,aAAKR,EAAL,CAAQS,SAAR,CAAkBC,GAAlB,CAAsB,sBAAtB;AACD;AACF;;;WAQD,mBAAiB;AACf,WAAKT,SAAL,CAAeU,OAAf;AACA,WAAKT,WAAL,CAAiBS,OAAjB;AACA,WAAKR,WAAL,CAAiBQ,OAAjB;;AACA,UAAI,CAACH,eAAL,EAAa;AACX,aAAKR,EAAL,CAAQS,SAAR,CAAkBG,MAAlB,CAAyB,sBAAzB;AACD;AACF;;;WAOD,qBAAmB;AACjB,aACE,KAAKX,SAAL,CAAeY,SAAf,OACC,KAAKT,gBAAL,IAAyB,KAAKF,WAAL,CAAiBW,SAAjB,EAD1B,KAEA,KAAKV,WAAL,CAAiBU,SAAjB,EAHF;AAKD;;;WAOD,oBAAkB;AAChB,aACE,KAAKZ,SAAL,CAAea,QAAf,MACA,KAAKZ,WAAL,CAAiBY,QAAjB,EADA,IAEA,KAAKX,WAAL,CAAiBW,QAAjB,EAHF;AAKD;;;WASD,2BAAyB;AACvB,WAAKV,gBAAL,GAAwB,IAAxB;AACA,WAAKF,WAAL,CAAiBS,OAAjB;AACD;;;WASD,0BAAwB;AACtB,WAAKP,gBAAL,GAAwB,KAAxB;;AACA,UAAI,KAAKH,SAAL,CAAeY,SAAf,EAAJ,EAAgC;AAC9B,aAAKX,WAAL,CAAiBK,MAAjB;AACD;AACF","sourcesContent":["import { isMini } from '@antv/l7-utils';\nimport TapDragZoomHandler from '../tap/tap_drag_zoom';\nimport { TouchRotateHandler, TouchZoomHandler } from '../touch';\n\n/**\n * The `TouchZoomRotateHandler` allows the user to zoom and rotate the map by\n * pinching on a touchscreen.\n *\n * They can zoom with one finger by double tapping and dragging. On the second tap,\n * hold the finger down and drag up or down to zoom in or out.\n */\nexport default class TouchZoomRotateHandler {\n private el: HTMLElement;\n private touchZoom: TouchZoomHandler;\n private touchRotate: TouchRotateHandler;\n private tapDragZoom: TapDragZoomHandler;\n private rotationDisabled: boolean;\n private enabled: boolean;\n\n /**\n * @private\n */\n constructor(\n el: HTMLElement,\n touchZoom: TouchZoomHandler,\n touchRotate: TouchRotateHandler,\n tapDragZoom: TapDragZoomHandler,\n ) {\n this.el = el;\n this.touchZoom = touchZoom;\n this.touchRotate = touchRotate;\n this.tapDragZoom = tapDragZoom;\n this.rotationDisabled = false;\n this.enabled = true;\n }\n\n /**\n * Enables the \"pinch to rotate and zoom\" interaction.\n *\n * @param {Object} [options] Options object.\n * @param {string} [options.around] If \"center\" is passed, map will zoom around the center\n *\n * @example\n * map.touchZoomRotate.enable();\n * @example\n * map.touchZoomRotate.enable({ around: 'center' });\n */\n public enable(options: { around?: 'center' }) {\n this.touchZoom.enable(options);\n if (!this.rotationDisabled) {\n this.touchRotate.enable(options);\n }\n this.tapDragZoom.enable();\n if (!isMini) {\n this.el.classList.add('l7-touch-zoom-rotate');\n }\n }\n\n /**\n * Disables the \"pinch to rotate and zoom\" interaction.\n *\n * @example\n * map.touchZoomRotate.disable();\n */\n public disable() {\n this.touchZoom.disable();\n this.touchRotate.disable();\n this.tapDragZoom.disable();\n if (!isMini) {\n this.el.classList.remove('l7-touch-zoom-rotate');\n }\n }\n\n /**\n * Returns a Boolean indicating whether the \"pinch to rotate and zoom\" interaction is enabled.\n *\n * @returns {boolean} `true` if the \"pinch to rotate and zoom\" interaction is enabled.\n */\n public isEnabled() {\n return (\n this.touchZoom.isEnabled() &&\n (this.rotationDisabled || this.touchRotate.isEnabled()) &&\n this.tapDragZoom.isEnabled()\n );\n }\n\n /**\n * Returns true if the handler is enabled and has detected the start of a zoom/rotate gesture.\n *\n * @returns {boolean} //eslint-disable-line\n */\n public isActive() {\n return (\n this.touchZoom.isActive() ||\n this.touchRotate.isActive() ||\n this.tapDragZoom.isActive()\n );\n }\n\n /**\n * Disables the \"pinch to rotate\" interaction, leaving the \"pinch to zoom\"\n * interaction enabled.\n *\n * @example\n * map.touchZoomRotate.disableRotation();\n */\n public disableRotation() {\n this.rotationDisabled = true;\n this.touchRotate.disable();\n }\n\n /**\n * Enables the \"pinch to rotate\" interaction.\n *\n * @example\n * map.touchZoomRotate.enable();\n * map.touchZoomRotate.enableRotation();\n */\n public enableRotation() {\n this.rotationDisabled = false;\n if (this.touchZoom.isEnabled()) {\n this.touchRotate.enable();\n }\n }\n}\n"],"file":"touch_zoom_rotate.js"}
1
+ {"version":3,"sources":["../../../src/handler/shim/touch_zoom_rotate.ts"],"names":["TouchZoomRotateHandler","el","touchZoom","touchRotate","tapDragZoom","rotationDisabled","enabled","options","enable","classList","add","disable","remove","isEnabled","isActive"],"mappings":";;;;;;;;;;;;;;;IAUqBA,sB;AAWnB,kCACEC,EADF,EAEEC,SAFF,EAGEC,WAHF,EAIEC,WAJF,EAKE;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AACA,SAAKH,EAAL,GAAUA,EAAV;AACA,SAAKC,SAAL,GAAiBA,SAAjB;AACA,SAAKC,WAAL,GAAmBA,WAAnB;AACA,SAAKC,WAAL,GAAmBA,WAAnB;AACA,SAAKC,gBAAL,GAAwB,KAAxB;AACA,SAAKC,OAAL,GAAe,IAAf;AACD;;;;WAaD,gBAAcC,OAAd,EAA8C;AAC5C,WAAKL,SAAL,CAAeM,MAAf,CAAsBD,OAAtB;;AACA,UAAI,CAAC,KAAKF,gBAAV,EAA4B;AAC1B,aAAKF,WAAL,CAAiBK,MAAjB,CAAwBD,OAAxB;AACD;;AACD,WAAKH,WAAL,CAAiBI,MAAjB;AACA,WAAKP,EAAL,CAAQQ,SAAR,CAAkBC,GAAlB,CAAsB,sBAAtB;AACD;;;WAQD,mBAAiB;AACf,WAAKR,SAAL,CAAeS,OAAf;AACA,WAAKR,WAAL,CAAiBQ,OAAjB;AACA,WAAKP,WAAL,CAAiBO,OAAjB;AACA,WAAKV,EAAL,CAAQQ,SAAR,CAAkBG,MAAlB,CAAyB,sBAAzB;AACD;;;WAOD,qBAAmB;AACjB,aACE,KAAKV,SAAL,CAAeW,SAAf,OACC,KAAKR,gBAAL,IAAyB,KAAKF,WAAL,CAAiBU,SAAjB,EAD1B,KAEA,KAAKT,WAAL,CAAiBS,SAAjB,EAHF;AAKD;;;WAOD,oBAAkB;AAChB,aACE,KAAKX,SAAL,CAAeY,QAAf,MACA,KAAKX,WAAL,CAAiBW,QAAjB,EADA,IAEA,KAAKV,WAAL,CAAiBU,QAAjB,EAHF;AAKD;;;WASD,2BAAyB;AACvB,WAAKT,gBAAL,GAAwB,IAAxB;AACA,WAAKF,WAAL,CAAiBQ,OAAjB;AACD;;;WASD,0BAAwB;AACtB,WAAKN,gBAAL,GAAwB,KAAxB;;AACA,UAAI,KAAKH,SAAL,CAAeW,SAAf,EAAJ,EAAgC;AAC9B,aAAKV,WAAL,CAAiBK,MAAjB;AACD;AACF","sourcesContent":["import TapDragZoomHandler from '../tap/tap_drag_zoom';\nimport { TouchRotateHandler, TouchZoomHandler } from '../touch';\n\n/**\n * The `TouchZoomRotateHandler` allows the user to zoom and rotate the map by\n * pinching on a touchscreen.\n *\n * They can zoom with one finger by double tapping and dragging. On the second tap,\n * hold the finger down and drag up or down to zoom in or out.\n */\nexport default class TouchZoomRotateHandler {\n private el: HTMLElement;\n private touchZoom: TouchZoomHandler;\n private touchRotate: TouchRotateHandler;\n private tapDragZoom: TapDragZoomHandler;\n private rotationDisabled: boolean;\n private enabled: boolean;\n\n /**\n * @private\n */\n constructor(\n el: HTMLElement,\n touchZoom: TouchZoomHandler,\n touchRotate: TouchRotateHandler,\n tapDragZoom: TapDragZoomHandler,\n ) {\n this.el = el;\n this.touchZoom = touchZoom;\n this.touchRotate = touchRotate;\n this.tapDragZoom = tapDragZoom;\n this.rotationDisabled = false;\n this.enabled = true;\n }\n\n /**\n * Enables the \"pinch to rotate and zoom\" interaction.\n *\n * @param {Object} [options] Options object.\n * @param {string} [options.around] If \"center\" is passed, map will zoom around the center\n *\n * @example\n * map.touchZoomRotate.enable();\n * @example\n * map.touchZoomRotate.enable({ around: 'center' });\n */\n public enable(options: { around?: 'center' }) {\n this.touchZoom.enable(options);\n if (!this.rotationDisabled) {\n this.touchRotate.enable(options);\n }\n this.tapDragZoom.enable();\n this.el.classList.add('l7-touch-zoom-rotate');\n }\n\n /**\n * Disables the \"pinch to rotate and zoom\" interaction.\n *\n * @example\n * map.touchZoomRotate.disable();\n */\n public disable() {\n this.touchZoom.disable();\n this.touchRotate.disable();\n this.tapDragZoom.disable();\n this.el.classList.remove('l7-touch-zoom-rotate');\n }\n\n /**\n * Returns a Boolean indicating whether the \"pinch to rotate and zoom\" interaction is enabled.\n *\n * @returns {boolean} `true` if the \"pinch to rotate and zoom\" interaction is enabled.\n */\n public isEnabled() {\n return (\n this.touchZoom.isEnabled() &&\n (this.rotationDisabled || this.touchRotate.isEnabled()) &&\n this.tapDragZoom.isEnabled()\n );\n }\n\n /**\n * Returns true if the handler is enabled and has detected the start of a zoom/rotate gesture.\n *\n * @returns {boolean} //eslint-disable-line\n */\n public isActive() {\n return (\n this.touchZoom.isActive() ||\n this.touchRotate.isActive() ||\n this.tapDragZoom.isActive()\n );\n }\n\n /**\n * Disables the \"pinch to rotate\" interaction, leaving the \"pinch to zoom\"\n * interaction enabled.\n *\n * @example\n * map.touchZoomRotate.disableRotation();\n */\n public disableRotation() {\n this.rotationDisabled = true;\n this.touchRotate.disable();\n }\n\n /**\n * Enables the \"pinch to rotate\" interaction.\n *\n * @example\n * map.touchZoomRotate.enable();\n * map.touchZoomRotate.enableRotation();\n */\n public enableRotation() {\n this.rotationDisabled = false;\n if (this.touchZoom.isEnabled()) {\n this.touchRotate.enable();\n }\n }\n}\n"],"file":"touch_zoom_rotate.js"}
@@ -5,7 +5,7 @@ var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefau
5
5
  Object.defineProperty(exports, "__esModule", {
6
6
  value: true
7
7
  });
8
- exports.default = exports.MAX_DIST = exports.MAX_TOUCH_TIME = exports.MAX_TAP_INTERVAL = void 0;
8
+ exports.default = exports.MAX_TOUCH_TIME = exports.MAX_TAP_INTERVAL = exports.MAX_DIST = void 0;
9
9
 
10
10
  var _classCallCheck2 = _interopRequireDefault(require("@babel/runtime/helpers/classCallCheck"));
11
11
 
@@ -1,9 +1,9 @@
1
1
  "use strict";
2
2
 
3
- var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard");
4
-
5
3
  var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
6
4
 
5
+ var _typeof = require("@babel/runtime/helpers/typeof");
6
+
7
7
  Object.defineProperty(exports, "__esModule", {
8
8
  value: true
9
9
  });
@@ -17,6 +17,10 @@ var _defineProperty2 = _interopRequireDefault(require("@babel/runtime/helpers/de
17
17
 
18
18
  var _single_tap_recognizer = _interopRequireWildcard(require("./single_tap_recognizer"));
19
19
 
20
+ function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
21
+
22
+ function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
23
+
20
24
  var TapRecognizer = function () {
21
25
  function TapRecognizer(options) {
22
26
  (0, _classCallCheck2.default)(this, TapRecognizer);
@@ -1 +1 @@
1
- {"version":3,"sources":["../../../src/handler/tap/tap_recognizer.ts"],"names":["TapRecognizer","options","singleTap","SingleTapRecognizer","numTaps","reset","lastTime","Infinity","lastTap","count","e","points","mapTouches","touchstart","touchmove","tap","touchend","soonEnough","timeStamp","MAX_TAP_INTERVAL","closeEnough","dist","MAX_DIST"],"mappings":";;;;;;;;;;;;;;;;;AAEA;;IAKqBA,a;AAOnB,yBAAYC,OAAZ,EAA8D;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAC5D,SAAKC,SAAL,GAAiB,IAAIC,8BAAJ,CAAwBF,OAAxB,CAAjB;AACA,SAAKG,OAAL,GAAeH,OAAO,CAACG,OAAvB;AACA,SAAKC,KAAL;AACD;;;;WAED,iBAAe;AACb,WAAKC,QAAL,GAAgBC,QAAhB;AACA,aAAO,KAAKC,OAAZ;AACA,WAAKC,KAAL,GAAa,CAAb;AACA,WAAKP,SAAL,CAAeG,KAAf;AACD;;;WAED,oBAAkBK,CAAlB,EAAiCC,MAAjC,EAAkDC,UAAlD,EAAuE;AACrE,WAAKV,SAAL,CAAeW,UAAf,CAA0BH,CAA1B,EAA6BC,MAA7B,EAAqCC,UAArC;AACD;;;WAED,mBAAiBF,CAAjB,EAAgCC,MAAhC,EAAiDC,UAAjD,EAAsE;AACpE,WAAKV,SAAL,CAAeY,SAAf,CAAyBJ,CAAzB,EAA4BC,MAA5B,EAAoCC,UAApC;AACD;;;WAED,kBAAgBF,CAAhB,EAA+BC,MAA/B,EAAgDC,UAAhD,EAAqE;AACnE,UAAMG,GAAG,GAAG,KAAKb,SAAL,CAAec,QAAf,CAAwBN,CAAxB,EAA2BC,MAA3B,EAAmCC,UAAnC,CAAZ;;AACA,UAAIG,GAAJ,EAAS;AACP,YAAME,UAAU,GAAGP,CAAC,CAACQ,SAAF,GAAc,KAAKZ,QAAnB,GAA8Ba,uCAAjD;;AACA,YAAMC,WAAW,GAAG,CAAC,KAAKZ,OAAN,IAAiB,KAAKA,OAAL,CAAaa,IAAb,CAAkBN,GAAlB,IAAyBO,+BAA9D;;AAEA,YAAI,CAACL,UAAD,IAAe,CAACG,WAApB,EAAiC;AAC/B,eAAKf,KAAL;AACD;;AAED,aAAKI,KAAL;AACA,aAAKH,QAAL,GAAgBI,CAAC,CAACQ,SAAlB;AACA,aAAKV,OAAL,GAAeO,GAAf;;AAEA,YAAI,KAAKN,KAAL,KAAe,KAAKL,OAAxB,EAAiC;AAC/B,eAAKC,KAAL;AACA,iBAAOU,GAAP;AACD;AACF;AACF","sourcesContent":["// @ts-ignore\nimport Point from '../../geo/point';\nimport SingleTapRecognizer, {\n MAX_DIST,\n MAX_TAP_INTERVAL,\n} from './single_tap_recognizer';\n\nexport default class TapRecognizer {\n public singleTap: SingleTapRecognizer;\n public numTaps: number;\n public lastTime: number;\n public lastTap: Point;\n public count: number;\n\n constructor(options: { numTaps: number; numTouches: number }) {\n this.singleTap = new SingleTapRecognizer(options);\n this.numTaps = options.numTaps;\n this.reset();\n }\n\n public reset() {\n this.lastTime = Infinity;\n delete this.lastTap;\n this.count = 0;\n this.singleTap.reset();\n }\n\n public touchstart(e: TouchEvent, points: Point[], mapTouches: Touch[]) {\n this.singleTap.touchstart(e, points, mapTouches);\n }\n\n public touchmove(e: TouchEvent, points: Point[], mapTouches: Touch[]) {\n this.singleTap.touchmove(e, points, mapTouches);\n }\n\n public touchend(e: TouchEvent, points: Point[], mapTouches: Touch[]) {\n const tap = this.singleTap.touchend(e, points, mapTouches);\n if (tap) {\n const soonEnough = e.timeStamp - this.lastTime < MAX_TAP_INTERVAL;\n const closeEnough = !this.lastTap || this.lastTap.dist(tap) < MAX_DIST;\n\n if (!soonEnough || !closeEnough) {\n this.reset();\n }\n\n this.count++;\n this.lastTime = e.timeStamp;\n this.lastTap = tap;\n\n if (this.count === this.numTaps) {\n this.reset();\n return tap;\n }\n }\n }\n}\n"],"file":"tap_recognizer.js"}
1
+ {"version":3,"sources":["../../../src/handler/tap/tap_recognizer.ts"],"names":["TapRecognizer","options","singleTap","SingleTapRecognizer","numTaps","reset","lastTime","Infinity","lastTap","count","e","points","mapTouches","touchstart","touchmove","tap","touchend","soonEnough","timeStamp","MAX_TAP_INTERVAL","closeEnough","dist","MAX_DIST"],"mappings":";;;;;;;;;;;;;;;;;AAEA;;;;;;IAKqBA,a;AAOnB,yBAAYC,OAAZ,EAA8D;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAC5D,SAAKC,SAAL,GAAiB,IAAIC,8BAAJ,CAAwBF,OAAxB,CAAjB;AACA,SAAKG,OAAL,GAAeH,OAAO,CAACG,OAAvB;AACA,SAAKC,KAAL;AACD;;;;WAED,iBAAe;AACb,WAAKC,QAAL,GAAgBC,QAAhB;AACA,aAAO,KAAKC,OAAZ;AACA,WAAKC,KAAL,GAAa,CAAb;AACA,WAAKP,SAAL,CAAeG,KAAf;AACD;;;WAED,oBAAkBK,CAAlB,EAAiCC,MAAjC,EAAkDC,UAAlD,EAAuE;AACrE,WAAKV,SAAL,CAAeW,UAAf,CAA0BH,CAA1B,EAA6BC,MAA7B,EAAqCC,UAArC;AACD;;;WAED,mBAAiBF,CAAjB,EAAgCC,MAAhC,EAAiDC,UAAjD,EAAsE;AACpE,WAAKV,SAAL,CAAeY,SAAf,CAAyBJ,CAAzB,EAA4BC,MAA5B,EAAoCC,UAApC;AACD;;;WAED,kBAAgBF,CAAhB,EAA+BC,MAA/B,EAAgDC,UAAhD,EAAqE;AACnE,UAAMG,GAAG,GAAG,KAAKb,SAAL,CAAec,QAAf,CAAwBN,CAAxB,EAA2BC,MAA3B,EAAmCC,UAAnC,CAAZ;;AACA,UAAIG,GAAJ,EAAS;AACP,YAAME,UAAU,GAAGP,CAAC,CAACQ,SAAF,GAAc,KAAKZ,QAAnB,GAA8Ba,uCAAjD;;AACA,YAAMC,WAAW,GAAG,CAAC,KAAKZ,OAAN,IAAiB,KAAKA,OAAL,CAAaa,IAAb,CAAkBN,GAAlB,IAAyBO,+BAA9D;;AAEA,YAAI,CAACL,UAAD,IAAe,CAACG,WAApB,EAAiC;AAC/B,eAAKf,KAAL;AACD;;AAED,aAAKI,KAAL;AACA,aAAKH,QAAL,GAAgBI,CAAC,CAACQ,SAAlB;AACA,aAAKV,OAAL,GAAeO,GAAf;;AAEA,YAAI,KAAKN,KAAL,KAAe,KAAKL,OAAxB,EAAiC;AAC/B,eAAKC,KAAL;AACA,iBAAOU,GAAP;AACD;AACF;AACF","sourcesContent":["// @ts-ignore\nimport Point from '../../geo/point';\nimport SingleTapRecognizer, {\n MAX_DIST,\n MAX_TAP_INTERVAL,\n} from './single_tap_recognizer';\n\nexport default class TapRecognizer {\n public singleTap: SingleTapRecognizer;\n public numTaps: number;\n public lastTime: number;\n public lastTap: Point;\n public count: number;\n\n constructor(options: { numTaps: number; numTouches: number }) {\n this.singleTap = new SingleTapRecognizer(options);\n this.numTaps = options.numTaps;\n this.reset();\n }\n\n public reset() {\n this.lastTime = Infinity;\n delete this.lastTap;\n this.count = 0;\n this.singleTap.reset();\n }\n\n public touchstart(e: TouchEvent, points: Point[], mapTouches: Touch[]) {\n this.singleTap.touchstart(e, points, mapTouches);\n }\n\n public touchmove(e: TouchEvent, points: Point[], mapTouches: Touch[]) {\n this.singleTap.touchmove(e, points, mapTouches);\n }\n\n public touchend(e: TouchEvent, points: Point[], mapTouches: Touch[]) {\n const tap = this.singleTap.touchend(e, points, mapTouches);\n if (tap) {\n const soonEnough = e.timeStamp - this.lastTime < MAX_TAP_INTERVAL;\n const closeEnough = !this.lastTap || this.lastTap.dist(tap) < MAX_DIST;\n\n if (!soonEnough || !closeEnough) {\n this.reset();\n }\n\n this.count++;\n this.lastTime = e.timeStamp;\n this.lastTap = tap;\n\n if (this.count === this.numTaps) {\n this.reset();\n return tap;\n }\n }\n }\n}\n"],"file":"tap_recognizer.js"}
package/lib/hash.js CHANGED
@@ -13,9 +13,7 @@ var _createClass2 = _interopRequireDefault(require("@babel/runtime/helpers/creat
13
13
 
14
14
  var _defineProperty2 = _interopRequireDefault(require("@babel/runtime/helpers/defineProperty"));
15
15
 
16
- var _throttle2 = _interopRequireDefault(require("lodash/throttle"));
17
-
18
- var _l7Utils = require("@antv/l7-utils");
16
+ var _throttle = _interopRequireDefault(require("lodash/throttle"));
19
17
 
20
18
  var Hash = function () {
21
19
  function Hash(hashName) {
@@ -70,24 +68,21 @@ var Hash = function () {
70
68
  } catch (SecurityError) {}
71
69
  });
72
70
  this.hashName = hashName && encodeURIComponent(hashName);
73
- this.updateHash = (0, _throttle2.default)(this.updateHashUnthrottled, 30 * 1000 / 100);
71
+ this.updateHash = (0, _throttle.default)(this.updateHashUnthrottled, 30 * 1000 / 100);
74
72
  }
75
73
 
76
74
  (0, _createClass2.default)(Hash, [{
77
75
  key: "addTo",
78
76
  value: function addTo(map) {
79
77
  this.map = map;
80
-
81
- _l7Utils.$window.addEventListener('hashchange', this.onHashChange, false);
82
-
78
+ window.addEventListener('hashchange', this.onHashChange, false);
83
79
  this.map.on('moveend', this.updateHash);
84
80
  return this;
85
81
  }
86
82
  }, {
87
83
  key: "remove",
88
84
  value: function remove() {
89
- _l7Utils.$window.removeEventListener('hashchange', this.onHashChange, false);
90
-
85
+ window.removeEventListener('hashchange', this.onHashChange, false);
91
86
  this.map.off('moveend', this.updateHash);
92
87
  delete this.map;
93
88
  return this;
package/lib/hash.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"sources":["../src/hash.ts"],"names":["Hash","hashName","loc","getCurrentHash","length","some","v","isNaN","bearing","map","dragRotate","isEnabled","touchZoomRotate","getBearing","jumpTo","center","zoom","pitch","hash","window","location","replace","keyval","split","part","forEach","getHashString","history","replaceState","state","SecurityError","encodeURIComponent","updateHash","updateHashUnthrottled","$window","addEventListener","onHashChange","on","removeEventListener","off","mapFeedback","getCenter","Math","round","getZoom","precision","ceil","LN2","log","LN10","m","pow","lng","lat","getPitch","found","parts","slice","key","filter","a","push","join"],"mappings":"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","sourcesContent":["// @ts-ignore\n// tslint:disable-next-line:no-submodule-imports\nimport { $window } from '@antv/l7-utils';\nimport { throttle } from 'lodash';\nimport { Map } from './map';\n\n/*\n * Adds the map's position to its page's location hash.\n * Passed as an option to the map object.\n *\n * @returns {Hash} `this`\n */\nclass Hash {\n private map: Map;\n private updateHash: () => number | void;\n private hashName?: string;\n\n constructor(hashName?: string) {\n this.hashName = hashName && encodeURIComponent(hashName);\n\n // Mobile Safari doesn't allow updating the hash more than 100 times per 30 seconds.\n this.updateHash = throttle(this.updateHashUnthrottled, (30 * 1000) / 100);\n }\n public addTo(map: Map) {\n this.map = map;\n $window.addEventListener('hashchange', this.onHashChange, false);\n this.map.on('moveend', this.updateHash);\n return this;\n }\n public remove() {\n $window.removeEventListener('hashchange', this.onHashChange, false);\n this.map.off('moveend', this.updateHash);\n // clearTimeout(this.updateHash());\n\n // @ts-ignore\n delete this.map;\n return this;\n }\n\n public onHashChange = () => {\n const loc = this.getCurrentHash();\n if (loc.length >= 3 && !loc.some((v: string) => isNaN(+v))) {\n const bearing =\n this.map.dragRotate.isEnabled() && this.map.touchZoomRotate.isEnabled()\n ? +(loc[3] || 0)\n : this.map.getBearing();\n this.map.jumpTo({\n center: [+loc[2], +loc[1]],\n zoom: +loc[0],\n bearing,\n pitch: +(loc[4] || 0),\n });\n return true;\n }\n return false;\n };\n\n private getCurrentHash = () => {\n // Get the current hash from location, stripped from its number sign\n const hash = window.location.hash.replace('#', '');\n if (this.hashName) {\n // Split the parameter-styled hash into parts and find the value we need\n let keyval;\n hash\n .split('&')\n .map((part) => part.split('='))\n .forEach((part) => {\n if (part[0] === this.hashName) {\n keyval = part;\n }\n });\n return (keyval ? keyval[1] || '' : '').split('/');\n }\n return hash.split('/');\n };\n\n private getHashString(mapFeedback?: boolean) {\n const center = this.map.getCenter();\n const zoom = Math.round(this.map.getZoom() * 100) / 100;\n // derived from equation: 512px * 2^z / 360 / 10^d < 0.5px\n const precision = Math.ceil(\n (zoom * Math.LN2 + Math.log(512 / 360 / 0.5)) / Math.LN10,\n );\n const m = Math.pow(10, precision);\n const lng = Math.round(center.lng * m) / m;\n const lat = Math.round(center.lat * m) / m;\n const bearing = this.map.getBearing();\n const pitch = this.map.getPitch();\n let hash = '';\n if (mapFeedback) {\n // new map feedback site has some constraints that don't allow\n // us to use the same hash format as we do for the Map hash option.\n hash += `/${lng}/${lat}/${zoom}`;\n } else {\n hash += `${zoom}/${lat}/${lng}`;\n }\n\n if (bearing || pitch) {\n hash += `/${Math.round(bearing * 10) / 10}`;\n }\n if (pitch) {\n hash += `/${Math.round(pitch)}`;\n }\n\n if (this.hashName) {\n const hashName = this.hashName;\n let found = false;\n const parts = window.location.hash\n .slice(1)\n .split('&')\n .map((part) => {\n const key = part.split('=')[0];\n if (key === hashName) {\n found = true;\n return `${key}=${hash}`;\n }\n return part;\n })\n .filter((a) => a);\n if (!found) {\n parts.push(`${hashName}=${hash}`);\n }\n return `#${parts.join('&')}`;\n }\n\n return `#${hash}`;\n }\n\n private updateHashUnthrottled = () => {\n const hash = this.getHashString();\n try {\n window.history.replaceState(window.history.state, '', hash);\n } catch (SecurityError) {\n // IE11 does not allow this if the page is within an iframe created\n // with iframe.contentWindow.document.write(...).\n // https://github.com/mapbox/mapbox-gl-js/issues/7410\n }\n };\n}\n\nexport default Hash;\n"],"file":"hash.js"}
1
+ {"version":3,"sources":["../src/hash.ts"],"names":["Hash","hashName","loc","getCurrentHash","length","some","v","isNaN","bearing","map","dragRotate","isEnabled","touchZoomRotate","getBearing","jumpTo","center","zoom","pitch","hash","window","location","replace","keyval","split","part","forEach","getHashString","history","replaceState","state","SecurityError","encodeURIComponent","updateHash","updateHashUnthrottled","addEventListener","onHashChange","on","removeEventListener","off","mapFeedback","getCenter","Math","round","getZoom","precision","ceil","LN2","log","LN10","m","pow","lng","lat","getPitch","found","parts","slice","key","filter","a","push","join"],"mappings":"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","sourcesContent":["// @ts-ignore\n// tslint:disable-next-line:no-submodule-imports\nimport throttle from 'lodash/throttle';\nimport { EarthMap } from './earthmap';\nimport { Map } from './map';\n\n/*\n * Adds the map's position to its page's location hash.\n * Passed as an option to the map object.\n *\n * @returns {Hash} `this`\n */\nclass Hash {\n private map: Map | EarthMap;\n private updateHash: () => number | void;\n private hashName?: string;\n\n constructor(hashName?: string) {\n this.hashName = hashName && encodeURIComponent(hashName);\n\n // Mobile Safari doesn't allow updating the hash more than 100 times per 30 seconds.\n this.updateHash = throttle(this.updateHashUnthrottled, (30 * 1000) / 100);\n }\n public addTo(map: Map | EarthMap) {\n this.map = map;\n window.addEventListener('hashchange', this.onHashChange, false);\n // @ts-ignore\n this.map.on('moveend', this.updateHash);\n return this;\n }\n public remove() {\n window.removeEventListener('hashchange', this.onHashChange, false);\n // @ts-ignore\n this.map.off('moveend', this.updateHash);\n // clearTimeout(this.updateHash());\n // @ts-ignore\n delete this.map;\n return this;\n }\n\n public onHashChange = () => {\n const loc = this.getCurrentHash();\n if (loc.length >= 3 && !loc.some((v: string) => isNaN(+v))) {\n const bearing =\n this.map.dragRotate.isEnabled() && this.map.touchZoomRotate.isEnabled()\n ? +(loc[3] || 0)\n : this.map.getBearing();\n this.map.jumpTo({\n center: [+loc[2], +loc[1]],\n zoom: +loc[0],\n bearing,\n pitch: +(loc[4] || 0),\n });\n return true;\n }\n return false;\n };\n\n private getCurrentHash = () => {\n // Get the current hash from location, stripped from its number sign\n const hash = window.location.hash.replace('#', '');\n if (this.hashName) {\n // Split the parameter-styled hash into parts and find the value we need\n let keyval;\n hash\n .split('&')\n .map((part) => part.split('='))\n .forEach((part) => {\n if (part[0] === this.hashName) {\n keyval = part;\n }\n });\n return (keyval ? keyval[1] || '' : '').split('/');\n }\n return hash.split('/');\n };\n\n private getHashString(mapFeedback?: boolean) {\n const center = this.map.getCenter();\n const zoom = Math.round(this.map.getZoom() * 100) / 100;\n // derived from equation: 512px * 2^z / 360 / 10^d < 0.5px\n const precision = Math.ceil(\n (zoom * Math.LN2 + Math.log(512 / 360 / 0.5)) / Math.LN10,\n );\n const m = Math.pow(10, precision);\n const lng = Math.round(center.lng * m) / m;\n const lat = Math.round(center.lat * m) / m;\n const bearing = this.map.getBearing();\n const pitch = this.map.getPitch();\n let hash = '';\n if (mapFeedback) {\n // new map feedback site has some constraints that don't allow\n // us to use the same hash format as we do for the Map hash option.\n hash += `/${lng}/${lat}/${zoom}`;\n } else {\n hash += `${zoom}/${lat}/${lng}`;\n }\n\n if (bearing || pitch) {\n hash += `/${Math.round(bearing * 10) / 10}`;\n }\n if (pitch) {\n hash += `/${Math.round(pitch)}`;\n }\n\n if (this.hashName) {\n const hashName = this.hashName;\n let found = false;\n const parts = window.location.hash\n .slice(1)\n .split('&')\n .map((part) => {\n const key = part.split('=')[0];\n if (key === hashName) {\n found = true;\n return `${key}=${hash}`;\n }\n return part;\n })\n .filter((a) => a);\n if (!found) {\n parts.push(`${hashName}=${hash}`);\n }\n return `#${parts.join('&')}`;\n }\n\n return `#${hash}`;\n }\n\n private updateHashUnthrottled = () => {\n const hash = this.getHashString();\n try {\n window.history.replaceState(window.history.state, '', hash);\n } catch (SecurityError) {\n // IE11 does not allow this if the page is within an iframe created\n // with iframe.contentWindow.document.write(...).\n // https://github.com/mapbox/mapbox-gl-js/issues/7410\n }\n };\n}\n\nexport default Hash;\n"],"file":"hash.js"}
package/lib/map.js CHANGED
@@ -48,13 +48,6 @@ function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflec
48
48
  function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }
49
49
 
50
50
  function loadStyles(css, doc) {
51
- var isMiniAli = typeof my !== 'undefined' && !!my && typeof my.showToast === 'function';
52
- var isWeChatMiniProgram = typeof wx !== 'undefined' && wx !== null && (typeof wx.request !== 'undefined' || typeof wx.miniProgram !== 'undefined');
53
-
54
- if (isMiniAli || isWeChatMiniProgram) {
55
- return;
56
- }
57
-
58
51
  if (!doc) doc = document;
59
52
 
60
53
  if (!doc) {
@@ -155,11 +148,7 @@ var Map = function (_Camera) {
155
148
  }
156
149
  });
157
150
 
158
- if (_l7Utils.isMini) {
159
- _this.initMiniContainer();
160
- } else {
161
- _this.initContainer();
162
- }
151
+ _this.initContainer();
163
152
 
164
153
  _this.resize();
165
154
 
@@ -171,12 +160,10 @@ var Map = function (_Camera) {
171
160
  window.addEventListener('orientationchange', _this.onWindowResize, false);
172
161
  }
173
162
 
174
- if (!_l7Utils.isMini) {
175
- var hashName = typeof options.hash === 'string' && options.hash || undefined;
163
+ var hashName = typeof options.hash === 'string' && options.hash || undefined;
176
164
 
177
- if (options.hash) {
178
- _this.hash = new _hash.default(hashName).addTo((0, _assertThisInitialized2.default)(_this));
179
- }
165
+ if (options.hash) {
166
+ _this.hash = new _hash.default(hashName).addTo((0, _assertThisInitialized2.default)(_this));
180
167
  }
181
168
 
182
169
  if (!_this.hash || !_this.hash.onHashChange()) {
@@ -206,23 +193,18 @@ var Map = function (_Camera) {
206
193
  var width = dimensions[0];
207
194
  var height = dimensions[1];
208
195
  this.transform.resize(width, height);
209
-
210
- if (!_l7Utils.isMini) {
211
- return this;
212
- }
213
-
214
196
  var fireMoving = !this.moving;
215
197
 
216
198
  if (fireMoving) {
217
199
  this.stop();
218
- this.emit('movestart', new _l7Utils.$window.Event('movestart', eventData));
219
- this.emit('move', new _l7Utils.$window.Event('move', eventData));
200
+ this.emit('movestart', new Event('movestart', eventData));
201
+ this.emit('move', new Event('move', eventData));
220
202
  }
221
203
 
222
- this.emit('resize', new _l7Utils.$window.Event('resize', eventData));
204
+ this.emit('resize', new Event('resize', eventData));
223
205
 
224
206
  if (fireMoving) {
225
- this.emit('moveend', new _l7Utils.$window.Event('moveend', eventData));
207
+ this.emit('moveend', new Event('moveend', eventData));
226
208
  }
227
209
 
228
210
  return this;
@@ -453,12 +435,6 @@ var Map = function (_Camera) {
453
435
  canvasContainer.classList.add('l7-interactive');
454
436
  }
455
437
  }
456
- }, {
457
- key: "initMiniContainer",
458
- value: function initMiniContainer() {
459
- this.container = this.options.canvas;
460
- this.canvasContainer = this.container;
461
- }
462
438
  }, {
463
439
  key: "containerDimensions",
464
440
  value: function containerDimensions() {
@@ -466,17 +442,21 @@ var Map = function (_Camera) {
466
442
  var height = 0;
467
443
 
468
444
  if (this.container) {
469
- if (_l7Utils.isMini) {
470
- width = this.container.width;
471
- height = this.container.height;
472
- } else {
473
- width = this.container.clientWidth;
474
- height = this.container.clientHeight;
475
- }
445
+ width = this.container.clientWidth || 400;
446
+ height = this.container.clientHeight || 300;
476
447
  }
477
448
 
478
449
  return [width, height];
479
450
  }
451
+ }, {
452
+ key: "resizeCanvas",
453
+ value: function resizeCanvas(width, height) {
454
+ var pixelRatio = _l7Utils.DOM.DPR || 1;
455
+ this.canvas.width = pixelRatio * width;
456
+ this.canvas.height = pixelRatio * height;
457
+ this.canvas.style.width = "".concat(width, "px");
458
+ this.canvas.style.height = "".concat(height, "px");
459
+ }
480
460
  }]);
481
461
  return Map;
482
462
  }(_camera.default);
package/lib/map.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"sources":["../src/map.ts"],"names":["defaultMinZoom","defaultMaxZoom","defaultMinPitch","defaultMaxPitch","DefaultOptions","hash","zoom","center","pitch","bearing","interactive","minZoom","maxZoom","minPitch","maxPitch","scrollZoom","boxZoom","dragRotate","dragPan","keyboard","doubleClickZoom","touchZoomRotate","touchPitch","bearingSnap","clickTolerance","pitchWithRotate","trackResize","renderWorldCopies","Map","options","TaskQueue","update","event","resize","originalEvent","isMini","initMiniContainer","initContainer","handlers","HandlerManager","window","addEventListener","onWindowOnline","onWindowResize","hashName","undefined","Hash","addTo","onHashChange","jumpTo","bounds","fitBounds","fitBoundsOptions","duration","eventData","dimensions","containerDimensions","width","height","transform","fireMoving","moving","stop","emit","$window","Event","container","canvas","canvasContainer","lngLat","locationPoint","LngLat","convert","point","pointLocation","Point","getBounds","getMaxBounds","setMaxBounds","LngLatBounds","style","getZoom","setZoom","Error","getPitch","setPitch","frame","cancel","renderTaskQueue","clear","cb","add","id","remove","paintStartTimeStamp","PerformanceUtils","time","run","document","getElementById","HTMLElement","classList","DOM","create","clientWidth","clientHeight","Camera"],"mappings":"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","sourcesContent":["import { $window, DOM, isMini } from '@antv/l7-utils';\nimport { merge } from 'lodash';\nimport Camera from './camera';\nimport './css/l7.css';\nimport LngLat, { LngLatLike } from './geo/lng_lat';\nimport LngLatBounds, { LngLatBoundsLike } from './geo/lng_lat_bounds';\n// @ts-ignore\nimport Point, { PointLike } from './geo/point';\nimport BoxZoomHandler from './handler/box_zoom';\nimport HandlerManager from './handler/handler_manager';\nimport KeyboardHandler from './handler/keyboard';\n\nimport ScrollZoomHandler from './handler/scroll_zoom';\nimport DoubleClickZoomHandler from './handler/shim/dblclick_zoom';\nimport DragPanHandler from './handler/shim/drag_pan';\nimport DragRotateHandler from './handler/shim/drag_rotate';\nimport TouchZoomRotateHandler from './handler/shim/touch_zoom_rotate';\nimport { TouchPitchHandler } from './handler/touch';\nimport Hash from './hash';\nimport { IMapOptions } from './interface';\nimport { renderframe } from './util';\nimport { PerformanceUtils } from './utils/performance';\nimport TaskQueue, { TaskID } from './utils/task_queue';\ntype CallBack = (_: number) => void;\nconst defaultMinZoom = -2;\nconst defaultMaxZoom = 22;\n\n// the default values, but also the valid range\nconst defaultMinPitch = 0;\nconst defaultMaxPitch = 60;\n\nconst DefaultOptions: IMapOptions = {\n hash: false,\n zoom: -1,\n center: [112, 32],\n pitch: 0,\n bearing: 0,\n interactive: true,\n minZoom: defaultMinZoom,\n maxZoom: defaultMaxZoom,\n minPitch: defaultMinPitch,\n maxPitch: defaultMaxPitch,\n scrollZoom: true,\n boxZoom: true,\n dragRotate: true,\n dragPan: true,\n keyboard: true,\n doubleClickZoom: true,\n touchZoomRotate: true,\n touchPitch: true,\n bearingSnap: 7,\n clickTolerance: 3,\n pitchWithRotate: true,\n trackResize: true,\n renderWorldCopies: true,\n};\nexport class Map extends Camera {\n public doubleClickZoom: DoubleClickZoomHandler;\n public dragRotate: DragRotateHandler;\n public dragPan: DragPanHandler;\n public touchZoomRotate: TouchZoomRotateHandler;\n public scrollZoom: ScrollZoomHandler;\n public keyboard: KeyboardHandler;\n public touchPitch: TouchPitchHandler;\n public boxZoom: BoxZoomHandler;\n public handlers: HandlerManager;\n\n private container: HTMLElement;\n private canvas: HTMLCanvasElement;\n private canvasContainer: HTMLElement;\n private renderTaskQueue: TaskQueue = new TaskQueue();\n private frame: { cancel: () => void } | null;\n private trackResize: boolean = true;\n private hash: Hash | undefined;\n constructor(options: Partial<IMapOptions>) {\n super(merge({}, DefaultOptions, options));\n if (isMini) {\n this.initMiniContainer();\n } else {\n this.initContainer();\n }\n\n this.resize();\n this.handlers = new HandlerManager(this, this.options);\n\n if (typeof window !== 'undefined') {\n window.addEventListener('online', this.onWindowOnline, false);\n window.addEventListener('resize', this.onWindowResize, false);\n window.addEventListener('orientationchange', this.onWindowResize, false);\n }\n\n if (!isMini) {\n const hashName =\n (typeof options.hash === 'string' && options.hash) || undefined;\n if (options.hash) {\n this.hash = new Hash(hashName).addTo(this) as Hash;\n }\n }\n\n // don't set position from options if set through hash\n if (!this.hash || !this.hash.onHashChange()) {\n this.jumpTo({\n center: options.center,\n zoom: options.zoom,\n bearing: options.bearing,\n pitch: options.pitch,\n });\n\n if (options.bounds) {\n this.resize();\n this.fitBounds(\n options.bounds,\n merge({}, options.fitBoundsOptions, { duration: 0 }),\n );\n }\n }\n }\n\n public resize(eventData?: any) {\n const dimensions = this.containerDimensions();\n const width = dimensions[0];\n const height = dimensions[1];\n\n this.transform.resize(width, height);\n if (!isMini) {\n return this;\n }\n const fireMoving = !this.moving;\n if (fireMoving) {\n this.stop();\n this.emit('movestart', new $window.Event('movestart', eventData));\n this.emit('move', new $window.Event('move', eventData));\n }\n\n this.emit('resize', new $window.Event('resize', eventData));\n\n if (fireMoving) {\n this.emit('moveend', new $window.Event('moveend', eventData));\n }\n\n return this;\n }\n\n public getContainer() {\n return this.container;\n }\n\n public getCanvas() {\n return this.canvas;\n }\n\n public getCanvasContainer() {\n return this.canvasContainer;\n }\n\n public project(lngLat: LngLatLike) {\n return this.transform.locationPoint(LngLat.convert(lngLat));\n }\n\n public unproject(point: PointLike) {\n return this.transform.pointLocation(Point.convert(point));\n }\n\n public getBounds(): LngLatBounds {\n return this.transform.getBounds();\n }\n\n public getMaxBounds(): LngLatBounds | null {\n return this.transform.getMaxBounds();\n }\n\n public setMaxBounds(bounds: LngLatBoundsLike) {\n this.transform.setMaxBounds(LngLatBounds.convert(bounds));\n }\n\n public setStyle(style: any) {\n return;\n }\n public setMinZoom(minZoom?: number) {\n minZoom =\n minZoom === null || minZoom === undefined ? defaultMinZoom : minZoom;\n if (minZoom >= defaultMinZoom && minZoom <= this.transform.maxZoom) {\n this.transform.minZoom = minZoom;\n if (this.getZoom() < minZoom) {\n this.setZoom(minZoom);\n }\n\n return this;\n } else {\n throw new Error(\n `minZoom must be between ${defaultMinZoom} and the current maxZoom, inclusive`,\n );\n }\n }\n\n public getMinZoom() {\n return this.transform.minZoom;\n }\n\n public setMaxZoom(maxZoom?: number) {\n maxZoom =\n maxZoom === null || maxZoom === undefined ? defaultMaxZoom : maxZoom;\n\n if (maxZoom >= this.transform.minZoom) {\n this.transform.maxZoom = maxZoom;\n if (this.getZoom() > maxZoom) {\n this.setZoom(maxZoom);\n }\n\n return this;\n } else {\n throw new Error('maxZoom must be greater than the current minZoom');\n }\n }\n public getMaxZoom() {\n return this.transform.maxZoom;\n }\n\n public setMinPitch(minPitch?: number) {\n minPitch =\n minPitch === null || minPitch === undefined ? defaultMinPitch : minPitch;\n\n if (minPitch < defaultMinPitch) {\n throw new Error(\n `minPitch must be greater than or equal to ${defaultMinPitch}`,\n );\n }\n\n if (minPitch >= defaultMinPitch && minPitch <= this.transform.maxPitch) {\n this.transform.minPitch = minPitch;\n if (this.getPitch() < minPitch) {\n this.setPitch(minPitch);\n }\n\n return this;\n } else {\n throw new Error(\n `minPitch must be between ${defaultMinPitch} and the current maxPitch, inclusive`,\n );\n }\n }\n\n public getMinPitch() {\n return this.transform.minPitch;\n }\n\n public setMaxPitch(maxPitch?: number) {\n maxPitch =\n maxPitch === null || maxPitch === undefined ? defaultMaxPitch : maxPitch;\n\n if (maxPitch > defaultMaxPitch) {\n throw new Error(\n `maxPitch must be less than or equal to ${defaultMaxPitch}`,\n );\n }\n\n if (maxPitch >= this.transform.minPitch) {\n this.transform.maxPitch = maxPitch;\n if (this.getPitch() > maxPitch) {\n this.setPitch(maxPitch);\n }\n\n return this;\n } else {\n throw new Error('maxPitch must be greater than the current minPitch');\n }\n }\n\n public getMaxPitch() {\n return this.transform.maxPitch;\n }\n\n public getRenderWorldCopies() {\n return this.transform.renderWorldCopies;\n }\n\n public setRenderWorldCopies(renderWorldCopies?: boolean) {\n this.transform.renderWorldCopies = !!renderWorldCopies;\n }\n\n public remove() {\n if (this.frame) {\n this.frame.cancel();\n this.frame = null;\n }\n this.renderTaskQueue.clear();\n }\n\n public requestRenderFrame(cb: CallBack): TaskID {\n this.update();\n return this.renderTaskQueue.add(cb);\n }\n\n public cancelRenderFrame(id: TaskID) {\n return this.renderTaskQueue.remove(id);\n }\n\n public triggerRepaint() {\n if (!this.frame) {\n this.frame = renderframe((paintStartTimeStamp: number) => {\n PerformanceUtils.frame(paintStartTimeStamp);\n this.frame = null;\n this.update(paintStartTimeStamp);\n });\n }\n }\n\n public update(time?: number) {\n if (!this.frame) {\n this.frame = renderframe((paintStartTimeStamp: number) => {\n PerformanceUtils.frame(paintStartTimeStamp);\n this.frame = null;\n this.renderTaskQueue.run(time);\n });\n }\n }\n\n private initContainer() {\n if (typeof this.options.container === 'string') {\n this.container = window.document.getElementById(\n this.options.container,\n ) as HTMLElement;\n if (!this.container) {\n throw new Error(`Container '${this.options.container}' not found.`);\n }\n } else if (this.options.container instanceof HTMLElement) {\n this.container = this.options.container;\n } else {\n throw new Error(\n \"Invalid type: 'container' must be a String or HTMLElement.\",\n );\n }\n\n const container = this.container;\n container.classList.add('l7-map');\n\n const canvasContainer = (this.canvasContainer = DOM.create(\n 'div',\n 'l7-canvas-container',\n container,\n ));\n if (this.options.interactive) {\n canvasContainer.classList.add('l7-interactive');\n }\n }\n\n /**\n * 小程序环境构建容器\n */\n private initMiniContainer() {\n this.container = this.options.canvas as HTMLCanvasElement;\n this.canvasContainer = this.container;\n }\n\n private containerDimensions(): [number, number] {\n let width = 0;\n let height = 0;\n if (this.container) {\n if (isMini) {\n width = (this.container as HTMLCanvasElement).width;\n height = (this.container as HTMLCanvasElement).height;\n } else {\n width = this.container.clientWidth;\n height = this.container.clientHeight;\n }\n }\n return [width, height];\n }\n\n private onWindowOnline = () => {\n this.update();\n };\n\n private onWindowResize = (event: Event) => {\n if (this.trackResize) {\n this.resize({ originalEvent: event }).update();\n }\n };\n}\n"],"file":"map.js"}
1
+ {"version":3,"sources":["../src/map.ts"],"names":["defaultMinZoom","defaultMaxZoom","defaultMinPitch","defaultMaxPitch","DefaultOptions","hash","zoom","center","pitch","bearing","interactive","minZoom","maxZoom","minPitch","maxPitch","scrollZoom","boxZoom","dragRotate","dragPan","keyboard","doubleClickZoom","touchZoomRotate","touchPitch","bearingSnap","clickTolerance","pitchWithRotate","trackResize","renderWorldCopies","Map","options","TaskQueue","update","event","resize","originalEvent","initContainer","handlers","HandlerManager","window","addEventListener","onWindowOnline","onWindowResize","hashName","undefined","Hash","addTo","onHashChange","jumpTo","bounds","fitBounds","fitBoundsOptions","duration","eventData","dimensions","containerDimensions","width","height","transform","fireMoving","moving","stop","emit","Event","container","canvas","canvasContainer","lngLat","locationPoint","LngLat","convert","point","pointLocation","Point","getBounds","getMaxBounds","setMaxBounds","LngLatBounds","style","getZoom","setZoom","Error","getPitch","setPitch","frame","cancel","renderTaskQueue","clear","cb","add","id","remove","paintStartTimeStamp","PerformanceUtils","time","run","document","getElementById","HTMLElement","classList","DOM","create","clientWidth","clientHeight","pixelRatio","DPR","Camera"],"mappings":"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","sourcesContent":["import { DOM } from '@antv/l7-utils';\nimport { merge } from 'lodash';\nimport Camera from './camera';\nimport './css/l7.css';\nimport LngLat, { LngLatLike } from './geo/lng_lat';\nimport LngLatBounds, { LngLatBoundsLike } from './geo/lng_lat_bounds';\n// @ts-ignore\nimport Point, { PointLike } from './geo/point';\nimport BoxZoomHandler from './handler/box_zoom';\nimport HandlerManager from './handler/handler_manager';\nimport KeyboardHandler from './handler/keyboard';\n\nimport ScrollZoomHandler from './handler/scroll_zoom';\nimport DoubleClickZoomHandler from './handler/shim/dblclick_zoom';\nimport DragPanHandler from './handler/shim/drag_pan';\nimport DragRotateHandler from './handler/shim/drag_rotate';\nimport TouchZoomRotateHandler from './handler/shim/touch_zoom_rotate';\nimport { TouchPitchHandler } from './handler/touch';\nimport Hash from './hash';\nimport { IMapOptions } from './interface';\nimport { renderframe } from './util';\nimport { PerformanceUtils } from './utils/performance';\nimport TaskQueue, { TaskID } from './utils/task_queue';\ntype CallBack = (_: number) => void;\nconst defaultMinZoom = -2;\nconst defaultMaxZoom = 22;\n\n// the default values, but also the valid range\nconst defaultMinPitch = 0;\nconst defaultMaxPitch = 60;\n\nconst DefaultOptions: IMapOptions = {\n hash: false,\n zoom: -1,\n center: [112, 32],\n pitch: 0,\n bearing: 0,\n interactive: true,\n minZoom: defaultMinZoom,\n maxZoom: defaultMaxZoom,\n minPitch: defaultMinPitch,\n maxPitch: defaultMaxPitch,\n scrollZoom: true,\n boxZoom: true,\n dragRotate: true,\n dragPan: true,\n keyboard: true,\n doubleClickZoom: true,\n touchZoomRotate: true,\n touchPitch: true,\n bearingSnap: 7,\n clickTolerance: 3,\n pitchWithRotate: true,\n trackResize: true,\n renderWorldCopies: true,\n};\nexport class Map extends Camera {\n public doubleClickZoom: DoubleClickZoomHandler;\n public dragRotate: DragRotateHandler;\n public dragPan: DragPanHandler;\n public touchZoomRotate: TouchZoomRotateHandler;\n public scrollZoom: ScrollZoomHandler;\n public keyboard: KeyboardHandler;\n public touchPitch: TouchPitchHandler;\n public boxZoom: BoxZoomHandler;\n public handlers: HandlerManager;\n\n private container: HTMLElement;\n private canvas: HTMLCanvasElement;\n private canvasContainer: HTMLElement;\n private renderTaskQueue: TaskQueue = new TaskQueue();\n private frame: { cancel: () => void } | null;\n private trackResize: boolean = true;\n private hash: Hash | undefined;\n constructor(options: Partial<IMapOptions>) {\n super(merge({}, DefaultOptions, options));\n this.initContainer();\n this.resize();\n this.handlers = new HandlerManager(this, this.options);\n // this.on('move', () => this.update());\n // this.on('moveend', () => this.update());\n // this.on('zoom', () => {\n // console.log('zoom');\n // });\n\n if (typeof window !== 'undefined') {\n window.addEventListener('online', this.onWindowOnline, false);\n window.addEventListener('resize', this.onWindowResize, false);\n window.addEventListener('orientationchange', this.onWindowResize, false);\n }\n\n const hashName =\n (typeof options.hash === 'string' && options.hash) || undefined;\n if (options.hash) {\n this.hash = new Hash(hashName).addTo(this) as Hash;\n }\n\n // don't set position from options if set through hash\n if (!this.hash || !this.hash.onHashChange()) {\n this.jumpTo({\n center: options.center,\n zoom: options.zoom,\n bearing: options.bearing,\n pitch: options.pitch,\n });\n\n if (options.bounds) {\n this.resize();\n this.fitBounds(\n options.bounds,\n merge({}, options.fitBoundsOptions, { duration: 0 }),\n );\n }\n }\n }\n\n public resize(eventData?: any) {\n const dimensions = this.containerDimensions();\n const width = dimensions[0];\n const height = dimensions[1];\n\n // this.resizeCanvas(width, height);\n this.transform.resize(width, height);\n const fireMoving = !this.moving;\n if (fireMoving) {\n this.stop();\n this.emit('movestart', new Event('movestart', eventData));\n this.emit('move', new Event('move', eventData));\n }\n\n this.emit('resize', new Event('resize', eventData));\n\n if (fireMoving) {\n this.emit('moveend', new Event('moveend', eventData));\n }\n\n return this;\n }\n\n public getContainer() {\n return this.container;\n }\n\n public getCanvas() {\n return this.canvas;\n }\n\n public getCanvasContainer() {\n return this.canvasContainer;\n }\n\n public project(lngLat: LngLatLike) {\n return this.transform.locationPoint(LngLat.convert(lngLat));\n }\n\n public unproject(point: PointLike) {\n return this.transform.pointLocation(Point.convert(point));\n }\n\n public getBounds(): LngLatBounds {\n return this.transform.getBounds();\n }\n\n public getMaxBounds(): LngLatBounds | null {\n return this.transform.getMaxBounds();\n }\n\n public setMaxBounds(bounds: LngLatBoundsLike) {\n this.transform.setMaxBounds(LngLatBounds.convert(bounds));\n }\n\n public setStyle(style: any) {\n return;\n }\n public setMinZoom(minZoom?: number) {\n minZoom =\n minZoom === null || minZoom === undefined ? defaultMinZoom : minZoom;\n if (minZoom >= defaultMinZoom && minZoom <= this.transform.maxZoom) {\n this.transform.minZoom = minZoom;\n if (this.getZoom() < minZoom) {\n this.setZoom(minZoom);\n }\n\n return this;\n } else {\n throw new Error(\n `minZoom must be between ${defaultMinZoom} and the current maxZoom, inclusive`,\n );\n }\n }\n\n public getMinZoom() {\n return this.transform.minZoom;\n }\n\n public setMaxZoom(maxZoom?: number) {\n maxZoom =\n maxZoom === null || maxZoom === undefined ? defaultMaxZoom : maxZoom;\n\n if (maxZoom >= this.transform.minZoom) {\n this.transform.maxZoom = maxZoom;\n if (this.getZoom() > maxZoom) {\n this.setZoom(maxZoom);\n }\n\n return this;\n } else {\n throw new Error('maxZoom must be greater than the current minZoom');\n }\n }\n public getMaxZoom() {\n return this.transform.maxZoom;\n }\n\n public setMinPitch(minPitch?: number) {\n minPitch =\n minPitch === null || minPitch === undefined ? defaultMinPitch : minPitch;\n\n if (minPitch < defaultMinPitch) {\n throw new Error(\n `minPitch must be greater than or equal to ${defaultMinPitch}`,\n );\n }\n\n if (minPitch >= defaultMinPitch && minPitch <= this.transform.maxPitch) {\n this.transform.minPitch = minPitch;\n if (this.getPitch() < minPitch) {\n this.setPitch(minPitch);\n }\n\n return this;\n } else {\n throw new Error(\n `minPitch must be between ${defaultMinPitch} and the current maxPitch, inclusive`,\n );\n }\n }\n\n public getMinPitch() {\n return this.transform.minPitch;\n }\n\n public setMaxPitch(maxPitch?: number) {\n maxPitch =\n maxPitch === null || maxPitch === undefined ? defaultMaxPitch : maxPitch;\n\n if (maxPitch > defaultMaxPitch) {\n throw new Error(\n `maxPitch must be less than or equal to ${defaultMaxPitch}`,\n );\n }\n\n if (maxPitch >= this.transform.minPitch) {\n this.transform.maxPitch = maxPitch;\n if (this.getPitch() > maxPitch) {\n this.setPitch(maxPitch);\n }\n\n return this;\n } else {\n throw new Error('maxPitch must be greater than the current minPitch');\n }\n }\n\n public getMaxPitch() {\n return this.transform.maxPitch;\n }\n\n public getRenderWorldCopies() {\n return this.transform.renderWorldCopies;\n }\n\n public setRenderWorldCopies(renderWorldCopies?: boolean) {\n this.transform.renderWorldCopies = !!renderWorldCopies;\n }\n\n public remove() {\n if (this.frame) {\n this.frame.cancel();\n this.frame = null;\n }\n this.renderTaskQueue.clear();\n }\n\n public requestRenderFrame(cb: CallBack): TaskID {\n this.update();\n return this.renderTaskQueue.add(cb);\n }\n\n public cancelRenderFrame(id: TaskID) {\n return this.renderTaskQueue.remove(id);\n }\n\n public triggerRepaint() {\n if (!this.frame) {\n this.frame = renderframe((paintStartTimeStamp: number) => {\n PerformanceUtils.frame(paintStartTimeStamp);\n this.frame = null;\n this.update(paintStartTimeStamp);\n });\n }\n }\n\n public update(time?: number) {\n if (!this.frame) {\n this.frame = renderframe((paintStartTimeStamp: number) => {\n PerformanceUtils.frame(paintStartTimeStamp);\n this.frame = null;\n this.renderTaskQueue.run(time);\n });\n }\n }\n\n private initContainer() {\n if (typeof this.options.container === 'string') {\n this.container = window.document.getElementById(\n this.options.container,\n ) as HTMLElement;\n if (!this.container) {\n throw new Error(`Container '${this.options.container}' not found.`);\n }\n } else if (this.options.container instanceof HTMLElement) {\n this.container = this.options.container;\n } else {\n throw new Error(\n \"Invalid type: 'container' must be a String or HTMLElement.\",\n );\n }\n\n const container = this.container;\n container.classList.add('l7-map');\n\n const canvasContainer = (this.canvasContainer = DOM.create(\n 'div',\n 'l7-canvas-container',\n container,\n ));\n if (this.options.interactive) {\n canvasContainer.classList.add('l7-interactive');\n }\n\n // this.canvas = DOM.create(\n // 'canvas',\n // 'l7-canvas',\n // canvasContainer,\n // ) as HTMLCanvasElement;\n // this.canvas.setAttribute('tabindex', '-');\n // this.canvas.setAttribute('aria-label', 'Map');\n }\n\n private containerDimensions(): [number, number] {\n let width = 0;\n let height = 0;\n if (this.container) {\n width = this.container.clientWidth || 400;\n height = this.container.clientHeight || 300;\n }\n return [width, height];\n }\n\n private resizeCanvas(width: number, height: number) {\n const pixelRatio = DOM.DPR || 1;\n this.canvas.width = pixelRatio * width;\n this.canvas.height = pixelRatio * height;\n\n // Maintain the same canvas size, potentially downscaling it for HiDPI displays\n this.canvas.style.width = `${width}px`;\n this.canvas.style.height = `${height}px`;\n }\n\n private onWindowOnline = () => {\n this.update();\n };\n\n private onWindowResize = (event: Event) => {\n if (this.trackResize) {\n this.resize({ originalEvent: event }).update();\n }\n };\n}\n"],"file":"map.js"}
package/lib/util.js CHANGED
@@ -5,16 +5,17 @@ var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefau
5
5
  Object.defineProperty(exports, "__esModule", {
6
6
  value: true
7
7
  });
8
- exports.wrap = wrap;
8
+ exports.bezier = bezier;
9
+ exports.cancel = void 0;
9
10
  exports.clamp = clamp;
11
+ exports.ease = void 0;
10
12
  exports.interpolate = interpolate;
11
- exports.bezier = bezier;
12
- exports.prefersReducedMotion = prefersReducedMotion;
13
+ exports.now = void 0;
13
14
  exports.pick = pick;
15
+ exports.prefersReducedMotion = prefersReducedMotion;
16
+ exports.raf = void 0;
14
17
  exports.renderframe = renderframe;
15
- exports.cancel = exports.raf = exports.now = exports.ease = void 0;
16
-
17
- var _l7Utils = require("@antv/l7-utils");
18
+ exports.wrap = wrap;
18
19
 
19
20
  var _unitbezier = _interopRequireDefault(require("@mapbox/unitbezier"));
20
21
 
@@ -51,12 +52,12 @@ var ease = bezier(0.25, 0.1, 0.25, 1);
51
52
  exports.ease = ease;
52
53
 
53
54
  function prefersReducedMotion() {
54
- if (_l7Utils.isMini || !_l7Utils.$window.matchMedia) {
55
+ if (!window.matchMedia) {
55
56
  return false;
56
57
  }
57
58
 
58
59
  if (reducedMotionQuery == null) {
59
- reducedMotionQuery = _l7Utils.$window.matchMedia('(prefers-reduced-motion: reduce)');
60
+ reducedMotionQuery = window.matchMedia('(prefers-reduced-motion: reduce)');
60
61
  }
61
62
 
62
63
  return reducedMotionQuery.matches;
@@ -85,12 +86,12 @@ function pick(src, properties) {
85
86
  return result;
86
87
  }
87
88
 
88
- var now = _l7Utils.isMini ? Date.now.bind(Date) : _l7Utils.$window.performance && _l7Utils.$window.performance.now ? _l7Utils.$window.performance.now.bind(_l7Utils.$window.performance) : Date.now.bind(Date);
89
+ var now = window.performance && window.performance.now ? window.performance.now.bind(window.performance) : Date.now.bind(Date);
89
90
  exports.now = now;
90
- var raf = _l7Utils.$window.requestAnimationFrame || _l7Utils.$window.mozRequestAnimationFrame || _l7Utils.$window.webkitRequestAnimationFrame || _l7Utils.$window.msRequestAnimationFrame;
91
+ var raf = window.requestAnimationFrame || window.mozRequestAnimationFrame || window.webkitRequestAnimationFrame || window.msRequestAnimationFrame;
91
92
  exports.raf = raf;
92
93
 
93
- var _cancel = _l7Utils.$window.cancelAnimationFrame || _l7Utils.$window.mozCancelAnimationFrame || _l7Utils.$window.webkitCancelAnimationFrame || _l7Utils.$window.msCancelAnimationFrame;
94
+ var _cancel = window.cancelAnimationFrame || window.mozCancelAnimationFrame || window.webkitCancelAnimationFrame || window.msCancelAnimationFrame;
94
95
 
95
96
  exports.cancel = _cancel;
96
97
 
package/lib/util.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"sources":["../src/util.ts"],"names":["reducedMotionQuery","wrap","n","min","max","d","w","clamp","Math","interpolate","a","b","t","bezier","p1x","p1y","p2x","p2y","bez","UnitBezier","solve","ease","prefersReducedMotion","isMini","$window","matchMedia","matches","pick","src","properties","result","name","now","Date","bind","performance","raf","requestAnimationFrame","mozRequestAnimationFrame","webkitRequestAnimationFrame","msRequestAnimationFrame","cancel","cancelAnimationFrame","mozCancelAnimationFrame","webkitCancelAnimationFrame","msCancelAnimationFrame","renderframe","fn","frame"],"mappings":"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","sourcesContent":["import { $window, isMini } from '@antv/l7-utils';\n// @ts-ignore\nimport UnitBezier from '@mapbox/unitbezier';\nlet reducedMotionQuery: MediaQueryList;\nexport interface ICancelable {\n cancel: () => void;\n}\nexport function wrap(n: number, min: number, max: number): number {\n const d = max - min;\n const w = ((((n - min) % d) + d) % d) + min;\n return w === min ? max : w;\n}\n\nexport function clamp(n: number, min: number, max: number): number {\n return Math.min(max, Math.max(min, n));\n}\n\nexport function interpolate(a: number, b: number, t: number) {\n return a * (1 - t) + b * t;\n}\nexport function bezier(\n p1x: number,\n p1y: number,\n p2x: number,\n p2y: number,\n): (t: number) => number {\n const bez = new UnitBezier(p1x, p1y, p2x, p2y);\n return (t: number) => {\n return bez.solve(t);\n };\n}\n\nexport const ease = bezier(0.25, 0.1, 0.25, 1);\n\nexport function prefersReducedMotion(): boolean {\n // @ts-ignore\n if (isMini || !$window.matchMedia) {\n return false;\n }\n // Lazily initialize media query\n if (reducedMotionQuery == null) {\n // @ts-ignore\n reducedMotionQuery = $window.matchMedia('(prefers-reduced-motion: reduce)');\n }\n return reducedMotionQuery.matches;\n}\n\nexport function pick(\n src: { [key: string]: any },\n properties: string[],\n): { [key: string]: any } {\n const result: { [key: string]: any } = {};\n for (const name of properties) {\n if (name in src) {\n result[name] = src[name];\n }\n }\n return result;\n}\n\nexport const now = isMini\n ? Date.now.bind(Date)\n : $window.performance && $window.performance.now\n ? $window.performance.now.bind($window.performance)\n : Date.now.bind(Date);\n\nexport const raf =\n $window.requestAnimationFrame ||\n // @ts-ignore\n $window.mozRequestAnimationFrame ||\n // @ts-ignore\n $window.webkitRequestAnimationFrame ||\n // @ts-ignore\n $window.msRequestAnimationFrame;\n\nexport const cancel =\n $window.cancelAnimationFrame ||\n // @ts-ignore\n $window.mozCancelAnimationFrame ||\n // @ts-ignore\n $window.webkitCancelAnimationFrame ||\n // @ts-ignore\n $window.msCancelAnimationFrame;\n\nexport function renderframe(\n fn: (paintStartTimestamp: number) => void,\n): ICancelable {\n const frame = raf(fn);\n return { cancel: () => cancel(frame) };\n}\n"],"file":"util.js"}
1
+ {"version":3,"sources":["../src/util.ts"],"names":["reducedMotionQuery","wrap","n","min","max","d","w","clamp","Math","interpolate","a","b","t","bezier","p1x","p1y","p2x","p2y","bez","UnitBezier","solve","ease","prefersReducedMotion","window","matchMedia","matches","pick","src","properties","result","name","now","performance","bind","Date","raf","requestAnimationFrame","mozRequestAnimationFrame","webkitRequestAnimationFrame","msRequestAnimationFrame","cancel","cancelAnimationFrame","mozCancelAnimationFrame","webkitCancelAnimationFrame","msCancelAnimationFrame","renderframe","fn","frame"],"mappings":"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","sourcesContent":["// @ts-ignore\nimport UnitBezier from '@mapbox/unitbezier';\nlet reducedMotionQuery: MediaQueryList;\nexport interface ICancelable {\n cancel: () => void;\n}\nexport function wrap(n: number, min: number, max: number): number {\n const d = max - min;\n const w = ((((n - min) % d) + d) % d) + min;\n return w === min ? max : w;\n}\n\nexport function clamp(n: number, min: number, max: number): number {\n return Math.min(max, Math.max(min, n));\n}\n\nexport function interpolate(a: number, b: number, t: number) {\n return a * (1 - t) + b * t;\n}\nexport function bezier(\n p1x: number,\n p1y: number,\n p2x: number,\n p2y: number,\n): (t: number) => number {\n const bez = new UnitBezier(p1x, p1y, p2x, p2y);\n return (t: number) => {\n return bez.solve(t);\n };\n}\n\nexport const ease = bezier(0.25, 0.1, 0.25, 1);\n\nexport function prefersReducedMotion(): boolean {\n if (!window.matchMedia) {\n return false;\n }\n // Lazily initialize media query\n if (reducedMotionQuery == null) {\n reducedMotionQuery = window.matchMedia('(prefers-reduced-motion: reduce)');\n }\n return reducedMotionQuery.matches;\n}\n\nexport function pick(\n src: { [key: string]: any },\n properties: string[],\n): { [key: string]: any } {\n const result: { [key: string]: any } = {};\n for (const name of properties) {\n if (name in src) {\n result[name] = src[name];\n }\n }\n return result;\n}\n\nexport const now =\n window.performance && window.performance.now\n ? window.performance.now.bind(window.performance)\n : Date.now.bind(Date);\n\nexport const raf =\n window.requestAnimationFrame ||\n // @ts-ignore\n window.mozRequestAnimationFrame ||\n // @ts-ignore\n window.webkitRequestAnimationFrame ||\n // @ts-ignore\n window.msRequestAnimationFrame;\n\nexport const cancel =\n window.cancelAnimationFrame ||\n // @ts-ignore\n window.mozCancelAnimationFrame ||\n // @ts-ignore\n window.webkitCancelAnimationFrame ||\n // @ts-ignore\n window.msCancelAnimationFrame;\n\nexport function renderframe(\n fn: (paintStartTimestamp: number) => void,\n): ICancelable {\n const frame = raf(fn);\n return { cancel: () => cancel(frame) };\n}\n"],"file":"util.js"}