forked from alosaimii/template
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdefault.aspx
More file actions
172 lines (129 loc) · 5.55 KB
/
default.aspx
File metadata and controls
172 lines (129 loc) · 5.55 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
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
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
<%@ Page Language="VB" AutoEventWireup="false" CodeFile="default.aspx.vb" Inherits="_default" Theme="gis" StylesheetTheme="gis" %>
<!DOCTYPE html>
<html lang=en>
<head id="headSection" runat="server">
<meta charset=utf-8>
<title>GIS Template</title>
<link rel="SHORTCUT ICON" href="assets/icons/globe.ico">
<!--The viewport meta tag is used to improve the presentation and behavior of the samples
on iOS devices-->
<meta name="viewport" content="initial-scale=1, maximum-scale=1,user-scalable=no"/>
<!-- Stylesheet Section Start -->
<!-- ext JS Stylesheets -->
<!-- Ext relies on its default css so include it here. -->
<!-- This must come BEFORE javascript includes! -->
<link rel="Stylesheet" href="http://cdn.sencha.io/ext-4.0.7-gpl/resources/css/ext-all.css?v=1.0">
<link rel="Stylesheet" href="css/panel.css?v=1.0">
<!-- Rico Stylesheets -->
<link rel="Stylesheet" href="css/min.rico.css?v=1.0">
<!-- Curvy Corners Stylesheets -->
<link rel="Stylesheet" href="css/curvy.css?v=1.0">
<!-- Dojo Stylesheets -->
<link rel="stylesheet" type="text/css" href="http://serverapi.arcgisonline.com/jsapi/arcgis/2.8/js/dojo/dojox/grid/resources/Grid.css">
<link rel="stylesheet" type="text/css" href="http://serverapi.arcgisonline.com/jsapi/arcgis/2.8/js/dojo/dojox/grid/resources/soriaGrid.css">
<!--[if lt IE 9]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js">
</script>
<![endif]-->
</head>
<body class="soria">
<form id="frmMap" runat="server">
<!-- Script Manager Section Begin -->
<asp:ScriptManager ID="gisScriptManager" runat="server">
</asp:ScriptManager>
<!-- Script Manager Section End -->
<!-- use class="x-hide-display" to prevent flicker of the content -->
<!-- This will contain the map display and map controls -->
<!-- Center Begin -->
<div id="center" class="x-hide-display">
<span>My Map and Tools Section</span>
</div>
<!-- Center End -->
<!-- This will contain the Table of Contents -->
<!-- Props Panel Begin -->
<div id="props-panel" class="x-hide-display">
<span>My TOC Section</span>
</div>
<!-- Props Panel End -->
<!-- Footer Information Will Go Here -->
<!-- Footer Begin -->
<div id="footer" class="x-hide-display">
<span>My Footer Section</span>
</div>
<!-- Footer End -->
</form>
<!-- Script Post Load Begin -->
<script type="text/javascript">
dojoConfig = {
isDebug: true,
baseUrl: "./",
parseOnLoad: true,
modulePaths: { "dijits": "./dijits" }
};
</script>
<!-- Active JavaScript API is 2.8 -->
<!-- By adding the reference to the ESRI JSAPI, it gives us access to the Dojo Framework and ESRI's Dijits. -->
<!-- WARNING: You will need to update this reference if you use a different version of the ESRI JSAPI. -->
<!-- ESRI JavaScript API 2.8 - April 5, 2012 -->
<script src="http://serverapi.arcgisonline.com/jsapi/arcgis/?v=2.8">
</script>
<!-- Importing json.js for JSON functionality. -->
<script src="js/json.js">
</script>
<!-- Google Cdn's -->
<!-- https://developers.google.com/speed/libraries/devguide -->
<!-- YUI Compressor -->
<!-- http://developer.yahoo.com/yui/compressor/ -->
<!-- Ext JS -->
<!-- Originally know as
Library Source:http://www.extjs.com/
New Source: http://www.sencha.com/
-->
<script src="http://cdn.sencha.io/ext-4.0.7-gpl/ext-all.js">
</script>
<!-- jQuery -->
<!-- Library Source: http://jquery.com/ -->
<!-- jQuery Library -->
<script src="js/jquery-1.6.4.js">
</script>
<!-- Prototype 1.7 -->
<!-- Library Source: http://prototypejs.org/ -->
<!-- Use Prototype to handle cross-browser events, manipulate data functions,
handle AJAX and dynamic data. If you want concise straight forward
solutions, use Prototype
-->
<script src="js/prototype.js">
</script>
<!-- Scriptaculous 1.9.0 -->
<!-- Library Source: http://script.aculo.us/ -->
<!-- Scriptaculous is your effects library. It also dependson on Prototype,
so if you want scriptaculous effects, include the prototype.js file
displayed above.
-->
<script src="js/scriptaculous.js">
</script>
<!-- Rico 2.1 -->
<!-- Library Source: http://sourceforge.net/projects/openrico/ -->
<!-- Rico is library of pre-built styles and animation components.
There is limited information on this, so if you plan on using
Ricos, prepare to troubleshoot it yourself. However, it's
minimal coding to integrate into you application and there
is a version 3 that should be out, but activity is low.
-->
<script src="js/rico.js">
</script>
<!-- Load Rico Corner Rounding -->
<script type="text/javascript">
Rico.loadModule('Corner');
</script>
<!-- Curvy Corners 2.1 -->
<!-- Library Source: http://www.curvycorners.net/ -->
<!-- This makes rounded corners work with IE8 -->
<script src="js/curvycorners.js">
</script>
<!-- Page Initialization -->
<script src="js/reactor.js">
</script>
<!-- Script Post Load End -->
</body>
</html>