﻿(function($) {
	$.fn.googleMap = function(o) {
		var d = {
			address: "",
			lat: null,
			lng: null,
			zoom: 9,
			//		pin: ,
			title: "",
			clat: null,
			clng: null,
		};
		var o = $.extend(d, o);
		if ((d.address == "") && ((d.lat == null) || (d.long == null))) {
			d.address = "Via Ampère, 26, 20131, Milano, Italia";
			d.title = "Milowa";
		}
		if (d.clat == null) d.clat = d.lat;
		if (d.clng == null) d.clng = d.lng;
		var ll = new google.maps.LatLng(d.lat, d.lng);
		var cll = new google.maps.LatLng(d.clat, d.clng);
		var m = new google.maps.Map(this.get(0), $.extend(d, { center: cll, mapTypeId: google.maps.MapTypeId.ROADMAP }));
		var g = new google.maps.Geocoder();
		g.geocode({ address: d.address }, function(r, s) {
			if (s == google.maps.GeocoderStatus.OK && r.length) {
				if (s != google.maps.GeocoderStatus.ZERO_RESULTS) {
					m.setCenter(cll);
					var marker = new google.maps.Marker({
						position: ll,
						map: m,
						//					icon: d.pin,
						title: d.title
					});
				}
			}
		});
	};
})(jQuery);
