Blame view
assets/js/pages/maps-google.js
374 Bytes
cf76164e6 20190709 |
1 2 3 4 5 6 7 8 9 10 11 12 |
$( document ).ready(function() { function initialize() { var mapOptions = { center: new google.maps.LatLng(59.8873193,10.6993369,12), zoom: 12 }; var map = new google.maps.Map(document.getElementById('map-canvas'), mapOptions); } google.maps.event.addDomListener(window, 'load', initialize); }); |