Showing open & vouched for public work spaces in an easy to view map.
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 18 lines 465 B view raw
1<!DOCTYPE html> 2<html lang="en"> 3 4<head> 5 <meta charset="UTF-8" /> 6 <meta name="viewport" content="width=device-width, initial-scale=1.0" /> 7 <title>Simple map</title> 8 <link rel="stylesheet" href="https://unpkg.com/leaflet@1.9.2/dist/leaflet.css" /> 9 <script src="https://unpkg.com/leaflet@1.9.2/dist/leaflet.js"></script> 10 <link rel="stylesheet" href="style.css" /> 11</head> 12 13<body> 14 <div id="map"></div> 15 <script src="script.js"></script> 16</body> 17 18</html>