// 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/picto_gmap.png',
			// This marker is X pixels wide by Y pixels tall. new google.maps.Size(X, Y)
			new google.maps.Size(30, 30),
			// 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(15, 30));
var markerShadow = new google.maps.MarkerImage('/images/picto_gmap_shadow.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(30, 30),
			new google.maps.Point(0,0),
			new google.maps.Point(15, 30));
// 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: [13, 28, 12, 23, 8, 22, 4, 17, 4, 7, 8, 3, 12, 1, 17, 1, 21, 3, 25, 8, 25, 17, 21, 22, 17, 23, 16, 28],
  type: 'poly'
};


var googlemapSearchLocalisationOptions = {
	disableDefaultUI:true,
	scrollwheel: false,
	draggable: false,
	disableDoubleClickZoom: true,
	keyboardShortcuts: false
};

var googlemapFicheOptions = {
	disableDefaultUI:true,
	scrollwheel: false,
	draggable: false,
	disableDoubleClickZoom: true,
	keyboardShortcuts: false
};

var initGooglemapZoomMini = 0;
var initGooglemapZoomMaxi = 10;


