relicense lantea and mandelbrot to MPL2
[lantea.git] / index.html
... / ...
CommitLineData
1<!-- This Source Code Form is subject to the terms of the Mozilla Public
2 - License, v. 2.0. If a copy of the MPL was not distributed with this file,
3 - You can obtain one at http://mozilla.org/MPL/2.0/. -->
4
5<!DOCTYPE html>
6<html manifest="manifest.appcache">
7<head>
8 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
9 <title>Lantea Map</title>
10 <script src="js/map.js"></script>
11 <script src="js/ui.js"></script>
12 <link rel="stylesheet" href="style/lantea.css">
13 <link rel="shortcut icon" href="style/lanteaIcon16.png" type="image/png">
14</head>
15<body>
16<h1>Lantea Map</h1>
17
18<div id="overlayArea">
19<input type="button" id="zoomInButton" value="+"
20 onclick="zoomIn();">
21<span id="zoomLevel">Z</span>
22<input type="button" id="zoomOutButton" value="-"
23 onclick="zoomOut();"><br/>
24<input type="button" id="trackButton" value="Track"
25 onclick="toggleTrackArea();"><br/>
26<fieldset id="trackArea"><legend>Track</legend>
27<input type="button" id="saveTrackButton" value="Save"
28 onclick="saveTrack();">
29<input type="button" id="clearTrackButton" value="Clear"
30 onclick="clearTrack();"><br/>
31<input type="checkbox" id="trackCheckbox"
32 onchange="setTracking(this);">
33<label for="trackCheckbox">Enable tracking</label><br/>
34<input type="checkbox" id="centerCheckbox"
35 onchange="setCentering(this);">
36<label for="centerCheckbox">Center Map</label><br/>
37</fieldset>
38<input type="button" id="settingsButton" value="Settings"
39 onclick="toggleSettings();"><br/>
40<fieldset id="settingsArea"><legend>Settings</legend>
41Map style:
42<select id="mapSelector" onchange="setMapStyle();">
43<!-- option value="osm_mapnik">OpenStreetMap (Mapnik)</option -->
44</select>
45</fieldset>
46</div>
47
48<canvas id="map" width="500" height="500">
49 Please use a browser that supports &lt;canvas&gt; elements.
50</canvas>
51
52<p id="debug"></p>
53<p id="copyright"></p>
54
55</body>
56</html>