12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- "use strict";
- var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
- var _possibleConstructorReturn2 = _interopRequireDefault(require("@babel/runtime/helpers/possibleConstructorReturn"));
- var _getPrototypeOf2 = _interopRequireDefault(require("@babel/runtime/helpers/getPrototypeOf"));
- var _inheritsLoose2 = _interopRequireDefault(require("@babel/runtime/helpers/inheritsLoose"));
- function _createSuper(Derived) { return function () { var Super = (0, _getPrototypeOf2["default"])(Derived), result; if (_isNativeReflectConstruct()) { var NewTarget = (0, _getPrototypeOf2["default"])(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return (0, _possibleConstructorReturn2["default"])(this, result); }; }
- function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }
- var Util = require('../../util/common');
- var GuideBase = require('./base');
- var Point = /*#__PURE__*/function (_GuideBase) {
- (0, _inheritsLoose2["default"])(Point, _GuideBase);
- var _super = _createSuper(Point);
- function Point() {
- return _GuideBase.apply(this, arguments) || this;
- }
- var _proto = Point.prototype;
- _proto._initDefaultCfg = function _initDefaultCfg() {
- this.type = 'point';
- this.position = null;
- this.offsetX = 0;
- this.offsetY = 0;
- this.style = {
- fill: '#1890FF',
- r: 3,
- lineWidth: 1,
- stroke: '#fff'
- };
- };
- _proto.render = function render(coord, container) {
- var position = this.parsePoint(coord, this.position);
- if (!position) return null;
- var shape = container.addShape('Circle', {
- className: 'guide-point',
- attrs: Util.mix({
- x: position.x + this.offsetX,
- y: position.y + this.offsetY
- }, this.style)
- });
- this.element = shape;
- return shape;
- };
- return Point;
- }(GuideBase);
- GuideBase.Point = Point;
- module.exports = Point;
|