var address = 'Lauwersweg 15 Surhuisterveen';
var ShopLocation;
var map;

function init() {
	var geocoder = new google.maps.Geocoder();
	
	var myOptions = {
		zoom: 16,
		disableDefaultUI: true,
		mapTypeId: google.maps.MapTypeId.ROADMAP
	}
	map = new google.maps.Map(document.getElementById("map"), myOptions);
	
	if(geocoder) {
		geocoder.geocode( { 'address': address}, function(results, status) {
			if(status == google.maps.GeocoderStatus.OK) {
				ShopLocation = results[0].geometry.location;
				map.setCenter(ShopLocation);
				var image = 'assets/images/design/map_icon.png';
				
				var mapMarker = new google.maps.Marker({
					position: ShopLocation,
					map: map,
					icon: image
				});
			} else {
				alert("Geocode was not successful for the following reason: " + status);
			}
		});
	}
}
/* keukenservicecordehaan.nl: ABQIAAAAz7ZO6K4SdcDUYfwAroarAhSymhFoB5fXNIdKpw4ZpiK1V3Oe4xRA4jSYdtB8nmkN1nJpcIXHJG5iSQ */
