-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Index.html
45 lines (35 loc) · 1.31 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
<!DOCTYPE HTML>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0">
<title></title>
<link rel="shortcut icon" href="favicon.ico" sizes="48x48" />
<!-- Hiding Safari User Interface Components -->
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<!-- DataFlex Engine -->
<script>
var sDfPreloadTheme = "Df_Material";
</script>
<script src="DfEngine/df-include.js"></script>
<!-- DataFlex Custom Controls (do not remove this line, used for automatic insertion) -->
<script src="https://unpkg.com/core-js-bundle/minified.js"></script>
<script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyB89CwSh7pdRJjofI3xDT_NKC2SIC__Y6Y"></script>
<script src="Custom/GoogleMaps/index.js"></script>
<!-- Initialization of the WebApp -->
<script>
var oWebApp = new df.WebApp("WebServiceDispatcher.wso");
oWebApp.displayApp("#viewport");
</script>
<style>
html, body{
height: 100%;
}
</style>
</head>
<body>
<div id="viewport" style="width: 100%; height: 100%;">
</div>
</body>
</html>