/* var locations = new Array(); locations[0] = new Array(); locations[0][0] = 47.01043049343728; // Horw locations[0][1] = 8.30590009689331; locations[0][2] = 3; locations[1] = new Array(); // North America locations[1][0] = 47.600665198055; locations[1][1] = -122.33435153961182; locations[1][2] = 3; locations[2] = new Array(); // Renens locations[2][0] = 46.544989310778725; locations[2][1] = 6.588170528411865; locations[2][2] = 3; locations[3] = new Array(); // Shanghai locations[3][0] = 31.112952600211678; locations[3][1] = 121.38167381286621; locations[3][2] = 3; window.onload = function(){ navigateToLocation(); }; window.onunload = function() { GUnload(); }; function navigateToLocation() { if (GBrowserIsCompatible()) { var map = new GMap2(document.getElementById("map")); map.setCenter(new GLatLng(37.4419, -122.1419), 13); map.setUIToDefault(); } } */