Blame view

contact.php 675 Bytes
07793ced   henyxia   Contact page
1
2
3
4
5
  <div class="jumbotron">
    <h1>Contact</h1>
    <p>Pour toute information, vous pouvez contacter Mme Pichonnat</p>
  </div>
  &nbsp;
b7e57048   Geoffrey PREUD'HOMME   Map now initializ...
6
  &nbsp;
791963f0   henyxia   Another design
7
  <div id="map-canvas"></div>
07793ced   henyxia   Contact page
8
9
10
11
  <script>
  	function initialize()
  	{
  		var mapCanvas = document.getElementById('map-canvas');
6250fe8d   Geoffrey PREUD'HOMME   Added marker on map
12
          var polytechPos = new google.maps.LatLng(50.6074998, 3.1373338);
07793ced   henyxia   Contact page
13
14
  		var mapOptions =
  		{
6250fe8d   Geoffrey PREUD'HOMME   Added marker on map
15
  			center: polytechPos,
791963f0   henyxia   Another design
16
  			zoom: 16,
07793ced   henyxia   Contact page
17
18
19
  			mapTypeId: google.maps.MapTypeId.ROADMAP
  		}
          var map = new google.maps.Map(mapCanvas, mapOptions)
6250fe8d   Geoffrey PREUD'HOMME   Added marker on map
20
21
22
23
24
          var marker = new google.maps.Marker({
              position: polytechPos,
              map: map,
              title:"Polytech Lille"
          });
07793ced   henyxia   Contact page
25
  	}
b7e57048   Geoffrey PREUD'HOMME   Map now initializ...
26
      initialize()
07793ced   henyxia   Contact page
27
  </script>