@mapbox/react-map-gl
Version:
A React wrapper for MapboxGL-js and overlay API.
80 lines (74 loc) • 3.11 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 _inherits from "@babel/runtime/helpers/esm/inherits";
// 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';
var propTypes = Object.assign({}, BaseControl.propTypes, {
redraw: PropTypes.func.isRequired,
style: PropTypes.object
});
var defaultProps = {
captureScroll: false,
captureDrag: false,
captureClick: false,
captureDoubleClick: false
};
var HTMLOverlay =
/*#__PURE__*/
function (_BaseControl) {
_inherits(HTMLOverlay, _BaseControl);
function HTMLOverlay() {
_classCallCheck(this, HTMLOverlay);
return _possibleConstructorReturn(this, _getPrototypeOf(HTMLOverlay).apply(this, arguments));
}
_createClass(HTMLOverlay, [{
key: "_render",
value: function _render() {
var _this$_context = this._context,
viewport = _this$_context.viewport,
isDragging = _this$_context.isDragging;
var style = Object.assign({
position: 'absolute',
left: 0,
top: 0,
width: viewport.width,
height: viewport.height
}, this.props.style);
return createElement('div', {
ref: this._containerRef,
style: style
}, this.props.redraw({
width: viewport.width,
height: viewport.height,
isDragging: isDragging,
project: viewport.project.bind(viewport),
unproject: viewport.unproject.bind(viewport)
}));
}
}]);
return HTMLOverlay;
}(BaseControl);
export { HTMLOverlay as default };
HTMLOverlay.displayName = 'HTMLOverlay';
HTMLOverlay.propTypes = propTypes;
HTMLOverlay.defaultProps = defaultProps;
//# sourceMappingURL=html-overlay.js.map