-
Notifications
You must be signed in to change notification settings - Fork 32
/
index.html
executable file
·140 lines (133 loc) · 5.94 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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
<!DOCTYPE html>
<html>
<head>
<title></title>
<meta charset="utf-8">
<!-- Responsive -->
<meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport">
<meta content="yes" name="mobile-web-app-capable">
<meta content="yes" name="apple-mobile-web-app-capable">
<meta content="default" name="apple-mobile-web-app-status-bar-style">
<!-- End Responsive -->
<!-- Use protocol relative urls that way if the browser is viewing the page via HTTPS the js/css file will be requested using the HTTPS protocol -->
<link href="https://js.arcgis.com/3.26/esri/themes/calcite/dijit/calcite.css" rel="stylesheet">
<link href="https://js.arcgis.com/3.26/esri/css/esri.css" rel="stylesheet">
<!-- Load any application specific styles -->
<link href="css/main.css" rel="stylesheet">
</head>
<body class="calcite app-loading">
<div class="loading-indicator">
<div class="loading-message" id="loading_message"></div>
</div>
<!-- The ArcGIS API for JavaScript provides bidirectional support. When viewing the application in an right to left (rtl) language like Hebrew and Arabic the map needs to remain in left-to-right (ltr) mode. Specify this by setting the dir attribute on the div to ltr. -->
<div data-dojo-props="design:'headline', gutters:false" data-dojo-type="dijit/layout/BorderContainer" id="bc">
<div class="title-header" data-dojo-props="region:'top'" data-dojo-type="dijit/layout/ContentPane" id="header" role="banner">
<h1 id="titleDiv"></h1>
<div id="toolbarDiv">
<div class="bg toolbar" id="toolbar-trailing">
<span id="toolbar-leading">
<span id="editDiv"></span>
<span id="legendDiv"></span>
<span id="detailsDiv"></span>
</span>
<span class="tools-menu" id="toolbar-menu">
<span class="hidden" id="basemapBtnDiv"></span>
<span class="hidden" id="bookmarkBtnDiv"></span>
<span class="hidden" id="measureBtnDiv"></span>
<span class="hidden" id="shareBtnDiv"></span>
<span class="hidden" id="layerListBtnDiv"></span>
<span class="hidden" id="tableBtnDiv"></span>
<span class="hidden" id="printBtnDiv"></span>
</span>
</div>
</div>
</div>
<div class="sidepanel" data-dojo-props='region:"left"' data-dojo-type="dijit/layout/ContentPane" id="sideDiv">
<div class="sidepanel_content" data-dojo-props='region:"center"' data-dojo-type="dijit/layout/StackContainer" id="stackContainer">
<div data-dojo-props='region:"center"' data-dojo-type="dijit/layout/ContentPane" id="legendPanel"></div>
<div data-dojo-props='region:"center", selected:true' data-dojo-type="dijit/layout/ContentPane" id="detailsPanel"></div>
<div data-dojo-props='region:"center"' data-dojo-type="dijit/layout/ContentPane" id="editorPanel"></div>
</div>
</div>
<div data-dojo-props="region:'center',design:'headline', gutters:false" data-dojo-type="dijit/layout/BorderContainer"
id="mapbc" role="main">
<div data-dojo-props='region:"center"' data-dojo-type="dijit/layout/ContentPane" dir="ltr" id="mapDiv"></div>
<div data-dojo-props='region:"bottom",splitter:true' data-dojo-type="dijit/layout/ContentPane" id="tableDiv">
<div id="featureTable"></div>
</div>
</div>
<!--Modal Splash Screen-->
<div aria-describedby="modalContent" aria-labelledby="modalTitle" class="hide dialog-modal" id="modal" role="dialog"
tabindex="-1">
<div class="modal-content">
<header class="modal-header bg fc">
<h2 class="dialog-modal" id="modalTitle"></h2>
</header>
<div class="copy">
<div class="dialog-modal" id="modalContent"></div>
<input class="dialog-modal bg fc" id="closeOverlay" type="button">
</div>
</div>
</div>
</div>
<script type="text/javascript">
var webgl = location.search.match(/webgl=([\w-]+)/) ? (RegExp.$1).toLowerCase() === "false" ? 0 : 1 : 1;
var package_path = window.location.pathname.substring(0, window.location.pathname.lastIndexOf('/'));
var dojoConfig = {
has: {
"esri-featurelayer-webgl": webgl
},
async: true,
// The locationPath logic below may look confusing but all its doing is
// enabling us to load the api from a CDN and load local modules from the correct location.
packages: [{
name: "application",
location: package_path + '/js'
}, {
name: "config",
location: package_path + '/config'
}, {
name: "arcgis_templates",
location: package_path + '/..'
}]
};
// Have to handle a locale parameter before dojo is loaded
if (location.search.match(/locale=([\w\-]+)/)) {
dojoConfig.locale = RegExp.$1;
}
</script>
<script src="https://js.arcgis.com/3.26/" type="text/javascript">
</script>
<script type="text/javascript">
require([
"dojo/parser",
"config/templateConfig",
"application/template",
"application/main",
"dijit/layout/BorderContainer",
"dijit/layout/ContentPane"
], function (
parser,
templateConfig,
Template,
Main
) {
parser.parse();
// create the template. This will take care of all the logic required for template applications
var myTemplate = new Template(templateConfig);
// create my main application. Start placing your logic in the main.js file.
var myApp = new Main();
// start template
myTemplate.startup().then(function (config) {
// The config object contains the following properties: helper services, (optionally)
// i18n, appid, webmap and any custom values defined by the application.
// In this example we have one called theme.
myApp.startup(config);
}, function (error) {
// something went wrong. Let's report it.
myApp.reportError(error);
});
});
</script>
</body>
</html>