-<div class="container">
- <div class="row">
- <div class="col-sm-10">
- <h1>
- {{aPlace.localname}}
- <small>{{detailsPermaLink aPlace 'link to this page'}}</small>
- </h1>
- </div>
- <div class="col-sm-2 text-right">
- {{formatMapIcon aPlace.icon}}
- </div>
- </div>
- <div class="row">
- <div class="col-md-6">
- <table id="locationdetails" class="table table-striped">
- <tr>
- <td>Name</td>
- <td>
- {{#each aPlace.names}}
- <div class="line">
- <span class="name">{{this}}</span> ({{@key}})
- </div>
- {{/each}}
- </td>
- </tr>
- <tr>
- <td>Type</td>
- <td>{{aPlace.category}}:{{aPlace.type}}</td>
- </tr>
- <tr>
- <td>Last Updated</td>
- <td>{{aPlace.indexed_date}}</td>
- </tr>
- <tr>
- <td>Admin Level</td>
- <td>{{aPlace.admin_level}}</td>
- </tr>
- <tr>
- <td>Rank</td>
- <td>{{formatSearchRank aPlace.rank_search}}</td>
- </tr>
- {{#if aPlace.calculated_importance}}
- <tr>
- <td>Importance</td>
- <td>
- {{aPlace.calculated_importance}}
- {{#unless aPlace.importance}} (estimated){{/unless}}
- </td>
- </tr>
- {{/if}}
- <tr>
- <td>Coverage</td>
- <td>{{coverageType aPlace}}</td>
- </tr>
- <tr>
- <td>Centre Point (lat,lon)</td>
- <td>
- {{aPlace.centroid.coordinates.[1]}},{{aPlace.centroid.coordinates.[0]}}
- </td>
- </tr>
- <tr>
- <td>OSM</td>
- <td>{{osmLink aPlace}}
- </tr>
- <tr>
- <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>
- <td>{{aPlace.place_id}}</td>
- </tr>
- {{#if aPlace.calculated_wikipedia}}
- <tr>
- <td>Wikipedia Calculated</td>
- <td>{{wikipediaLink aPlace}}</td>
- </tr>
- {{/if}}
- <tr>
- <td>Computed Postcode</td>
- <td>{{aPlace.calculated_postcode}}</td>
- </tr>
- <tr>
- <td>Address Tags</td>
- <td>
- {{#each aPlace.addresstags}}
- <div class="line">
- <span class="name">{{this}}</span> ({{@key}})
- </div>
- {{/each}}
- </td>
- </tr>
- <tr>
- <td>Extra Tags</td>
- <td>
- {{#each aPlace.extratags}}
- <div class="line">
- <span class="name">{{this}}</span> ({{@key}})
- </div>
- {{/each}}
- </td>
- </tr>
- </table>
- </div>
- <div class="col-md-6">
- <div id="map"></div>
- </div>
- </div>
- <div class="row">
- <div class="col-md-12">
- <h2>Address</h2>
- <table id="address" class="table table-striped table-small">
- <thead>
- <tr>
- <th>Local name</th>
- <th>Type</th>
- <th>OSM</th>
- <th>Address rank</th>
- <th>Admin level</th>
- <th>Distance</th>
- <th></th>
- </tr>
- </thead>
- <tbody>
- {{#if aPlace.address}}
- {{#each aPlace.address}}
- {{> partial_details_one_row}}
- {{/each}}
- {{/if}}
-
- {{#if aPlace.linked_places}}
- {{> partial_h2 'Linked Places'}}
- {{#each aPlace.linked_places}}
- {{> partial_details_one_row}}
- {{/each}}
- {{/if}}
-
- {{#if aPlace.keywords}}
- {{> partial_h2 'Name Keywords'}}
- {{#each aPlace.keywords.name}}
- {{> partial_details_keyword_one_row}}
- {{/each}}
-
- {{> partial_h2 'Address Keywords'}}
- {{#each aPlace.keywords.address}}
- {{> partial_details_keyword_one_row}}
- {{/each}}
- {{/if}}
-
- {{> partial_h2 'Parent Of'}}
- {{#if aPlace.hierarchy}}
-
- {{#each aPlace.hierarchy as |lines type|}}
- {{> partial_h3 type}}
- {{#each lines}}
- {{> partial_details_one_row}}
- {{/each}}
- {{/each}}
- {{else}}
- <tr>
- <td>
- <a class="btn btn-outline-secondary btn-sm"
- href="{{base_url}}&hierarchy=1">display child places</a>
- </td>
- </tr>
- {{/if}}
- {{tooManyHierarchyLinesWarning aPlace}}
- </tbody>
- </table>
- </div>
- </div>
-</div>
-
-</script>
-<script id="detailspage-index-template" type="text/x-handlebars-template">
-<div class="container" id="details-index-page">
- <div class="row">
- <div class="col-md-12">
-
- <h1>Show details for place</h1>
-
- <div class="search-form">
- <h4>Search by place id</h4>
-
- <form class="form-inline" action="details.html">
- <input type="edit"
- class="form-control input-sm"
- pattern="^[0-9]+$"
- name="place_id"
- placeholder="12345" />
- <input type="submit"
- class="btn btn-primary btn-sm"
- value="Show" />
- </form>
- </div>
-
- <div class="search-form">
- <h4>Search by OSM type and OSM id</h4>
-
- <form id="form-by-type-and-id"
- class="form-inline"
- action="details.html">
- <input type="edit"
- class="form-control input-sm"
- pattern="^[NWR][0-9]+$"
- placeholder="N123 or W123 or R123" />
- <input type="hidden" name="osmtype" />
- <input type="hidden" name="osmid" />
- <input type="submit" class="btn btn-primary btn-sm" value="Show" />
- </form>
- </div>
-
- <div class="search-form">
- <h4>Search by openstreetmap.org URL</h4>
-
- <form id="form-by-osm-url"
- class="form-inline"
- action="details.html">
- <input type="edit"
- class="form-control input-sm"
- pattern=".*openstreetmap.*"
- placeholder="https://www.openstreetmap.org/relation/123" />
- <input type="hidden" name="osmtype" />
- <input type="hidden" name="osmid" />
- <input type="submit" class="btn btn-primary btn-sm" value="Show" />
- </form>
- </div>