<script language="javascript">
var gmarkers = [];
showmap(74,31);
var point = new GLatLng(74,31);
var marker = createMarker(point,1);
map.addOverlay(marker);
var map;
function showmap(lat,long)
{
//if(initialize()){
// create the map
if (GBrowserIsCompatible()) {
map = new GMap2(document.getElementById("map"));
//map.addControl(new GLargeMapControl());
//map.addControl(new GSmallMapControl());
//map.addControl(new GMapTypeControl());
map.enableScrollWheelZoom();
map.addControl(new GLargeMapControl3D());
map.setCenter(new GLatLng(lat,long), 15);
// Add GHierarchicalMapTypeControl
map.addMapType(G_PHYSICAL_MAP);
var hControl = new GHierarchicalMapTypeControl();
hControl.addRelationship(G_SATELLITE_MAP, G_HYBRID_MAP, "Labels", false);
map.addControl(hControl);
}
//}
}
onresize = function()
{
//initialize();
}
// this variable will collect the html which will eventually be placed in the side_bar
function createMarker(point,i,html, bullet) {
// Create our "tiny" marker icon
var Icon = new GIcon(G_DEFAULT_ICON);
Icon.image = "<?php echo TEMPLATE_PATH; ?>/images/alphabets/a.png";
// Set up our GMarkerOptions object
markerOptions = { icon:Icon };
var marker = new GMarker(point,markerOptions);
// save the info we need to use later for the side_bar
gmarkers[0]= marker;
// add a line to the side_bar html
var mark = (gmarkers.length-1);
return marker;
}
</script>
|