// JavaScript Document
function initialize() {
    var latlng = new google.maps.LatLng(48.837026,2.707421);
    var myOptions = 
	{
      zoom: 15,
      center: latlng,
      mapTypeId: google.maps.MapTypeId.ROADMAP,
    };
    var map_med_europe = new google.maps.Map(document.getElementById("map_med_europe"), myOptions);
	 
	//création du marqueur
	
	var marker = new google.maps.Marker({
      position: new google.maps.LatLng(48.8370262225309,2.7074217796325684), 
      map: map_med_europe, 
      title:"Mediatheque",
  });
  }
