Leaflet plugin for displaying markers on canvas instead of DOM. Working with Leaflet 1.0.0 and above. Feel free to contribute
Following features have been added for personal projects: Add support for Z-Index
var marker=L.marker([lat, lon],{icon:icon}));
marker.zIndex=0;
Add support for iconOpacity
var icon = L.icon({ //add this new icon
iconUrl: url,
iconSize: [28, 42], // size of the icon
iconAnchor: [14,41], // point of the icon which will correspond to marker's location
iconOpacity: 0.7
});
Add option minZoomConstantScale if the zoom is inferior than this value the marker will scale accordingly to the zoom, if the zoom is supperior the marker will keep his size independently of the zoom. if this option is not defined the marker will keep his size for any zoom.
var iconLayer = L.canvasIconLayer({minZoomConstantScale:10});
There's a demo for 10000 points, running on Canvas
Just download leaflet.canvas-markers.js
from the dist
folder and attach it to your project.
<script src="leaflet.canvas-markers.js"></script>
Now attach layer to map and some markers.
// Adds a layer
var ciLayer = L.canvasIconLayer({}).addTo(map);
// Marker definition
var marker = L.marker([58.5578, 29.0087], {icon: icon});
// Adding marker to layer
ciLayer.addMarker(marker);
Plugin was tested in Google Chrome v66 & IE11. There is results for 100000 markers:
Parameter | Default Leaflet Markers | Leaflet.Canvas-Markers |
---|---|---|
Memory used | up to 2.8 Gb | about 300 Mb |
First load time | 160-200 seconds | <1 seconds |
Zoom and move time | more than 3 minutes | 0.5 seconds |
As you can see DOM operations are slow, so you should use canvas for a large number of markers.
You can also use L.circleMarker for your points with similar performance, but then you're limited to icon design.
- addMarker(marker): Adds a marker to the layer.
- addMarkers(markers): Adds a markers to the layer.
- removeMarker(marker, redraw): Removes a marker from the layer. Set redraw to
true
if you want to redraw layer after marker remove - redraw(): Redraws the layer
- addOnClickListener(eventHandler): Adds common click listener for all markers
- addOnHoverListener(eventHandler): Adds a hover over listener for all markers
I also implemented binds for default addLayer, addLayers and removeLayer (equal to removeMarker(marker, true) methods.