-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathIndex.html
More file actions
39 lines (38 loc) · 1.32 KB
/
Index.html
File metadata and controls
39 lines (38 loc) · 1.32 KB
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
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title>Mapping Application</title>
<link rel="stylesheet" type="text/css" href="//js.arcgis.com/3.11/dojo/resources/dojo.css">
<link rel="stylesheet" type="text/css" href="//js.arcgis.com/3.11/esri/css/esri.css">
<link rel="stylesheet" type="text/css" href="//js.arcgis.com/3.11/dijit/themes/claro/claro.css">
<link rel="stylesheet" type="text/css" href="css/main.css">
</head>
<body class="dbootstrap">
<div id="HomeButton"></div>
<script type="text/javascript">
var path_location = location.pathname.replace(/[^\/]+$/, '');
var dojoConfig = {
async: true,
packages: [{
name: "app",
location: path_location + "js/app"
},{
name: "widgets",
location: path_location + "js/widgets"
},{
name: "dbootstrap",
location: path_location + "js/dbootstrap"
}]
}
</script>
<script src="//js.arcgis.com/3.11"></script>
<script type="text/javascript">
var app;
require(['dbootstrap', 'app/Controller', 'app/Config'], function(dbootstrap, Controller, config){
app = Controller;
app.startup(config);
});
</script>
</body>
</html>