function loadMapProperties(map) {
	map.setCenter(new GLatLng(48.360455, 2.536007), 17);
	map.addMapType(G_PHYSICAL_MAP);
	map.setMapType(G_HYBRID_MAP);

	function ResetControl() {
	}
	ResetControl.prototype = new GControl();
	ResetControl.prototype.initialize = function(map) {
		var container = document.createElement("div");
		container.style.border = "1px solid";
		var resetDiv = document.createElement("div");
		this.setButtonStyle_(resetDiv);
		container.appendChild(resetDiv);
		resetDiv.appendChild(document.createTextNode("Reset"));
		GEvent.addDomListener(resetDiv, "click", function() { map.returnToSavedPosition(); });
		map.getContainer().appendChild(container);
		return container;
	}

	ResetControl.prototype.getDefaultPosition = function() {
		return new GControlPosition(G_ANCHOR_TOP_RIGHT, new GSize(7, 7));
	}

	// Sets the proper CSS for the given button element.
	ResetControl.prototype.setButtonStyle_ = function(button) {
		button.style.textDecoration = "none";
		button.style.color = "black";
		button.style.backgroundColor = "white";
		button.style.font = "small Arial";
		button.style.fontSize = "12px";
		button.style.border = "1px solid";
		button.style.borderColor = "white rgb(176, 176, 176) rgb(176, 176, 176) white";
		button.style.padding = "0px";
		button.style.margin = "0px";
		button.style.textAlign = "center";
		button.style.width = "63px";
		button.style.cursor = "pointer";
	}

	var mapControl = new GHierarchicalMapTypeControl();
	mapControl.clearRelationships();
	mapControl.addRelationship(G_SATELLITE_MAP, G_HYBRID_MAP, "Hybrid map", false);
	map.addControl(mapControl, new GControlPosition(G_ANCHOR_TOP_RIGHT, new GSize(79, 7)));
	_mPreferMetric = true;
	map.addControl(new ResetControl(), new GControlPosition(G_ANCHOR_TOP_RIGHT, new GSize(7, 7)));
	map.addControl(new GScaleControl(125), new GControlPosition(G_ANCHOR_BOTTOM_RIGHT, new GSize(9,20)));
	map.addControl(new GSmallMapControl());

}


