Skip to content
Snippets Groups Projects
Commit d0b7a22e authored by Anton Sarukhanov's avatar Anton Sarukhanov
Browse files

Open vehicle popup when label is clicked

parent c3891f44
No related branches found
No related tags found
No related merge requests found
......@@ -160,11 +160,15 @@ BusMap.Map = function(opts) {
}).bindLabel(route, {
noHide: true,
direction: 'right',
clickable: true,
}).bindPopup(text + text_after, popupOpts).addTo(that.vehicleMarkersGroup);
} else {
that.vehicleMarkers[v].setLatLng([vehicles[v].lat, vehicles[v].lon])
.setIconAngle(vehicles[v].heading);
}
that.vehicleMarkers[v].label.on('click', function() {
this._source.openPopup();
});
that.vehicleMarkers[v].bm_updated = Date.now()
// Add predictions to the marker popup, if available
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment