
Security News
AGENTS.md Gains Traction as an Open Format for AI Coding Agents
AGENTS.md is a fast-growing open format giving AI coding agents a shared, predictable way to understand project setup, style, and workflows.
geovisto-layer-bubble
Advanced tools
Tool which provides the map layer functionality for Geovisto core library.
This repository is a snapshot of Geoviosto tools/layers/bubble
derived from the development repository: geovisto/geovisto-map.
import { GeovistoBubbleLayerTool } from 'geovisto-layer-bubble';
import 'geovisto-layer-bubble/dist/index.css';
// create instance of map with given props
const map = Geovisto.createMap({
// ...
tools?: Geovisto.createMapToolsManager([
// instances of Geovisto tools (extensions) which will be directly used in the map
// ...
GeovistoBubbleLayerTool.createTool({
id: "geovisto-tool-layer-bubble"
}),
])
});
// rendering of the map
map.draw(Geovisto.getMapConfigManagerFactory().default({
// initial settings of the map can be overriden by the map config - JSON structure providing user settings
// ...
tools?: [
// config of Geovisto tools (extensions) used in the map
// ...
{
"type": "geovisto-tool-layer-bubble",
"id": "geovisto-tool-layer-bubble",
"enabled": true,
"layerName": "Bubble layer",
// mapping of data domains to data dimensions
"data": {
"latitude": "lat", // latitude in degrees
"longitude": "long", // longitude in degrees
"category": "data.category", // category dimension
"value": "data.value", // value dimension
"aggregation": "sum", // [sum, count]
"color": "#e32400" // color of bubbles
"bubbleSize": 2 // size of bubbles
}
},
// ...
]
}));
npm install --save geovisto-layer-bubble
Peer dependencies:
npm install --save geovisto leaflet
Author: Petr Kašpar, Vladimír Korenčik
Contributors: Jiři Hynek
FAQs
Geovisto tool which provides the bubble layer
The npm package geovisto-layer-bubble receives a total of 0 weekly downloads. As such, geovisto-layer-bubble popularity was classified as not popular.
We found that geovisto-layer-bubble demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 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
AGENTS.md is a fast-growing open format giving AI coding agents a shared, predictable way to understand project setup, style, and workflows.
Security News
/Research
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
Security News
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.