-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
105 lines (96 loc) · 3.28 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
<!DOCTYPE HTML>
<html manifest="" lang="en-US">
<head>
<meta charset="UTF-8">
<title>Luxembourg Géoportail - Mobile</title>
<style type="text/css">
/**
* Example of an initial loading indicator.
* It is recommended to keep this as minimal as possible to provide instant feedback
* while other resources are still being loaded for the first time
*/
html, body {
height: 100%;
background-color: #0099FF;
}
#appLoadingIndicator {
position: absolute;
top: 50%;
margin-top: -40px;
text-align: center;
width: 100%;
height: 30px;
}
#circleG{
width:60.666666666666664px;
display: inline-block;
}
.circleG{
background-color:#FFFFFF;
float:left;
height:13px;
margin-left:7px;
width:13px;
-webkit-animation-name:bounce_circleG;
-webkit-animation-duration:1.9500000000000002s;
-webkit-animation-iteration-count:infinite;
-webkit-animation-direction:linear;
-webkit-border-radius:9px;
}
#circleG_1{
-webkit-animation-delay:0.39s;
}
#circleG_2{
-webkit-animation-delay:0.9099999999999999s;
}
#circleG_3{
-webkit-animation-delay:1.1700000000000002s;
}
@-webkit-keyframes bounce_circleG{
0%{
}
50%{
background-color:#0099FF}
100%{
}
}
</style>
<script type="text/javascript" src="cordova.js"></script>
<script src="proj4js-compressed.js"></script>
<script src="openlayers-mobile.js"></script>
<script>OpenLayers.Lang.lu = OpenLayers.Lang.lu || {};</script>
<script class="externalscript" src="http://app.geoportail.lu/geoadminApi/js/lang/fr.js"></script>
<script class="externalscript" src="http://app.geoportail.lu/geoadminApi/js/lang/en.js"></script>
<script class="externalscript" src="http://app.geoportail.lu/geoadminApi/js/lang/de.js"></script>
<script class="externalscript" src="http://app.geoportail.lu/geoadminApi/js/lang/lu.js"></script>
<script src="GeolocateControl.js"></script>
<script src="SavedMapLayer.js"></script>
<!-- The line below must be kept intact for Sencha Command to build your application -->
<script id="microloader" type="text/javascript" src=".sencha/app/microloader/development.js"></script>
<script>
function handleOpenURL(url) {
setTimeout(function() {
var params = Ext.Object.fromQueryString(url.split('?')[1]);
if (params.map_id) {
App.app.getController('MyMaps').showMyMap(params.map_id);
}
}, 1000);
}
</script>
</head>
<body>
<div id="appLoadingIndicator">
<div>
<img src="resources/icons/Icon.png" />
</div>
<div id="circleG">
<div id="circleG_1" class="circleG">
</div>
<div id="circleG_2" class="circleG">
</div>
<div id="circleG_3" class="circleG">
</div>
</div>
</div>
</body>
</html>