Difference between revisions of "MediaWiki:Common.js"

From WWII Memorial
Jump to: navigation, search
Line 14: Line 14:
 
     </style>
 
     </style>
 
   </head>
 
   </head>
  <body>
 
 
     <div id="map">Hi</div>
 
     <div id="map">Hi</div>
  </body>
 
 
</html>';
 
</html>';
  

Revision as of 22:16, 17 April 2018

/* Any JavaScript here will be loaded for all users on every page load. */

/* Google Test */
$(function () {

  var myElement = document.getElementById('mw-test');
  myElement.innerHTML = '<html>
  <head>
    <style>
       #map {
        height: 400px;
        width: 100%;
       }
    </style>
  </head>
    <div id="map">Hi</div>
</html>';

}());

/* Map */
$(function initMap() {
  var uluru = {lat: -25.363, lng: 131.044};
  var map = new google.maps.Map(document.getElementById('map'), {zoom: 4, center: uluru});
  var marker = new google.maps.Marker({position: uluru, map: map});
}());