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>
71 {{#if (isAdminBoundary aPlace) }}
74 <td>{{aPlace.admin_level}}</td>
79 <td>{{aPlace.rank_search}}</td>
83 <td>{{aPlace.rank_address}} ({{formatAddressRank aPlace.rank_address}})</td>
85 {{#if aPlace.calculated_importance}}
89 {{aPlace.calculated_importance}}
90 {{#unless aPlace.importance}} (estimated){{/unless}}
96 <td>{{coverageType aPlace}}</td>
99 <td>Centre Point (lat,lon)</td>
101 {{aPlace.centroid.coordinates.[1]}},{{aPlace.centroid.coordinates.[0]}}
106 <td>{{osmLink aPlace}}
111 (<a href="https://nominatim.org/release-docs/develop/api/Output/#place_id-is-not-a-persistent-id">on this server</a>)
113 <td>{{aPlace.place_id}}</td>
115 {{#if aPlace.calculated_wikipedia}}
117 <td>Wikipedia Calculated</td>
118 <td>{{wikipediaLink aPlace}}</td>
122 <td>Computed Postcode</td>
123 <td>{{aPlace.calculated_postcode}}</td>
126 <td>Address Tags</td>
128 {{#each aPlace.addresstags}}
130 <span class="name">{{this}}</span> ({{@key}})
138 {{#each aPlace.extratags}}
140 <span class="name">{{this}}</span> ({{@key}})
147 <div class="col-md-6">
152 <div class="col-md-12">
154 <table id="address" class="table table-striped table-small">
160 <th>Address rank</th>
167 {{#if aPlace.address}}
168 {{#each aPlace.address}}
169 {{> partial_details_one_row bDistanceInMeters=false bAddressLineUsed=this.isaddress}}
173 {{#if aPlace.linked_places}}
174 {{> partial_h2 'Linked Places'}}
175 {{#each aPlace.linked_places}}
176 {{> partial_details_one_row bDistanceInMeters=true bAddressLineUsed=true}}
180 {{> partial_h2 'Keywords'}}
181 {{#if aPlace.keywords}}
182 {{> partial_h3 'Name Keywords'}}
183 {{#each aPlace.keywords.name}}
184 {{> partial_details_keyword_one_row}}
187 {{> partial_h3 'Address Keywords'}}
188 {{#each aPlace.keywords.address}}
189 {{> partial_details_keyword_one_row}}
194 <a class="btn btn-outline-secondary btn-sm"
195 href="{{base_url}}&keywords=1">display keywords</a>
200 {{> partial_h2 'Parent Of'}}
201 {{#if aPlace.hierarchy}}
203 {{#each aPlace.hierarchy as |lines type|}}
204 {{> partial_h3 type}}
206 {{> partial_details_one_row bDistanceInMeters=true bAddressLineUsed=true}}
212 <a class="btn btn-outline-secondary btn-sm"
213 href="{{base_url}}&hierarchy=1">display child places</a>
217 {{tooManyHierarchyLinesWarning aPlace}}