emajineMap.prototype.setDefaultControl = function() {
	new GKeyboardHandler(this.map);
}

//Ajout du layer sur le marker (infobulle)
emajineMap.prototype.setMarker = function (marker,url) {
 if(url) {
 GEvent.addListener(marker, "mouseover", function (){
 var coord = marker.getLatLng();
 var coord1 = coord.lat();
 var coord2 = coord.lng();
 var info = '<div id="gMapWindowContent" class="googleMapBulle">Veuillez patienter...</div>';
 marker.openInfoWindowHtml(info);
 });
 GEvent.addListener(marker, "infowindowopen", function (){
 displayFileContent(url,'gMapWindowContent')
 });
 }
 this.map.addOverlay(marker);
}