Security News
JSR Working Group Kicks Off with Ambitious Roadmap and Plans for Open Governance
At its inaugural meeting, the JSR Working Group outlined plans for an open governance model and a roadmap to enhance JavaScript package management.
@nextgis/control-container
Advanced tools
Placing control elements in the corners of the map container
This library allows placing control elements in the corners of the map container.
Libraries such as Leaflet
and Maplibre GL JS
are already doing this,
but Cesium
and Openlayers
do not have similar functionality.
╭───────────────────────────────────────────╮
│ top-left top-right │
│ MAP │
│ bottom-left bottom-right │
╰───────────────────────────────────────────╯
# latest stable
npm install @nextgis/control-container
import ControlContainer from '@nextgis/control-container';
// initialization
const controlContainer = new ControlContainer({ target: 'map-control-id' });
// or
const controlContainer = new ControlContainer({ map: webMap });
controlContainer.addTo('.map-control-class');
// add simple HTML string
controlContainer.append('<div>HTML</div>', 'top-right');
// or HTML element
controlContainer.append(HTMLElement, 'top-right');
// add control
const control = {
onAdd(webMap) {
const container = document.createContainer('div');
webMap.emitter.on('zoomend', () => {
container.innerHTML = webMap.getZoom();
});
return container
}
}
controlContainer.addControl(control, 'bottom-right');
Need to fix a bug or add a feature to @nextgis/control-container
? We provide custom development and support for this software. Contact us to discuss options!
FAQs
Placing control elements in the corners of the map container
The npm package @nextgis/control-container receives a total of 179 weekly downloads. As such, @nextgis/control-container popularity was classified as not popular.
We found that @nextgis/control-container demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
At its inaugural meeting, the JSR Working Group outlined plans for an open governance model and a roadmap to enhance JavaScript package management.
Security News
Research
An advanced npm supply chain attack is leveraging Ethereum smart contracts for decentralized, persistent malware control, evading traditional defenses.
Security News
Research
Attackers are impersonating Sindre Sorhus on npm with a fake 'chalk-node' package containing a malicious backdoor to compromise developers' projects.