forked from Esri/quickstart-map-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·107 lines (107 loc) · 4.71 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
<!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">
<meta name="viewport" content="initial-scale=1, maximum-scale=1,user-scalable=no">
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<meta name="description" content=""/>
<meta name="author" content="Allan Laframboise"/>
<title>Mapping Examples</title>
<!--link href="css/examples.css" rel="stylesheet"/-->
<link href="css/bootstrap.css" rel="stylesheet"/>
<link href="css/bootstrap-responsive.css" rel="stylesheet"/>
<style type="text/css">
.container-narrow {
margin: 0 auto;
max-width: 700px;
}
.well-small {
max-width: 300px;
margin: 0 auto 10px;
}
.btn-max-width {
/*max-width: 250px;*/
margin-bottom: 5px;
}
.btn-wide-75 {
width: 65%;
}
</style>
</head>
<body>
<div class="container-narrow">
<div class="row-fluid lead text-center">
<h3>ArcGIS JavaScript Quickstart Mapping Examples</h3>
<p>Simple apps to get you going fast!</p>
</div>
<div class="row-fluid">
<div class="span6">
<div class="well well-small">
<h3 class="text-center">Maps</h3>
<ul class="unstyled text-center">
<li><a href='html/basemaps/basemaps.html') class="btn btn-primary btn-wide-75 btn-max-width">Basemaps</a></li>
<li><a href='html/basemaps/basemaps_widget.html') class="btn btn-primary btn-wide-75 btn-max-width">Basemaps Widget</a></li>
<li><a href='html/basemaps/basemap_watercolor.html') class="btn btn-primary btn-wide-75 btn-max-width">Watercolor Basemap</a></li>
<li><a href='html/basemaps/basemaptour.html') class="btn btn-primary btn-wide-75 btn-max-width">Basemap Tour</a></li>
</ul>
</div>
</div>
<div class="span6">
<div class="well well-small">
<h3 class="text-center">Geocoding</h3>
<ul class="unstyled text-center">
<li><a href='html/geocode/geosearch.html') class="btn btn-primary btn-wide-75 btn-max-width">Find Places</a></li>
<li><a href='html/geocode/geosearch_widget.html') class="btn btn-primary btn-wide-75 btn-max-width">Find Places Widget</a></li>
<li><a href='html/geocode/reversegeocode.html') class="btn btn-primary btn-wide-75 btn-max-width">Find Address</a></li>
</ul>
</div>
</div>
</div>
<div class="row-fluid">
<div class="span6">
<div class="well well-small">
<h3 class="text-center">Directions</h3>
<ul class="unstyled text-center">
<li><a href='html/directions/directions.html') class="btn btn-primary btn-wide-75 btn-max-width">Directions</a></li>
<li><a href='html/directions/directions_widget.html') class="btn btn-primary btn-wide-75 btn-max-width">Directions Widget</a></li>
<li><a href='html/drivetime/drivetime.html') class="btn btn-primary btn-wide-75 btn-max-width">Drive Time</a></li>
<li><a href='html/routing/routes_and_barriers.html') class="btn btn-primary btn-wide-75 btn-max-width">Routes & Barriers</a></li>
<!--li><a href='html/routing/traffic.html') class="btn btn-primary btn-wide-75 btn-max-width">World Traffic</a></li-->
</ul>
</div>
</div>
<div class="span6">
<div class="well well-small">
<h3 class="text-center">Data and Services</h3>
<ul class="unstyled text-center">
<li><a href='html/maps/webmapbyid.html') class="btn btn-primary btn-wide-75 btn-max-width">Load Webmap</a></li>
<li><a href='html/cloud/load_feature_service.html') class="btn btn-primary btn-wide-75 btn-max-width">Load Feature Service</a></li>
<li><a href='html/cloud/query_feature_service.html') class="btn btn-primary btn-wide-75 btn-max-width">Query Feature Service</a></li>
<li><a href='html/data/load_flickr_json.html') class="btn btn-primary btn-wide-75 btn-max-width">Load Flickr JSON</a></li>
</ul>
</div>
</div>
</div>
<div class="row-fluid">
<div class="span6">
<div class="well well-small">
<h3 class="text-center">Graphics</h3>
<ul class="unstyled text-center">
<li><a href='html/graphics/graphics.html') class="btn btn-primary btn-wide-75 btn-max-width">Draw Graphics</a></li>
<li><a href='html/graphics/graphics_toolbar.html') class="btn btn-primary btn-wide-75 btn-max-width">Draw Graphics Widget</a></li>
</ul>
</div>
</div>
<div class="span6">
<div class="well well-small">
<h3 class="text-center">Misc</h3>
<ul class="unstyled text-center">
<li><a href='html/geolocation/geolocation.html') class="btn btn-primary btn-wide-75 btn-max-width">HTML 5 Geolocation</a></li>
</ul>
</div>
</div>
</div>
</div>
</body>
</html>