// 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/fr/google_logo_gs27.png',
			// This marker is X pixels wide by Y pixels tall. new google.maps.Size(X, Y)
			new google.maps.Size(32, 18),
			// 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(16, 9));
var markerShadow = new google.maps.MarkerImage('/images/fr/google_logo_gs27.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(32, 18),
			new google.maps.Point(0,0),
			new google.maps.Point(16, 9));
// 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: [0, 0, 0, 18, 32, 18, 32, 0],
  type: 'poly'
};

var initGooglemapZoomMini = 0;
var initGooglemapZoomMaxi = 20;


