All,
When I go to this url: OpenStreetMap, I see a map with a "relation" (I assume this is the term for the trail being displayed) on top.
I am trying to get this trail to also display on my Django website, where I am using django-leaflet.
At the moment my code looks like this:
<script>
function map_init_basic (map, options) {
map.setZoom(16);
map.setView([51.6020, 4.8514]);
}
</script>
{% leaflet_map "trailmap" callback="window.map_init_basic" %}
This sets the map to the correct area, but how do I add the actual trail?
Highest regards.