Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

MapboxGL - How to create route line between markers as curves? #466

Open
Thilak8654 opened this issue Oct 9, 2020 · 0 comments
Open

MapboxGL - How to create route line between markers as curves? #466

Thilak8654 opened this issue Oct 9, 2020 · 0 comments

Comments

@Thilak8654
Copy link

I am trying to add a curve line between markers. I have a set of markers that are linked to specific markers using lines. I need to change that line into curves in Mapbox. Tried with the turf package also, which was not connecting the markers properly.
Either way of the following is ok:

  • If it is possible to create a source layer in Mapbox studio and use it on our map. (That needs to be curved irrespective of the origin and destination points)

  • If it is possible to curve the lines, using any of the package available like Turf etc..,

     ` var start = turf.point([-122, 48]); 
       var end = turf.point([-77, 39]);
      var greatCircle = turf.greatCircle(start, end, { npoints: 100 });
      arc.push(greatCircle.geometry.coordinates);
      route.features[0].geometry.coordinates = arc;`
    

Thanks.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant