-
Notifications
You must be signed in to change notification settings - Fork 79
/
index.html
31 lines (31 loc) · 1.73 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
<!DOCTYPE html>
<html lang=en>
<head>
<meta charset=utf-8>
<title>HTML 5 PivotViewer Demos</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
</head>
<body>
<h1>PivotViewer Demos</h1>
<p>To run these demos you first need to create the pivotviewer.min.js file. You will then need to create a scripts folder and copy some files into it.</p>
<p>On Windows you can just run the make.bat script. This will create pivotviewer.min.js and the scripts folder.</p>
<p>Otherwise you will need to first create an empty ChangeLog file in the root directory of the project, then run the following:
<li>./autogen.sh</li>
<li>./configure</li>
<li>make</li>
<li>./mk_scripts_folder.sh</li>
</p>
<h2>Demos</h2>
<ol>
<li><a href="simple.html">Simple collection</a></li>
<li><a href="location.html">Collection with location information</a></li>
<li><a href="time.html">Collection with a time facet</a></li>
<li><a href="geometry.html">Collection with location data and a geometry facet</a></li>
<li><a href="area.html">Collection with location data and associated areas</a></li>
<li><a href="overlay.html">Collection with location data and a map overlay</a></li>
<li><a href="simpleimages.html">Collection using jpg images rather than deepzoom</a></li>
<li><a href="json_simpleimage.html">JSON Collection using jpg images</a> See the json collection <a href="samples/data/simple_ski.json">here.</a></li>
<li><a href="json_deepzoom.html">JSON Collection using deepzoom images.</a> See the json collection <a href="samples/data/nigeria_state.json">here.</a></li>
</ol>
</body>
</html>