-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
33 lines (33 loc) · 1.27 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<!doctype html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" ng-app="geoportailApp">
<head>
<meta charset="utf-8">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<link rel="shortcut icon" type="image/x-icon" href="img/favicon.ico"/>
<title>Geoportail - IGN</title>
<!--<link rel="stylesheet" href="css/bootstrap.css">-->
<link rel="stylesheet" href="css/app.css">
<script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.2.6/angular.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.2.6/angular-route.js"></script>
<!--<script src="lib/angular.js"></script>-->
<!--<script src="lib/angular-route.js"></script>-->
<script src="http://api.ign.fr/geoportail/api/js/latest/Geoportal.js"></script>
<script src="js/geoportail.js"></script>
<script src="js/app.js"></script>
<script src="js/controllers.js"></script>
</head>
<body ng-controller="mainController">
<div id="header">
<div>
<a href="#/ign-full">Full Screen </a> ---
<a href="#/ign-fixed">Fixed</a> ---
<a href="#/ign-multiple">Multiple</a> ---
{{foo}}
</div>
</div>
<div id="content">
<div style="height: 100%" ng-view></div>
</div>
<div id="footer">{{bar}}</div>
</body>
</html>