forked from tannerjt/ArcGISThumbnailBuilder
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
91 lines (79 loc) · 3.7 KB
/
Copy pathindex.html
File metadata and controls
91 lines (79 loc) · 3.7 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
<!DOCTYPE html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Raleigh PRCR AGOL Thumbnail Builder</title>
<!-- Compiled and minified CSS -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/css/materialize.min.css">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Montserrat:400,600" rel="stylesheet">
<link rel="stylesheet" href="./css/main.css" />
</head>
<body>
<header>
<nav>
<div class="nav-wrapper">
<a href="./index.html" class="brand-logo">Raleigh PRCR AGOL Thumbnail Builder</a>
</div>
</nav>
</header>
<main>
<div class="container">
<div class="row">
<div class="col m6 offset-m3 s12">
<div class="row">
<canvas id="edit-canvas" class="z-depth-2"></canvas>
</div>
<div class="row">
<h2>Title</h2>
<div class="input-field col s12">
<input placeholder="Add item title" type="text" id="title" name="title" />
</div>
</div>
<div class="row">
<h2>Sidebar</h2>
<div class="input-field col s12">
<select name="category" id="category">
<option value="Basemap">Basemap</option>
<option value="Collector App">Collector App</option>
<option value="Dashboard">Dashboard</option>
<option value="Document">Document</option>
<option value="Feature Service">Feature Service</option>
<option value="Map Service">Map Service</option>
<option value="Story Map">Story Map</option>
<option value="Table">Table</option>
<option value="Web App">Web App</option>
<option value="Web Map" selected>Web Map</option>
</select>
</div>
</div>
<div class="row">
<a id="download-image" download="thumbnail_generated.png" class="waves-effect waves-light btn"><i class="material-icons left">save</i>Download</a>
</div>
</div>
</div>
<!-- /row -->
</div>
</main>
<footer class="page-footer">
<div class="container">
<div class="row">
<div class="col l12 s12">
<p>
Originally developed as <i><a href="https://dev.navigator.oregon.gov/agol/thumbnailbuilder/index.html">ArcGIS Thumbnail Builder</a></i> by <a href="https://github.com/tannerjt">Joshua Tanner</a> under the <a href="https://opensource.org/licenses/GPL-3.0">GNU General Public License v3.0</a> and customized by <a href="https://github.com/maptastik">Ryan Cooper</a> for use by City of Raleigh Parks, Recreation and Cultural Resources GIS. You can find Josh's original code <a href="https://github.com/tannerjt/ArcGISThumbnailBuilder">here</a> and the custom PRCR code <a href="https://github.com/skarplab/ArcGISThumbnailBuilder">here</a>.
</p>
</div>
</div>
</div>
</footer>
<!-- /container -->
<!-- Compiled and minified JavaScript -->
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha256-3edrmyuQ0w65f8gfBsqowzjJe2iM6n0nKciPUp8y+7E=" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/js/materialize.min.js"></script>
<script src="./js/materialize-colorpicker.min.js"></script>
<script src="./js/config.js"></script>
<script src="./js/editCanvas.js"></script>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-12419040-13"></script>
</body>
</html>