2 {{#*inline "partial_details_one_row"}}
3 <tr class="{{#unless this.isaddress}}notused{{/unless}}">
8 <span class="noname">No Name</span>
11 <td>{{formatPlaceType this}}</td>
12 <td>{{osmLink this}}</td>
13 <td>{{this.rank_address}}</td>
14 <td>{{formatAdminLevel this.admin_level}}</td>
15 <td>{{formatDistance this.distance bDistanceInMeters}}</td>
16 <td>{{detailsPermaLink this 'details >'}}</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">
43 <small>{{detailsPermaLink aPlace 'link to this page'}}</small>
46 <div class="col-sm-2 text-right">
47 {{formatMapIcon aPlace}}
51 <div class="col-md-6">
52 <table id="locationdetails" class="table table-striped">
56 {{#each aPlace.names}}
58 <span class="name">{{this}}</span> ({{@key}})
65 <td>{{aPlace.category}}:{{aPlace.type}}</td>
69 <td>{{aPlace.indexed_date}}</td>
73 <td>{{aPlace.admin_level}}</td>
77 <td>{{formatSearchRank aPlace.rank_search}}</td>
79 {{#if aPlace.calculated_importance}}
83 {{aPlace.calculated_importance}}
84 {{#unless aPlace.importance}} (estimated){{/unless}}
90 <td>{{coverageType aPlace}}</td>
93 <td>Centre Point (lat,lon)</td>
95 {{aPlace.centroid.coordinates.[1]}},{{aPlace.centroid.coordinates.[0]}}
100 <td>{{osmLink aPlace}}
105 (<a href="https://nominatim.org/release-docs/develop/api/Output/#place_id-is-not-a-persistent-id">on this server</a>)
107 <td>{{aPlace.place_id}}</td>
109 {{#if aPlace.calculated_wikipedia}}
111 <td>Wikipedia Calculated</td>
112 <td>{{wikipediaLink aPlace}}</td>
116 <td>Computed Postcode</td>
117 <td>{{aPlace.calculated_postcode}}</td>
120 <td>Address Tags</td>
122 {{#each aPlace.addresstags}}
124 <span class="name">{{this}}</span> ({{@key}})
132 {{#each aPlace.extratags}}
134 <span class="name">{{this}}</span> ({{@key}})
141 <div class="col-md-6">
146 <div class="col-md-12">
148 <table id="address" class="table table-striped table-small">
154 <th>Address rank</th>
161 {{#if aPlace.address}}
162 {{#each aPlace.address}}
163 {{> partial_details_one_row bDistanceInMeters=false}}
167 {{#if aPlace.linked_places}}
168 {{> partial_h2 'Linked Places'}}
169 {{#each aPlace.linked_places}}
170 {{> partial_details_one_row bDistanceInMeters=true}}
174 {{#if aPlace.keywords}}
175 {{> partial_h2 'Name Keywords'}}
176 {{#each aPlace.keywords.name}}
177 {{> partial_details_keyword_one_row}}
180 {{> partial_h2 'Address Keywords'}}
181 {{#each aPlace.keywords.address}}
182 {{> partial_details_keyword_one_row}}
186 {{> partial_h2 'Parent Of'}}
187 {{#if aPlace.hierarchy}}
189 {{#each aPlace.hierarchy as |lines type|}}
190 {{> partial_h3 type}}
192 {{> partial_details_one_row bDistanceInMeters=true}}
198 <a class="btn btn-outline-secondary btn-sm"
199 href="{{base_url}}&hierarchy=1">display child places</a>
203 {{tooManyHierarchyLinesWarning aPlace}}