]> git.openstreetmap.org Git - nominatim-ui.git/commitdiff
detail page: support &osmtype, &osmid
authormarc tobias <mtmail@gmx.net>
Fri, 2 Mar 2018 10:37:43 +0000 (11:37 +0100)
committermarc tobias <mtmail@gmx.net>
Fri, 2 Mar 2018 10:37:43 +0000 (11:37 +0100)
TODO.md
src/assets/js/nominatim-ui.js

diff --git a/TODO.md b/TODO.md
index 6f5327248a9b1b5ba05bc430783629e9db53dc9c..a445427260e872aa9307729ff0ef2a350ec5ab00 100644 (file)
--- a/TODO.md
+++ b/TODO.md
@@ -12,7 +12,6 @@
 * reverse: zoom not set
 http://localhost:8000/reverse.html?format=html&lat=52.3755991766591&lon=7.646484374999999&zoom=
 * error message on API error or timeout
-* detail: support `osm_type`, `osm_id` paramters
 * search page: add pagination, moreurl
 * search page: add viewbox
 * details page: add "There are more child objects which are not shown" back in
@@ -59,5 +58,4 @@ http://localhost:8000/reverse.html?format=html&lat=52.3755991766591&lon=7.646484
 * aResults vs aPlace vs aFeature variable naming
 * use CSS preprocessor and linter
 * use eslint
-* add a /vendor directory for third-party files
 
index 8c8c8af57e18ffc4d9f942d269fc9788e6833cf5..d6b8c65c358a177278d0e9279d361c0da4f08cfc 100755 (executable)
@@ -444,6 +444,8 @@ jQuery(document).ready(function(){
 
     var api_request_params = {
         place_id: search_params.get('place_id'),
+        place_id: search_params.get('osmtype'),
+        place_id: search_params.get('osmid'),
         group_parents: 1,
         format: 'json'
     };