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";
120 <body id="details-page">
121 <?php include(CONST_BasePath.'/lib/template/includes/html-top-navigation.php'); ?>
122 <div class="container">
124 <div class="col-sm-10">
125 <h1><?php echo $aPointDetails['localname'] ?></h1>
127 <div class="col-sm-2 text-right">
128 <?php map_icon($aPointDetails['icon']) ?>
132 <div class="col-md-6">
133 <table id="locationdetails" class="table table-striped">
137 kv('Name' , hash_to_subtable($aPointDetails['aNames']) );
138 kv('Type' , $aPointDetails['class'].':'.$aPointDetails['type'] );
139 kv('Last Updated' , $aPointDetails['indexed_date'] );
140 kv('Admin Level' , $aPointDetails['admin_level'] );
141 kv('Rank' , $aPointDetails['rank_search_label'] );
142 if ($aPointDetails['calculated_importance']) {
143 kv('Importance' , $aPointDetails['calculated_importance'].($aPointDetails['importance']?'':' (estimated)') );
145 kv('Coverage' , ($aPointDetails['isarea']=='t'?'Polygon':'Point') );
146 kv('Centre Point' , $aPointDetails['lat'].','.$aPointDetails['lon'] );
147 kv('OSM' , osm_link($aPointDetails) );
148 if ($aPointDetails['wikipedia'])
150 kv('Wikipedia Calculated' , wikipedia_link($aPointDetails) );
153 kv('Extra Tags' , hash_to_subtable($aPointDetails['aExtraTags']) );
160 <div class="col-md-6">
166 <div class="col-md-12">
170 <table id="address" class="table table-striped table-responsive">
177 <!-- <td>Search rank</td> -->
186 foreach($aAddressLines as $aAddressLine)
188 _one_row($aAddressLine);
198 headline('Linked Places');
199 foreach($aLinkedLines as $aAddressLine)
201 _one_row($aAddressLine);
207 if ($aPlaceSearchNameKeywords)
209 headline('Name Keywords');
210 foreach($aPlaceSearchNameKeywords as $aRow)
212 echo '<div>'.$aRow['word_token']."</div>\n";
216 if ($aPlaceSearchAddressKeywords)
218 headline('Address Keywords');
219 foreach($aPlaceSearchAddressKeywords as $aRow)
221 echo '<div>'.($aRow['word_token'][0]==' '?'*':'').$aRow['word_token'].'('.$aRow['word_id'].')'."</div>\n";
225 if (sizeof($aParentOfLines))
227 headline('Parent Of');
229 $aGroupedAddressLines = array();
230 foreach($aParentOfLines as $aAddressLine)
232 if ($aAddressLine['type'] == 'yes') $sType = $aAddressLine['class'];
233 else $sType = $aAddressLine['type'];
235 if (!isset($aGroupedAddressLines[$sType]))
236 $aGroupedAddressLines[$sType] = array();
237 $aGroupedAddressLines[$sType][] = $aAddressLine;
239 foreach($aGroupedAddressLines as $sGroupHeading => $aParentOfLines)
241 $sGroupHeading = ucwords($sGroupHeading);
242 headline3($sGroupHeading);
244 foreach($aParentOfLines as $aAddressLine)
246 _one_row($aAddressLine);
249 if (sizeof($aParentOfLines) >= 500) {
250 echo '<p>There are more child objects which are not shown.</p>';
254 // headline('Other Parts');
255 // headline('Linked To');
264 <script type="text/javascript">
267 $aNominatimMapInit = [
268 'tile_url' => $sTileURL,
269 'tile_attribution' => $sTileAttribution
271 echo 'var nominatim_map_init = ' . json_encode($aNominatimMapInit, JSON_PRETTY_PRINT) . ';';
274 'outlinestring' => $aPointDetails['outlinestring'],
275 'lon' => $aPointDetails['lon'],
276 'lat' => $aPointDetails['lat'],
278 echo 'var nominatim_result = ' . json_encode($aPlace, JSON_PRETTY_PRINT) . ';';
286 <?php include(CONST_BasePath.'/lib/template/includes/html-footer.php'); ?>