Check out the latest version of Routino: svn co http://routino.org/svn/trunk routino
Annotation of /trunk/extras/find-fixme/web/www/fixme.html
Parent Directory
|
Revision Log
Revision 1472 -
(hide annotations)
(download)
(as text)
Mon Dec 30 16:47:40 2013 UTC (11 years, 2 months ago) by amb
File MIME type: text/html
File size: 6118 byte(s)
Mon Dec 30 16:47:40 2013 UTC (11 years, 2 months ago) by amb
File MIME type: text/html
File size: 6118 byte(s)
Fix some changes that were missed from the last set of HTML updates.
1 | amb | 1367 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> |
2 | amb | 1470 | <html> |
3 | amb | 1367 | |
4 | amb | 1470 | <head> |
5 | amb | 1367 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
6 | amb | 1393 | <meta name="keywords" content="openstreetmap routino fixme"> |
7 | amb | 1367 | |
8 | amb | 1381 | <title>Routino Extras : Viewer for OpenStreetMap "fixme" Tags</title> |
9 | amb | 1367 | |
10 | <!-- | ||
11 | Routino (extras) fixme web page. | ||
12 | |||
13 | Part of the Routino routing software. | ||
14 | |||
15 | This file Copyright 2008-2013 Andrew M. Bishop | ||
16 | |||
17 | This program is free software: you can redistribute it and/or modify | ||
18 | it under the terms of the GNU Affero General Public License as published by | ||
19 | the Free Software Foundation, either version 3 of the License, or | ||
20 | (at your option) any later version. | ||
21 | |||
22 | This program is distributed in the hope that it will be useful, | ||
23 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
24 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
25 | GNU Affero General Public License for more details. | ||
26 | |||
27 | You should have received a copy of the GNU Affero General Public License | ||
28 | along with this program. If not, see http://www.gnu.org/licenses/. | ||
29 | --> | ||
30 | |||
31 | <!-- OpenLayers Javascript library --> | ||
32 | <script src="../openlayers/OpenLayers.js" type="text/javascript"></script> | ||
33 | |||
34 | <!-- Page elements --> | ||
35 | <script src="page-elements.js" type="text/javascript"></script> | ||
36 | <link href="page-elements.css" type="text/css" rel="stylesheet"> | ||
37 | |||
38 | amb | 1393 | <!-- Router and visualiser shared features --> |
39 | amb | 1367 | <link href="maplayout.css" type="text/css" rel="stylesheet"> |
40 | <!--[if IE 6]> | ||
41 | <link href="maplayout-ie6-bugfixes.css" type="text/css" rel="stylesheet"> | ||
42 | <![endif]--> | ||
43 | <!--[if IE 7]> | ||
44 | <link href="maplayout-ie7-bugfixes.css" type="text/css" rel="stylesheet"> | ||
45 | <![endif]--> | ||
46 | |||
47 | <!-- Visualiser specific features --> | ||
48 | <script src="mapprops.js" type="text/javascript"></script> | ||
49 | <script src="fixme.js" type="text/javascript"></script> | ||
50 | <link href="fixme.css" type="text/css" rel="stylesheet"> | ||
51 | amb | 1470 | </head> |
52 | amb | 1367 | |
53 | amb | 1472 | <body onload="map_init();"> |
54 | amb | 1367 | |
55 | <!-- Left hand side of window - data panel --> | ||
56 | |||
57 | <div class="left_panel"> | ||
58 | |||
59 | amb | 1393 | <div class="tab_box"> |
60 | <span id="tab_fixme" onclick="tab_select('fixme');" class="tab_selected" title="View 'fixme' tags">Fixme</span> | ||
61 | <span id="tab_data" onclick="tab_select('data');" class="tab_unselected" title="View database information">Data</span> | ||
62 | </div> | ||
63 | |||
64 | amb | 1367 | <div class="tab_content" id="tab_fixme_div"> |
65 | |||
66 | <div class="hideshow_box"> | ||
67 | <span class="hideshow_title">OSM "fixme" Tags</span> This web page allows | ||
68 | viewing the "fixme" tags in OSM data. It is generated using a modified | ||
69 | version of the Routino router data processor. | ||
70 | <div align="center"> | ||
71 | <a target="other" href="http://www.routino.org/">Routino Website</a> | ||
72 | </div> | ||
73 | </div> | ||
74 | |||
75 | <div class="hideshow_box"> | ||
76 | <span class="hideshow_title">Instructions</span> | ||
77 | Zoom in and then use the button below to download the data. The | ||
78 | server will only return data if the selected area is small enough. | ||
79 | </div> | ||
80 | |||
81 | <div class="hideshow_box"> | ||
82 | <span class="hideshow_title">Status</span> | ||
83 | <div id="result_status"> | ||
84 | <div id="result_status_no_data"> | ||
85 | <b><i>No data displayed</i></b> | ||
86 | </div> | ||
87 | <div id="result_status_data" style="display: none;"> | ||
88 | </div> | ||
89 | <div id="result_status_failed" style="display: none;"> | ||
90 | <b>Failed to get fixme data!</b> | ||
91 | </div> | ||
92 | <div id="result_status_fixme" style="display: none;"> | ||
93 | <b>Processed # "fixme" tags</b> | ||
94 | </div> | ||
95 | </div> | ||
96 | </div> | ||
97 | |||
98 | <div class="hideshow_box"> | ||
99 | <span class="hideshow_title">Get Data</span> | ||
100 | <input type="button" id="fixme" onclick="displayData('fixmes');" value="Display "fixme" tags"> | ||
101 | <input type="button" id="clear" onclick="displayData('');" value="Clear data"> | ||
102 | <br> | ||
103 | The points displayed on the map are the location of items in the OSM data | ||
104 | that are tagged with "fixme" = "...". Clicking on one of the points will | ||
105 | display the Node, Way or Relation identifier and the contents of the tag. | ||
106 | </div> | ||
107 | |||
108 | <div class="hideshow_box"> | ||
109 | <span class="hideshow_title">Links</span> | ||
110 | <a id="permalink_url" onmouseover="updateURL(this);" onfocus="updateURL(this);" onclick="updateURL(this);" href="fixme.html">Permanent link to this view</a> | ||
111 | <br> | ||
112 | <a id="edit_url" onmouseover="updateURL(this);" onfocus="updateURL(this);" onclick="updateURL(this);" target="edit" style="display: none;">Edit OSM source data</a> | ||
113 | </div> | ||
114 | amb | 1439 | |
115 | <div class="hideshow_box"> | ||
116 | <span id="hideshow_help_options_show" onclick="hideshow_show('help_options');" class="hideshow_hide">+</span> | ||
117 | <span id="hideshow_help_options_hide" onclick="hideshow_hide('help_options');" class="hideshow_show">-</span> | ||
118 | <span class="hideshow_title">Help</span> | ||
119 | <div id="hideshow_help_options_div"> | ||
120 | <div class="scrollable"> | ||
121 | <b>Quick Start</b> | ||
122 | <br> | ||
123 | Zoom to an area and select one of the buttons to display the fixme data. | ||
124 | <p> | ||
125 | <b>Data Failure</b> | ||
126 | <br> | ||
127 | If the area selected is too large (depends on the data type) then the | ||
128 | status will say "Failed to get fixme data" - zoom in and try again. | ||
129 | <br> | ||
130 | </div> | ||
131 | </div> | ||
132 | </div> | ||
133 | amb | 1367 | </div> |
134 | |||
135 | amb | 1393 | <div class="tab_content" id="tab_data_div" style="display: none;"> |
136 | <div class="hideshow_box"> | ||
137 | <span class="hideshow_title">Statistics</span> | ||
138 | <div id="statistics_data"></div> | ||
139 | <a id="statistics_link" href="statistics.cgi" onclick="displayStatistics();return(false);">Display data statistics</a> | ||
140 | </div> | ||
141 | </div> | ||
142 | |||
143 | amb | 1367 | </div> |
144 | |||
145 | <!-- Right hand side of window - map --> | ||
146 | |||
147 | <div class="right_panel"> | ||
148 | <div class="map" id="map"> | ||
149 | <noscript> | ||
150 | amb | 1470 | <p> |
151 | Javascript is <em>required</em> to use this web page because of the | ||
152 | interactive map. | ||
153 | amb | 1367 | </noscript> |
154 | </div> | ||
155 | <div class="attribution"> | ||
156 | Data Generator: <a href="http://www.routino.org/" target="routino">Routino</a> | ||
157 | | | ||
158 | Geo Data: <span id="attribution_data"></span> | ||
159 | | | ||
160 | Tiles: <span id="attribution_tile"></span> | ||
161 | </div> | ||
162 | </div> | ||
163 | |||
164 | amb | 1470 | </body> |
165 | amb | 1367 | |
166 | amb | 1470 | </html> |