rc-leaflet
Version:
React Map Components of Leaflet
37 lines (36 loc) • 1.35 kB
JavaScript
var __extends = (this && this.__extends) || (function () {
var extendStatics = function (d, b) {
extendStatics = Object.setPrototypeOf ||
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
return extendStatics(d, b);
};
return function (d, b) {
extendStatics(d, b);
function __() { this.constructor = d; }
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
};
})();
import { PureComponent } from 'react';
import { createPortal } from 'react-dom';
import PropTypes from 'prop-types';
import L from 'leaflet';
var Content = /** @class */ (function (_super) {
__extends(Content, _super);
function Content() {
return _super !== null && _super.apply(this, arguments) || this;
}
Content.prototype.render = function () {
var _a = this.props, layer = _a.layer, children = _a.children;
if (layer && layer.getElement()) {
return createPortal(children, layer.getElement());
}
return null;
};
Content.propTypes = {
layer: PropTypes.instanceOf(L.SVGOverlay),
children: PropTypes.node
};
return Content;
}(PureComponent));
export default Content;