map.js 392 B

1234567891011
  1. function initMap(location) {
  2. var map = L.map('map').setView(location, 3);
  3. L.tileLayer('https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png', {
  4. attribution: '&copy; <a href="https://www.openstreetmap.org/copyright">OpenStreetMap</a> contributors'
  5. }).addTo(map);
  6. L.marker(location).addTo(map);
  7. //.bindPopup('A pretty CSS3 popup.<br> Easily customizable.')
  8. //.openPopup();
  9. }