Blame view

contact.php 486 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
12
13
  <script>
  	function initialize()
  	{
  		var mapCanvas = document.getElementById('map-canvas');
  		var mapOptions =
  		{
791963f0   henyxia   Another design
14
15
  			center: new google.maps.LatLng(50.6074998, 3.1373338),
  			zoom: 16,
07793ced   henyxia   Contact page
16
17
18
19
  			mapTypeId: google.maps.MapTypeId.ROADMAP
  		}
          var map = new google.maps.Map(mapCanvas, mapOptions)
  	}
b7e57048   Geoffrey PREUD'HOMME   Map now initializ...
20
      initialize()
07793ced   henyxia   Contact page
21
  </script>