rodolpheg

Untitled

Feb 8th, 2020
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.84 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8">
  5. <title></title>
  6. <head>
  7. <title>Un titre</title>
  8. <meta charset="UTF-8">
  9. <script src="https://unpkg.com/[email protected]/dist/leaflet.js"></script>
  10. <link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/leaflet.css" />
  11. </head>
  12. </head>
  13. <style>
  14. html, body {height: 100%; margin: 0;}
  15. #Carte { width: 100%; height: 100%; }
  16. </style>
  17. <body>
  18. <div id='Carte'></div>
  19. <script>
  20. var maCarte = L.map('Carte');
  21. maCarte.setView([0,0], 2);
  22. 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)
  23. L.marker([0,0]).bindPopup('Un centre du monde').addTo(maCarte);
  24. </script>
  25. </body>
  26. </html>
Advertisement
Add Comment
Please, Sign In to add comment