Rafael Neri
Results
11
comments of
Rafael Neri
@dmaglio, you need to use the L.Routing.Plan, plan has the createMarker function. ```typescript const plan = new L.Routing.Plan(waypoints, { createMarker: (i, wp, nWps) => { return L.marker(wp.latLng).bindPopup('Message'); }, }); const...