// JavaScript Document

// Google Maps
  	var address = '3.229605,101.691315';
  	var geocoder; 	
 	var myOptions = {
		zoom: 16,
		center: latlng,
		mapTypeControl: false,
		mapTypeId: google.maps.MapTypeId.HYBRID
	}
	
	var map = new google.maps.Map(document.getElementById("pts-map"), myOptions);
 	var latlng = new google.maps.LatLng(3.229605,101.691315);
 	var geocoder = new google.maps.Geocoder();
	
	if (geocoder) 
	{
		geocoder.geocode( {'address':address}, 
		
			function(results, status) 
			{
				if (status == google.maps.GeocoderStatus.OK) 
				{
					map.setCenter(results[0].geometry.location);
					
					 var image = new google.maps.MarkerImage("http://pts.com.my/images/icon-google_map.png",
					      // This marker is 20 pixels wide by 32 pixels tall.
					      new google.maps.Size(136, 47),
					      // The origin for this image is 0,0.
					      new google.maps.Point(0,0),
					      // The anchor for this image is the base of the flagpole at 0,32.
					      new google.maps.Point(22, 47));
					
					var marker = new google.maps.Marker({ 
						map: map, 
						position: latlng, 
						title: "PTS Publications & Distributors Sdn. Bhd.",
						icon: image
					});
				}
			}
		)
	}
