kepler.gl
Version:
kepler.gl is a webgl based application to visualize large scale location data in the browser
19 lines • 801 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
var react_1 = require("react");
var apply_react_style_1 = require("../utils/apply-react-style");
var use_control_1 = require("./use-control");
function FullscreenControl(props) {
var ctrl = (0, use_control_1.default)(function (_a) {
var mapLib = _a.mapLib;
return new mapLib.FullscreenControl({
container: props.containerId && document.getElementById(props.containerId)
});
}, { position: props.position });
(0, react_1.useEffect)(function () {
(0, apply_react_style_1.applyReactStyle)(ctrl._controlContainer, props.style);
}, [props.style]);
return null;
}
exports.default = (0, react_1.memo)(FullscreenControl);
//# sourceMappingURL=fullscreen-control.js.map
;