2 header("content-type: text/html; charset=UTF-8");
4 <?php include(CONST_BasePath.'/lib/template/includes/html-header.php'); ?>
5 <link href="css/common.css" rel="stylesheet" type="text/css" />
6 <link href="css/details.css" rel="stylesheet" type="text/css" />
13 function headline($sTitle)
15 echo "<tr class='all-columns'><td colspan='6'><h2>".$sTitle."</h2></td></tr>\n";
18 function headline3($sTitle)
20 echo "<tr class='all-columns'><td colspan='6'><h3>".$sTitle."</h3></td></tr>\n";
23 function osm_link($aFeature)
25 $sOSMType = ($aFeature['osm_type'] == 'N'?'node':($aFeature['osm_type'] == 'W'?'way':($aFeature['osm_type'] == 'R'?'relation':'')));
28 return '<a href="http://www.openstreetmap.org/browse/'.$sOSMType.'/'.$aFeature['osm_id'].'">'.$sOSMType.' '.$aFeature['osm_id'].'</a>';
33 function wikipedia_link($aFeature)
35 if ($aFeature['wikipedia'])
37 list($sWikipediaLanguage,$sWikipediaArticle) = explode(':',$aFeature['wikipedia']);
38 return '<a href="https://'.$sWikipediaLanguage.'.wikipedia.org/wiki/'.urlencode($sWikipediaArticle).'" target="_blank">'.$aFeature['wikipedia'].'</a>';
43 function nominatim_link($aFeature, $sTitle)
45 return '<a href="details.php?place_id='.$aFeature['place_id'].'">'.$sTitle.'</a>';
48 function format_distance($fDistance)
50 // $fDistance is in meters
55 elseif ($fDistance < 1000)
57 return'<abbr class="distance" title="'.$fDistance.'">~'.(round($fDistance,0)).' m</abbr>';
61 return'<abbr class="distance" title="'.$fDistance.'">~'.(round($fDistance/1000,1)).' km</abbr>';
65 function kv($sKey,$sValue)
67 echo ' <tr><td>' . $sKey . '</td><td>'.$sValue.'</td></tr>'. "\n";
71 function hash_to_subtable($aAssociatedList)
74 foreach($aAssociatedList as $sKey => $sValue)
76 $sHTML = $sHTML.' <div class="line"><span class="name">'.$sValue.'</span> ('.$sKey.')</div>'."\n";
81 // function hash_to_subtable($aAssociatedList)
83 // $sHTML = '<table class="table">';
84 // foreach($aAssociatedList as $sKey => $sValue)
86 // $sHTML = $sHTML . '<tr><td>'.$sKey.'</td><td class="name">'.$sValue.'</td></tr>'."\n";
88 // $sHTML = $sHTML . '</table>';
93 function map_icon($sIcon)
96 echo '<img id="mapicon" src="'.CONST_Website_BaseURL.'images/mapicons/'.$sIcon.'.n.32.png'.'" alt="'.$sIcon.'" />';
101 function _one_row($aAddressLine){
102 $bNotUsed = (isset($aAddressLine['isaddress']) && $aAddressLine['isaddress'] == 'f');
104 echo '<tr class="' . ($bNotUsed?'notused':'') . '">'."\n";
105 echo ' <td class="name">'.(trim($aAddressLine['localname'])?$aAddressLine['localname']:'<span class="noname">No Name</span>')."</td>\n";
106 echo ' <td>' . $aAddressLine['class'].':'.$aAddressLine['type'] . "</td>\n";
107 echo ' <td>' . osm_link($aAddressLine) . "</td>\n";
108 echo ' <td>' . (isset($aAddressLine['admin_level']) ? $aAddressLine['admin_level'] : '') . "</td>\n";
109 // echo '<td>' . (isset($aAddressLine['rank_search_label']) ? $aAddressLine['rank_search_label'] : '') ."</td>\n";
110 // echo ', <span class="area">'.($aAddressLine['fromarea']=='t'?'Polygon':'Point').'</span>';
111 echo ' <td>' . format_distance($aAddressLine['distance'])."</td>\n";
112 echo ' <td>' . nominatim_link($aAddressLine,'details >') . "</td>\n";
116 function _one_keyword_row($keyword_token,$word_id){
119 // mark partial tokens (those starting with a space) with a star for readability
120 echo ($keyword_token[0]==' '?'*':'');
124 echo '</td><td>word id: '.$word_id;
133 <body id="details-page">
134 <?php include(CONST_BasePath.'/lib/template/includes/html-top-navigation.php'); ?>
135 <div class="container">
137 <div class="col-sm-10">
138 <h1><?php echo $aPointDetails['localname'] ?></h1>
140 <div class="col-sm-2 text-right">
141 <?php map_icon($aPointDetails['icon']) ?>
145 <div class="col-md-6">
146 <table id="locationdetails" class="table table-striped">
150 kv('Name' , hash_to_subtable($aPointDetails['aNames']) );
151 kv('Type' , $aPointDetails['class'].':'.$aPointDetails['type'] );
152 kv('Last Updated' , $aPointDetails['indexed_date'] );
153 kv('Admin Level' , $aPointDetails['admin_level'] );
154 kv('Rank' , $aPointDetails['rank_search_label'] );
155 if ($aPointDetails['calculated_importance']) {
156 kv('Importance' , $aPointDetails['calculated_importance'].($aPointDetails['importance']?'':' (estimated)') );
158 kv('Coverage' , ($aPointDetails['isarea']=='t'?'Polygon':'Point') );
159 kv('Centre Point' , $aPointDetails['lat'].','.$aPointDetails['lon'] );
160 kv('OSM' , osm_link($aPointDetails) );
161 if ($aPointDetails['wikipedia'])
163 kv('Wikipedia Calculated' , wikipedia_link($aPointDetails) );
166 kv('Extra Tags' , hash_to_subtable($aPointDetails['aExtraTags']) );
173 <div class="col-md-6">
179 <div class="col-md-12">
183 <table id="address" class="table table-striped table-responsive">
190 <!-- <td>Search rank</td> -->
199 foreach($aAddressLines as $aAddressLine)
201 _one_row($aAddressLine);
211 headline('Linked Places');
212 foreach($aLinkedLines as $aAddressLine)
214 _one_row($aAddressLine);
220 if ($aPlaceSearchNameKeywords)
222 headline('Name Keywords');
223 foreach($aPlaceSearchNameKeywords as $aRow)
225 _one_keyword_row($aRow['word_token'], $aRow['word_id']);
229 if ($aPlaceSearchAddressKeywords)
231 headline('Address Keywords');
232 foreach($aPlaceSearchAddressKeywords as $aRow)
234 _one_keyword_row($aRow['word_token'], $aRow['word_id']);
238 if (sizeof($aParentOfLines))
240 headline('Parent Of');
242 $aGroupedAddressLines = array();
243 foreach($aParentOfLines as $aAddressLine)
245 if ($aAddressLine['type'] == 'yes') $sType = $aAddressLine['class'];
246 else $sType = $aAddressLine['type'];
248 if (!isset($aGroupedAddressLines[$sType]))
249 $aGroupedAddressLines[$sType] = array();
250 $aGroupedAddressLines[$sType][] = $aAddressLine;
252 foreach($aGroupedAddressLines as $sGroupHeading => $aParentOfLines)
254 $sGroupHeading = ucwords($sGroupHeading);
255 headline3($sGroupHeading);
257 foreach($aParentOfLines as $aAddressLine)
259 _one_row($aAddressLine);
262 if (sizeof($aParentOfLines) >= 500) {
263 echo '<p>There are more child objects which are not shown.</p>';
267 // headline('Other Parts');
268 // headline('Linked To');
277 <script type="text/javascript">
280 $aNominatimMapInit = [
281 'tile_url' => $sTileURL,
282 'tile_attribution' => $sTileAttribution
284 echo 'var nominatim_map_init = ' . json_encode($aNominatimMapInit, JSON_PRETTY_PRINT) . ';';
287 'outlinestring' => $aPointDetails['outlinestring'],
288 'lon' => $aPointDetails['lon'],
289 'lat' => $aPointDetails['lat'],
291 echo 'var nominatim_result = ' . json_encode($aPlace, JSON_PRETTY_PRINT) . ';';
299 <?php include(CONST_BasePath.'/lib/template/includes/html-footer.php'); ?>