Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="UTF-8">
- <title></title>
- <head>
- <title>Un titre</title>
- <meta charset="UTF-8">
- <script src="https://unpkg.com/[email protected]/dist/leaflet.js"></script>
- <link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/leaflet.css" />
- </head>
- </head>
- <style>
- html, body {height: 100%; margin: 0;}
- #Carte { width: 100%; height: 100%; }
- </style>
- <body>
- <div id='Carte'></div>
- <script>
- var maCarte = L.map('Carte');
- maCarte.setView([0,0], 2);
- var fondDeCarte = L.tileLayer('https://api.mapbox.com/styles/v1/mapbox/light-v10/tiles/{z}/{x}/{y}?access_token=pk.eyJ1IjoiZ29ucm8iLCJhIjoiY2szZzdhYzVwMDMxMjNkbjZodzA2ZG8wOSJ9.w_VkhpdmD-1pmMYcabUQwg').addTo(maCarte)
- L.marker([0,0]).bindPopup('Un centre du monde').addTo(maCarte);
- </script>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment