Blame view

assets/js/pages/contact.js 382 Bytes
cf76164e6   Ting Chan   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('contact-map-canvas'),  mapOptions); 
      }
      google.maps.event.addDomListener(window, 'load', initialize);
      
  
  });