forked from khanhpti/local-government-online-apps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paths1.html
108 lines (106 loc) · 3.96 KB
/
s1.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
106
107
108
<!doctype html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=7, IE=9, IE=10"/>
<!--
| ArcGIS Solutions
| Version 10.2
| Copyright 2012 Esri
|
| Licensed under the Apache License, Version 2.0 (the "License");
| you may not use this file except in compliance with the License.
| You may obtain a copy of the License at
|
| http://www.apache.org/licenses/LICENSE-2.0
|
| Unless required by applicable law or agreed to in writing, software
| distributed under the License is distributed on an "AS IS" BASIS,
| WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
| See the License for the specific language governing permissions and
| limitations under the License.
-->
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
<meta name="viewport" content="initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<!--[if IE]>
<meta http-equiv="Pragma" content="no-cache">
<meta http-equiv="Expires" content="-1">
<![endif]-->
<link rel="dns-prefetch" href="http://serverapi.arcgisonline.com" />
<title>ArcGIS Solutions online app</title>
<meta name="description" content="ArcGIS Solutions online app">
<link rel="stylesheet" href="http://js.arcgis.com/3.10/js/dojo/dijit/themes/claro/claro.css"/>
<link rel="stylesheet" href="http://js.arcgis.com/3.10/js/esri/css/esri.css" />
<link rel="apple-touch-icon-precomposed" href="images/onlineapp.png" />
<style>
html, body {
height:100%;
font-size:100%;
font-family:sans-serif;
}
.fill {
margin:0;
padding:0;
width:100%;
height:100%;
}
.startupBkgd {
background-image:url("images/loading.gif");
background-position:center;
background-repeat:no-repeat;
}
.noJavaScriptMessage {
margin: 80px;
font-size: large;
}
.transparent {
opacity:0.0;filter:Alpha(opacity=0);
}
@media screen and (max-height:550px){.contentPane{max-height:300px}}
@media screen and (max-height:500px){.contentPane{max-height:250px}}
@media screen and (max-height:450px){.contentPane{max-height:200px}}
@media screen and (max-height:400px){.contentPane{max-height:150px}}
@media screen and (max-height:350px){.contentPane{max-height:100px}}
@media screen and (max-height:300px){.contentPane{max-height:50px}}
</style>
</head>
<!--[if lt IE 9]><body id="pageBody" class="lt-ie9 claro fill startupBkgd"><![endif]-->
<!--[if gt IE 8]><!-->
<body id="pageBody" class="okIE claro fill startupBkgd">
<!--<![endif]-->
<div id="contentDiv" class="fill transparent"></div>
<noscript>
<div class="noJavaScriptMessage">
<span>This site requires JavaScript.</span>
</div>
</noscript>
<script>
var path_location = location.pathname.replace(/\/[^/]+$/, '');
var dojoConfig = {
packages: [{
name: "js",
location: path_location + '/js1'
},{
name: "esriTemplate",
location: path_location
},{
name: "config",
location: path_location + '/js1' // common config
}],
async: false,
parseOnLoad: false
};
document.ontouchmove = function(e) {e.preventDefault()}; // prevent mobile bounce
</script>
<!--[if IE]>
<script>
// IE loads unreliably from cache
dojoConfig.cacheBust = true;
</script>
<![endif]-->
<script src="http://js.arcgis.com/3.10/"></script>
<script src="js1/libs.js"></script>
<script src="js1/lgonlineStart.js"></script>
</body>
</html>