Bonjour à tous, j'utilise le code ci-dessous pour afficher une cartographhie OpenStreetMap dans une fenêtre windev. Je cherche à avoir une cratographie en relief, Quelqu'un pourrais m'aider à modifier ce code? Par avance je vous remercie. Cordialement. Code (Javascript): <html> <head> <title>%1</title> <link rel="stylesheet" href="https://unpkg.com/leaflet@1.3.4/dist/leaflet.css"/> <link rel="stylesheet" href="https://unpkg.com/leaflet-routing-machine@latest/dist/leaflet-routing-machine.css" /> <script src="https://unpkg.com/leaflet@1.3.4/dist/leaflet.js"></script> <script src="https://unpkg.com/leaflet-routing-machine@latest/dist/leaflet-routing-machine.js"></script> </head> <body> <div id="mapid" style="width: %2; height: %3px;"></div> <script> var mymap = L.map('mapid').setView([%5, %6], %4); L.tileLayer('https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png', { attribution: '© <a href="http://www.openstreetmap.org/copyright">OpenStreetMap</a>', minZoom: 1, maxZoom: 20 }) .addTo(mymap);