

  // Google Map
  var carte;
	var geocoder;

	function googlemap() {
		geocoder = new google.maps.Geocoder();
		var options = {
			mapTypeId: google.maps.MapTypeId.ROADMAP
		};
		carte = new google.maps.Map(document.getElementById("carte"), options);
		var geocode = new google.maps.LatLng('48.8696129', '2.3105888999999706');
    carte.setCenter(geocode);
    carte.setZoom(16);

 		var image = new google.maps.MarkerImage('themes/images/icon-map.png',
    // This marker is 20 pixels wide by 32 pixels tall.
    new google.maps.Size(34, 21),
    // 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(2, 20));

		var marker = new google.maps.Marker({
      map: carte,
      icon: image,
			position: geocode
    });
	}
