8 lines
189 B
JavaScript
8 lines
189 B
JavaScript
<script src="{{ asset('js/map.js') }}"></script>
|
|
|
|
// initialize the map on the "map" div with a given center and zoom
|
|
var map = L.map('map', {
|
|
center: [51.505, -0.09],
|
|
zoom: 13
|
|
});
|