Raruto / leaflet-elevation

Leaflet plugin that allows to add elevation profiles using d3js
GNU General Public License v3.0
255 stars 85 forks source link

Elevation Profile for Routing #103

Closed webmap2015 closed 3 years ago

webmap2015 commented 3 years ago

Hi,

I want to make elevation profile for routing.

I can export the route between the waypoints as geojson.

{
    "name": "demo.geojson",
    "type": "FeatureCollection",
    "features": [{
            "type": "Feature",
            "geometry": {
                "type": "LineString",
                "coordinates": [[..., ...], [..., ...]]
            },
            "properties": null
        }
    ]
}

But height value is missing and I want to add it.

Is there any elevation service with supporting LineString geometries?

Thanks.

Raruto commented 3 years ago

Hi webmap,

I can't say much about this, if it can help your try to take a look at the following:

Have a nice day, Raruto

webmap2015 commented 3 years ago

Thanks.