2022-06-12 13:51:47 -07:00
// Gilroy Hacks Website Source Code -> JS (https://gilroyhacks.com)
2022-06-07 01:43:29 -07:00
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 : '© <a href="https://www.openstreetmap.org/copyright">OpenStreetMap</a> contributors'
} ) . addTo ( map ) ;
let marker = L . marker ( [ 37.00529 , - 121.572764 ] , { icon : myIcon } ) . addTo ( map )
2022-07-23 21:29:30 -07:00
L . popup ( ) . setLatLng ( [ 37.00529 , - 121.572697 ] ) . setContent ( '<h3 style="text-align: center">Gilroy Library</h3><br>350 W 6th St, Gilroy, CA 95020' ) . openOn ( map ) ;