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>
|
791963f0
henyxia
Another design
|
6
|
<div id="map-canvas"></div>
|
07793ced
henyxia
Contact page
|
7
8
9
10
11
12
|
<script>
function initialize()
{
var mapCanvas = document.getElementById('map-canvas');
var mapOptions =
{
|
791963f0
henyxia
Another design
|
13
14
|
center: new google.maps.LatLng(50.6074998, 3.1373338),
zoom: 16,
|
07793ced
henyxia
Contact page
|
15
16
17
18
19
20
|
mapTypeId: google.maps.MapTypeId.ROADMAP
}
var map = new google.maps.Map(mapCanvas, mapOptions)
}
google.maps.event.addDomListener(window, 'load', initialize);
</script>
|