// Gilroy Hacks Website Source Code -> JS (https://gilroyhacks.com) var map = L.map('map').setView([37.00508, -121.57268], 18); var myIcon = L.icon({ iconUrl: '/img/leaflet/marker-icon.png' }); L.tileLayer('https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png', { maxZoom: 18, attribution: '© OpenStreetMap contributors' }).addTo(map); let marker = L.marker([37.00529, -121.572764], {icon: myIcon}).addTo(map) L.popup().setLatLng([37.00529, -121.572697]).setContent('

Gilroy Library


350 W 6th St, Gilroy, CA 95020').openOn(map);