//Arlberg Ski Centre
Shop 6 Jindabyne Rd
Berridale, NSW')
//place marker on map
map.addOverlay(marker);
//var markerA = new GMarker(new GLatLng(-36.366226,148.825682));
var point = new GLatLng(-36.388608,148.848127);
var marker = createMarker(point,'
Glenelm Cottage
Dalgety Rd
Berridale, NSW
')
map.addOverlay(marker);
//var markerB = new GMarker(new GLatLng(-36.388608,148.848127));
//declare type of control for types of maps, sattelite, terrain etc
var mapControl = new GHierarchicalMapTypeControl();
// Set up map type menu relationships
mapControl.clearRelationships();
//set hybrid as turned off for satellite map
mapControl.addRelationship(G_SATELLITE_MAP, G_HYBRID_MAP, "Show Labels", true);
// Add control after you've specified the relationships
map.addControl(mapControl);
}
}
//]]>