
var myLatlng = new google.maps.LatLng(47.489505,12.065156);
var query = "Christian-Thaler-Straße 12 6300 Wörgl Austria";
var geocoder;
var map;

function google_initialize() 
{
	geocoder = new google.maps.Geocoder(); 
	var myOptions = {
		zoom: 14,
		center: myLatlng,
		mapTypeId: google.maps.MapTypeId.HYBRID
	}
	map = new google.maps.Map(document.getElementById("googlemap"), myOptions);
	codeAddress(); 
}
function codeAddress()
{
	var address = query;
	if (geocoder) 
	{
		geocoder.geocode( { 'address': address}, function(results, status) {
			if (status == google.maps.GeocoderStatus.OK) {
				map.setCenter(results[0].geometry.location);
				var marker = new google.maps.Marker({
					map: map,
					position: results[0].geometry.location
				});
			} else {
				alert("Geocode was not successful for the following reason: " + status);
			}
		});
	}
} 
