Changeset 7671 for trunk


Ignore:
Timestamp:
Apr 2, 2010, 11:37:12 AM (15 years ago)
Author:
janveeden
Message:

Added comments to nodemapWL.js

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src_map/inc/nodemapWL.js

    r7665 r7671  
    11function initialize_map() {
     2        //Specify start position of the map
    23    var latlng = new google.maps.LatLng(52.162687, 4.493294);
     4        //Default settings for how the map starts out
    35    var myOptions = {
    46      zoom: 11,
     
    68      mapTypeId: google.maps.MapTypeId.ROADMAP
    79    };
     10        //Create the map using the settings from myOptions and placing it in the div mapcanvas
    811    var map = new google.maps.Map(document.getElementById("mapcanvas"), myOptions);
    912  }
Note: See TracChangeset for help on using the changeset viewer.