source: ether_ndacc/trunk/web/maps.jsp @ 840

Last change on this file since 840 was 113, checked in by rboipsl, 13 years ago

Import du projet NDACC _ module web

File size: 840 bytes
Line 
1<html>
2<head>
3<meta name="viewport" content="initial-scale=1.0, user-scalable=no" />
4<script type="text/javascript" src="http://maps.google.com/maps/api/js?sensor=true"></script>
5<script type="text/javascript">
6  function initialize() {
7    var latlng = new google.maps.LatLng(0.856667, 52.350987);
8    var myOptions = {
9      zoom: 2,
10      center: latlng,
11      mapTypeId: google.maps.MapTypeId.ROADMAP
12    };
13    var map = new google.maps.Map(document.getElementById("map_canvas"), myOptions);
14  }
15</script>
16</head>
17<body style="margin:0px; padding:0px;" onload="initialize()">
18 <table border="0" cellpadding="10" cellspacing="0" width="800px" height="700px">
19<tr>
20<td>
21
22<div id="map_canvas" style="width:100%; height:100%"></div>
23</td>
24</tr>
25</table>
26
27
28<!-- <div id="map_canvas" style="width:100%; height:100%"></div>-->
29</body>
30</html>
Note: See TracBrowser for help on using the repository browser.