From: marc tobias Date: Sat, 30 Nov 2019 12:45:44 +0000 (+0100) Subject: HTML page with search form when /details.php called without params X-Git-Url: https://git.openstreetmap.org/nominatim-ui.git/commitdiff_plain/57677ca79205b13b8a2e201505cbb8d46e17f78c?ds=sidebyside HTML page with search form when /details.php called without params --- diff --git a/src/assets/css/details.css b/src/assets/css/details.css index 903ebff..4d9a8ac 100755 --- a/src/assets/css/details.css +++ b/src/assets/css/details.css @@ -54,3 +54,14 @@ #details-page .mapicon { margin: 10px 0; } + +#details-index-page .search-form { + padding: 20px 10px; + margin: 2em 0; +} +#details-index-page .search-form h4 { + margin-top: 0; +} +#details-index-page .search-form .form-control{ + width: 30em; +} diff --git a/src/assets/js/detailpage.js b/src/assets/js/detailpage.js index 49ec981..65b2dc0 100644 --- a/src/assets/js/detailpage.js +++ b/src/assets/js/detailpage.js @@ -64,16 +64,40 @@ jQuery(document).ready(function(){ format: 'json' }; - fetch_from_api('details', api_request_params, function(aFeature){ + if (api_request_params.place_id || (api_request_params.osmtype && api_request_params.osmid )){ + fetch_from_api('details', api_request_params, function(aFeature){ - var context = { aPlace: aFeature }; + var context = { aPlace: aFeature }; - render_template($('main'), 'detailspage-template', context); + render_template($('main'), 'detailspage-template', context); - update_data_date(); + update_data_date(); - var lat = aFeature.centroid.coordinates[1]; - var lon = aFeature.centroid.coordinates[0]; - init_map_on_detail_page(lat, lon, aFeature.geometry); + var lat = aFeature.centroid.coordinates[1]; + var lon = aFeature.centroid.coordinates[0]; + init_map_on_detail_page(lat, lon, aFeature.geometry); + }); + } else { + render_template($('main'), 'detailspage-index-template'); + } + + $('#form-by-type-and-id,#form-by-osm-url').on('submit', function(e){ + e.preventDefault(); + + var val = $(this).find('input[type=edit]').val(); + var matches = val.match(/^\s*([NWR])(\d+)\s*$/i); + + if (!matches) { + matches = val.match(/\/(relation|way|node)\/(\d+)\s*$/); + } + + if (matches) { + $(this).find('input[name=osmtype]').val(matches[1].charAt(0).toUpperCase()); + $(this).find('input[name=osmid]').val(matches[2]); + $(this).get(0).submit(); + } else { + alert('invalid input'); + } }); + }); \ No newline at end of file diff --git a/src/layout.html b/src/layout.html index a96cf7e..9903aab 100644 --- a/src/layout.html +++ b/src/layout.html @@ -120,6 +120,9 @@ + diff --git a/src/templates/detailspage-index.hbs b/src/templates/detailspage-index.hbs new file mode 100644 index 0000000..7930b77 --- /dev/null +++ b/src/templates/detailspage-index.hbs @@ -0,0 +1,40 @@ +
+
+
+ +

Show details for place

+ +
+

Search by place id

+ +
+ + +
+
+ +
+

Search by OSM type and OSM id

+ +
+ + + + +
+
+ +
+

Search by openstreetmap.org URL

+ +
+ + + + +
+
+ +
+
+
\ No newline at end of file