2 {{#*inline "partial_details_one_row"}}
3 <tr class="{{#unless bAddressLineUsed}}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>{{#if this.osm_id}}<a href="{{detailsURL this}}">details</a>{{/if}}</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><a href="{{detailsURL aPlace}}">link to this page</a></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>{{aPlace.rank_search}}</td>
81 <td>{{aPlace.rank_address}} ({{formatAddressRank aPlace.rank_address}})</td>
83 {{#if aPlace.calculated_importance}}
87 {{aPlace.calculated_importance}}
88 {{#unless aPlace.importance}} (estimated){{/unless}}
94 <td>{{coverageType aPlace}}</td>
97 <td>Centre Point (lat,lon)</td>
99 {{aPlace.centroid.coordinates.[1]}},{{aPlace.centroid.coordinates.[0]}}
104 <td>{{osmLink aPlace}}
109 (<a href="https://nominatim.org/release-docs/develop/api/Output/#place_id-is-not-a-persistent-id">on this server</a>)
111 <td>{{aPlace.place_id}}</td>
113 {{#if aPlace.calculated_wikipedia}}
115 <td>Wikipedia Calculated</td>
116 <td>{{wikipediaLink aPlace}}</td>
120 <td>Computed Postcode</td>
121 <td>{{aPlace.calculated_postcode}}</td>
124 <td>Address Tags</td>
126 {{#each aPlace.addresstags}}
128 <span class="name">{{this}}</span> ({{@key}})
136 {{#each aPlace.extratags}}
138 <span class="name">{{this}}</span> ({{@key}})
145 <div class="col-md-6">
150 <div class="col-md-12">
152 <table id="address" class="table table-striped table-small">
158 <th>Address rank</th>
165 {{#if aPlace.address}}
166 {{#each aPlace.address}}
167 {{> partial_details_one_row bDistanceInMeters=false bAddressLineUsed=this.isaddress}}
171 {{#if aPlace.linked_places}}
172 {{> partial_h2 'Linked Places'}}
173 {{#each aPlace.linked_places}}
174 {{> partial_details_one_row bDistanceInMeters=true bAddressLineUsed=true}}
178 {{#if aPlace.keywords}}
179 {{> partial_h2 'Name Keywords'}}
180 {{#each aPlace.keywords.name}}
181 {{> partial_details_keyword_one_row}}
184 {{> partial_h2 'Address Keywords'}}
185 {{#each aPlace.keywords.address}}
186 {{> partial_details_keyword_one_row}}
190 {{> partial_h2 'Parent Of'}}
191 {{#if aPlace.hierarchy}}
193 {{#each aPlace.hierarchy as |lines type|}}
194 {{> partial_h3 type}}
196 {{> partial_details_one_row bDistanceInMeters=true bAddressLineUsed=true}}
202 <a class="btn btn-outline-secondary btn-sm"
203 href="{{base_url}}&hierarchy=1">display child places</a>
207 {{tooManyHierarchyLinesWarning aPlace}}