![Create React App Officially Deprecated Amid React 19 Compatibility Issues](https://cdn.sanity.io/images/cgdhsj6q/production/04fa08cf844d798abc0e1a6391c129363cc7e2ab-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Create React App Officially Deprecated Amid React 19 Compatibility Issues
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
leaflet-superclaster
Advanced tools
Leaflet binding for supercluster
move | static |
---|---|
![]() | ![]() |
example | example |
import * as L from 'leaflet'
import {SuperclusterGroup} from 'leaflet-superclaster'
import 'leaflet-superclaster/dist/supercluster.css'
this.superclusterGroup = new SuperclusterGroup().addTo(this.map)
this.superclusterGroup.on('point.click', function({parentLayer, layer, target}) {
let popup = layer.getPopup()
if (!popup) {
popup = L.popup({
autoClose: false,
closeOnClick: false,
autoPan: false
}).setContent(JSON.stringify(layer.feature.properties))
layer.bindPopup(popup).openPopup()
}
})
this.superclusterGroup.on('layer.updated', function ({layer}) {
const popup = layer.getPopup()
if (popup && popup.isOpen()) {
popup.setContent(JSON.stringify(layer.feature.properties))
}
})
const features = [{
properties: {
// !! id in properties are required
// used for redraw markers which changes the position
id: 1
},
type: "Feature",
geometry: {type: "Point", coordinates: [45, 66]}
}]
this.superclusterGroup.loadGeoJsonData(features)
loadGeoJsonData(features) - set markers positions
keepPoint(id) - Save point id for keep in view useful if appended popup with keepView optio
unKeepPoint(id)
name | params | desciption |
---|---|---|
point.click | parentLayer, layer, target | Fired on click by point |
cluster.click | parentLayer, layer, target | Fired on click by cluster |
layer.created | layer, feature | fired on marker(point or cluster) create |
layer.updated | layer, target | fired on layer position(lat, lng) was updated |
draw | layer, target | fired after markers draw, return layers with markers |
end | all data in worker executed | |
wait | data execution in worker |
Run webpack in dev mode and server with fixtures data
npm run watch
npm run test:e2e
For use in ie 11 with webpack. Install copy-webpack-plugin and copy leaflet-superclaster.worker.js to root folder:
const CopyPlugin = require('copy-webpack-plugin')
...
plugins: [
new CopyPlugin([
{ from: 'node_modules/leaflet-superclaster/dist/leaflet-superclaster.worker.js', to: 'leaflet-superclaster.worker.js' }
])
]
...
FAQs
Leaflet binding for supercluster
The npm package leaflet-superclaster receives a total of 1 weekly downloads. As such, leaflet-superclaster popularity was classified as not popular.
We found that leaflet-superclaster demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.