// Marker sizes are expressed as a Size of X,Y
// where the origin of the image (0,0) is located
// in the top left of the image.
// Origins, anchor positions and coordinates of the marker
// increase in the X direction to the right and in
// the Y direction down.
var markerImage = new google.maps.MarkerImage('/images/info_bulle_map.png',
			// This marker is X pixels wide by Y pixels tall. new google.maps.Size(X, Y)
			new google.maps.Size(27, 36),
			// 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(11, 29));
			
var markerShadow = new google.maps.MarkerImage('/images/info_bulle_map.png',
			// The shadow image is larger in the horizontal dimension
			// while the position and offset are the same as for the main image.
			new google.maps.Size(27, 36),
			new google.maps.Point(0,0),
			new google.maps.Point(11, 29));
// Shapes define the clickable region of the icon.
// The type defines an HTML &lt;area&gt; element 'poly' which
// traces out a polygon as a series of X,Y points. The final
// coordinate closes the poly by connecting to the first
// coordinate.
var markerShape = {
  coord: [11, 29, 2, 16, 2, 8, 4, 3, 8, 1, 14, 1, 19, 3, 22, 8, 22, 16, 11, 29],
  type: 'poly'
};

var initGooglemapZoomMini = 0;
var initGooglemapZoomMaxi = 20;


