Greg
Results
1
comments of
Greg
You could use mapboxgl.Marker(); ``` this.wayPoints.forEach((w, i) => { directions.addWaypoint(i, [w.lon, w.lat]); new mapboxgl.Marker().setLngLat([w.lon, w.lat]).addTo(map); }); ```