@mapbox/react-map-gl
Version:
A React wrapper for MapboxGL-js and overlay API.
121 lines (107 loc) • 4.75 kB
JavaScript
import _slicedToArray from "@babel/runtime/helpers/esm/slicedToArray";
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";
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 DraggableControl from './draggable-control';
var propTypes = Object.assign({}, DraggableControl.propTypes, {
// Custom className
className: PropTypes.string,
// Longitude of the anchor point
longitude: PropTypes.number.isRequired,
// Latitude of the anchor point
latitude: PropTypes.number.isRequired
});
var defaultProps = Object.assign({}, DraggableControl.defaultProps, {
className: '',
offsetLeft: 0,
offsetTop: 0
});
/*
* PureComponent doesn't update when context changes.
* The only way is to implement our own shouldComponentUpdate here. Considering
* the parent component (StaticMap or InteractiveMap) is pure, and map re-render
* is almost always triggered by a viewport change, we almost definitely need to
* recalculate the marker's position when the parent re-renders.
*/
var Marker =
/*#__PURE__*/
function (_DraggableControl) {
_inherits(Marker, _DraggableControl);
function Marker() {
_classCallCheck(this, Marker);
return _possibleConstructorReturn(this, _getPrototypeOf(Marker).apply(this, arguments));
}
_createClass(Marker, [{
key: "_getPosition",
value: function _getPosition() {
var _this$props = this.props,
longitude = _this$props.longitude,
latitude = _this$props.latitude,
offsetLeft = _this$props.offsetLeft,
offsetTop = _this$props.offsetTop;
var _this$state = this.state,
dragPos = _this$state.dragPos,
dragOffset = _this$state.dragOffset; // If dragging, just return the current drag position
if (dragPos) {
return this._getDraggedPosition(dragPos, dragOffset);
} // Otherwise return the projected lat/lng with offset
var _this$_context$viewpo = this._context.viewport.project([longitude, latitude]),
_this$_context$viewpo2 = _slicedToArray(_this$_context$viewpo, 2),
x = _this$_context$viewpo2[0],
y = _this$_context$viewpo2[1];
x += offsetLeft;
y += offsetTop;
return [x, y];
}
}, {
key: "_render",
value: function _render() {
var _this$props2 = this.props,
className = _this$props2.className,
draggable = _this$props2.draggable;
var dragPos = this.state.dragPos;
var _this$_getPosition = this._getPosition(),
_this$_getPosition2 = _slicedToArray(_this$_getPosition, 2),
x = _this$_getPosition2[0],
y = _this$_getPosition2[1];
var containerStyle = {
position: 'absolute',
left: x,
top: y,
cursor: draggable ? dragPos ? 'grabbing' : 'grab' : 'auto'
};
return createElement('div', {
className: "mapboxgl-marker ".concat(className),
ref: this._containerRef,
style: containerStyle,
children: this.props.children
});
}
}]);
return Marker;
}(DraggableControl);
_defineProperty(Marker, "propTypes", propTypes);
_defineProperty(Marker, "defaultProps", defaultProps);
export { Marker as default };
//# sourceMappingURL=marker.js.map