Selmy44 / Interactive-Maps

This is an Interactive Maps web

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Interactive-Maps

This is an Interactive Maps web

<title>Interactive Map</title> <style> #map { height: 400px; width: 100%; } </style>
<script src="https://cdn.jsdelivr.net/npm/leaflet@1.7.1/dist/leaflet.js"></script> <script> // Initialize the map var mymap = L.map('map').setView([51.505, -0.09], 13); // Add a base map layer (you can use different tile layers) L.tileLayer('https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png', { maxZoom: 19, attribution: 'Map data © OpenStreetMap contributors' }).addTo(mymap); // Add a marker var marker = L.marker([51.5, -0.09]).addTo(mymap); // Add a popup to the marker marker.bindPopup("Hello!
This is an interactive map.").openPopup(); </script>

About

This is an Interactive Maps web


Languages

Language:HTML 100.0%