@mapbox/react-map-gl
Version:
A React wrapper for MapboxGL-js and overlay API.
119 lines (103 loc) • 4.15 kB
JavaScript
import _classCallCheck from "@babel/runtime/helpers/esm/classCallCheck";
import _createClass from "@babel/runtime/helpers/esm/createClass";
import _possibleConstructorReturn from "@babel/runtime/helpers/esm/possibleConstructorReturn";
import _getPrototypeOf from "@babel/runtime/helpers/esm/getPrototypeOf";
import _assertThisInitialized from "@babel/runtime/helpers/esm/assertThisInitialized";
import _inherits from "@babel/runtime/helpers/esm/inherits";
import _defineProperty from "@babel/runtime/helpers/esm/defineProperty";
// Copyright (c) 2015 Uber Technologies, Inc.
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.
import { createElement } from 'react';
import PropTypes from 'prop-types';
import BaseControl from '../components/base-control';
import { window } from '../utils/globals';
var propTypes = Object.assign({}, BaseControl.propTypes, {
redraw: PropTypes.func.isRequired
});
var defaultProps = {
captureScroll: false,
captureDrag: false,
captureClick: false,
captureDoubleClick: false
};
var CanvasOverlay =
/*#__PURE__*/
function (_BaseControl) {
_inherits(CanvasOverlay, _BaseControl);
function CanvasOverlay(props) {
var _this;
_classCallCheck(this, CanvasOverlay);
_this = _possibleConstructorReturn(this, _getPrototypeOf(CanvasOverlay).call(this, props));
_defineProperty(_assertThisInitialized(_this), "_redraw", function () {
var ctx = _this._ctx;
if (!ctx) {
return;
}
var pixelRatio = window.devicePixelRatio || 1;
ctx.save();
ctx.scale(pixelRatio, pixelRatio);
var _this$_context = _this._context,
viewport = _this$_context.viewport,
isDragging = _this$_context.isDragging;
_this.props.redraw({
width: viewport.width,
height: viewport.height,
ctx: ctx,
isDragging: isDragging,
project: viewport.project.bind(viewport),
unproject: viewport.unproject.bind(viewport)
});
ctx.restore();
});
return _this;
}
_createClass(CanvasOverlay, [{
key: "componentDidMount",
value: function componentDidMount() {
this._canvas = this._containerRef.current;
this._ctx = this._canvas.getContext('2d');
this._redraw();
}
}, {
key: "_render",
value: function _render() {
var pixelRatio = window.devicePixelRatio || 1;
var _this$_context$viewpo = this._context.viewport,
width = _this$_context$viewpo.width,
height = _this$_context$viewpo.height;
this._redraw();
return createElement('canvas', {
ref: this._containerRef,
width: width * pixelRatio,
height: height * pixelRatio,
style: {
width: "".concat(width, "px"),
height: "".concat(height, "px"),
position: 'absolute',
left: 0,
top: 0
}
});
}
}]);
return CanvasOverlay;
}(BaseControl);
export { CanvasOverlay as default };
CanvasOverlay.displayName = 'CanvasOverlay';
CanvasOverlay.propTypes = propTypes;
CanvasOverlay.defaultProps = defaultProps;
//# sourceMappingURL=canvas-overlay.js.map