Hi,
Yes, it is possible, but you have to code it yourself in JavaScript.
After the map and the track have been initialized, you can get to the track object via the global Trackserver object:
Trackserver.mydata.<div_id>[<track_id>].track
So, for example on a page with one map that has track id 99 on it, the track object would be:
Trackserver.mydata.tsmap_1[99].track
Once you have this object, you can do stuff with it. See the Leaflet manual for more information, for example:
https://leafletjs.com/reference-1.0.0.html#evented
You can add an ‘onClick’ handler like this:
Trackserver.mydata.tsmap_1[99].track.on('click', function() { alert("hallo"); });
I hope this helps.
Cheers,
Martijn.