
if (jQuery("#map").length > 0){
	jQuery('#map').gmap3({
		map: {
		    options:{
		        zoom:15,
		        center: [48.662133, 12.517830],
		        mapTypeId: google.maps.MapTypeId.MAP,
		        mapTypeControl: true,
		        mapTypeControlOptions: {
		          style: google.maps.MapTypeControlStyle.DROPDOWN_MENU
		        },
		        navigationControl: true,
		        scrollwheel: true,
		        streetViewControl: true,
		        disableDefaultUI: false
		    }
		},
		marker:{
		    latLng: [48.662133, 12.517830],
		    options: {
			    icon: new google.maps.MarkerImage(
			        "https://flowdog.de/wp-content/uploads/2015/03/marker2.png", new google.maps.Size(85, 88, "px", "px")
			    )
		    }
		 }
		}

	);
}