source: trunk/src_map/inc/nodemapWL.js@ 7672

Last change on this file since 7672 was 7671, checked in by janveeden, 16 years ago

Added comments to nodemapWL.js

File size: 480 bytes
RevLine 
[7665]1function initialize_map() {
[7671]2 //Specify start position of the map
[7665]3 var latlng = new google.maps.LatLng(52.162687, 4.493294);
[7671]4 //Default settings for how the map starts out
[7665]5 var myOptions = {
6 zoom: 11,
7 center: latlng,
8 mapTypeId: google.maps.MapTypeId.ROADMAP
9 };
[7671]10 //Create the map using the settings from myOptions and placing it in the div mapcanvas
[7665]11 var map = new google.maps.Map(document.getElementById("mapcanvas"), myOptions);
12 }
13
14
Note: See TracBrowser for help on using the repository browser.