2 {{#*inline "partial_details_one_row"}}
3 <tr class="{{isaddresses_unused this}}">
8 <span class="noname">No Name</span>
11 <td>{{this.class}}:{{this.type}}</td>
12 <td>{{osmLink this}}</td>
13 <td>{{this.rank_address}}</td>
14 <td>{{formatAdminLevel this.admin_level}}</td>
15 <td>{{formatDistance this.distance}}</td>
16 <td>{{detailsLink this null}}</td>
20 {{#*inline "partial_details_keyword_one_row"}}
22 <td>{{formatKeywordToken this.token}}</td>
24 <td>word id: {{this.id}}</td>
30 {{#*inline "partial_h2"}}
31 <tr class="all-columns"><td colspan="6"><h2>{{this}}</h2></td></tr>
34 {{#*inline "partial_h3"}}
35 <tr class="all-columns"><td colspan="6"><h3>{{this}}</h3></td></tr>
38 <div class="container">
40 <div class="col-sm-10">
41 <h1>{{aPlace.localname}} <small>{{detailsPermaLink aPlace 'link to this page'}}</small></h1>
43 <div class="col-sm-2 text-right">
44 {{formatMapIcon aPlace.icon}}
48 <div class="col-md-6">
49 <table id="locationdetails" class="table table-striped">
53 {{#each aPlace.names}}
54 <div class="line"><span class="name">{{this}}</span> ({{@key}})</div>
60 <td>{{aPlace.category}}:{{aPlace.type}}</td>
64 <td>{{aPlace.indexed_date}}</td>
68 <td>{{aPlace.admin_level}}</td>
72 <td>{{formatSearchRank aPlace.rank_search}}</td>
74 {{#if aPlace.calculated_importance}}
78 {{aPlace.calculated_importance}}
79 {{#unless aPlace.importance}} (estimated){{/unless}}
85 <td>{{coverageType aPlace}}</td>
88 <td>Centre Point (lat,lon)</td>
89 <td>{{aPlace.centroid.coordinates.[1]}},{{aPlace.centroid.coordinates.[0]}}</td>
93 <td>{{osmLink aPlace}}
96 <td>Place Id (<a href="https://nominatim.org/release-docs/develop/api/Output/#place_id-is-not-a-persistent-id">on this server</a>)</td>
97 <td>{{aPlace.place_id}}</td>
99 {{#if aPlace.calculated_wikipedia}}
101 <td>Wikipedia Calculated</td>
102 <td>{{wikipediaLink aPlace}}</td>
106 <td>Computed Postcode</td>
107 <td>{{aPlace.calculated_postcode}}</td>
110 <td>Address Tags</td>
112 {{#each aPlace.addresstags}}
113 <div class="line"><span class="name">{{this}}</span> ({{@key}})</div>
120 {{#each aPlace.extratags}}
121 <div class="line"><span class="name">{{this}}</span> ({{@key}})</div>
127 <div class="col-md-6">
132 <div class="col-md-12">
134 <table id="address" class="table table-striped table-responsive">
140 <th>Address rank</th>
147 {{#if aPlace.address}}
148 {{#each aPlace.address}}
149 {{> partial_details_one_row}}
153 {{#if aPlace.linked_places}}
154 {{> partial_h2 'Linked Places'}}
155 {{#each aPlace.linked_places}}
156 {{> partial_details_one_row}}
160 {{#if aPlace.keywords}}
161 {{> partial_h2 'Name Keywords'}}
162 {{#each aPlace.keywords.name}}
163 {{> partial_details_keyword_one_row}}
166 {{> partial_h2 'Address Keywords'}}
167 {{#each aPlace.keywords.address}}
168 {{> partial_details_keyword_one_row}}
172 {{#if aPlace.hierarchy}}
173 {{> partial_h2 'Parent Of'}}
175 {{#each aPlace.hierarchy as |lines type|}}
176 {{> partial_h3 type}}
178 {{> partial_details_one_row}}
182 {{tooManyHierarchyLinesWarning aPlace}}