Add leaflet strava segments

This commit is contained in:
Gautier Pelloux-Prayer 2018-09-01 15:23:39 +02:00
parent da1808bb32
commit 33e1d67b1f
3 changed files with 14 additions and 1 deletions

View file

@ -240,6 +240,14 @@
drawToolbar = L.easyBar([drawButton, nogos.getButton(), deleteButton]).addTo(map);
nogos.preventRoutePointOnCreate(routing);
if (BR.conf.stravaToken) {
new L.Control.StravaSegments(
{
stravaToken: BR.conf.stravaToken
})
.addTo(map);
}
map.addControl(new BR.OpacitySlider({
callback: L.bind(routing.setOpacity, routing)
}));