Actions
Feature #1151
closedMap marker improvements
Start date:
2020-02-12
Estimated time:
Description
Due to slow performance with many markers on map we could implement possible future ways to improve this.
https://github.com/manubb/Leaflet.PixiOverlay
Updated by Alexander Watzinger over 4 years ago
- Status changed from New to Assigned
Updated by Stefan Eichert over 2 years ago
A simple and quick solution would be to use L.circleMarker instead of L.marker
e.g.
myCircleStyle = {
"color": "#000000",
"weight": 1,
"fillOpacity": 0.8,
"fillColor": "#007bd9",
"radius": 10
};
var marker = L.circleMarker([lon, lat], myCircleStyle).addTo(mymarkers).bindPopup('<a href="/entity/' + id + '">' + name + '</a>');
Updated by Alexander Watzinger over 2 years ago
- Related to Feature #1628: New maps added
Updated by Alexander Watzinger over 2 years ago
- Status changed from Assigned to Closed
- Assignee changed from Stefan Eichert to Andreas Olschnögger
- Target version changed from Wishlist to 7.3.0
Updated by Alexander Watzinger over 2 years ago
- Subject changed from Marker improvements to Map marker improvements
Updated by Alexander Watzinger over 2 years ago
- Target version changed from 7.3.0 to 7.2.0
Actions