diff --git a/contact.php b/contact.php index 0670502..f4ebcf2 100755 --- a/contact.php +++ b/contact.php @@ -9,13 +9,19 @@ function initialize() { var mapCanvas = document.getElementById('map-canvas'); + var polytechPos = new google.maps.LatLng(50.6074998, 3.1373338); var mapOptions = { - center: new google.maps.LatLng(50.6074998, 3.1373338), + center: polytechPos, zoom: 16, mapTypeId: google.maps.MapTypeId.ROADMAP } var map = new google.maps.Map(mapCanvas, mapOptions) + var marker = new google.maps.Marker({ + position: polytechPos, + map: map, + title:"Polytech Lille" + }); } initialize() -- libgit2 0.21.2