]> git.openstreetmap.org Git - nominatim-ui.git/commitdiff
reverse map: add tooltips to circle markers
authormarc tobias <mtmail@gmx.net>
Tue, 24 May 2022 12:53:40 +0000 (14:53 +0200)
committermtmail <mtmail@gmx.net>
Tue, 24 May 2022 13:03:54 +0000 (15:03 +0200)
CHANGES.md
package.json
src/components/Map.svelte

index 3aa02a021040e3b93c82eb0ea588aeb11e313884..0887d3da1f227184cfa5631c6d78bda62aa97b38 100644 (file)
@@ -1,5 +1,9 @@
 # CHANGES
 
+* version 3.2.5 - 2022-05-24
+
+    * Reverse map: add tooltips to circles as hint what is the search and what is result position
+
 * version 3.2.4 - 2022-05-05
 
     * Configuration: Nominatim_API_Endpoint can now also be a callback
@@ -9,10 +13,6 @@
 
     * Fix: On Search page the 'deduplication' checkbox needs to be checked by default
 
-* version 3.2.3 - 2022-04-05
-
-    * Fix: On Search page the 'deduplication' checkbox needs to be checked by default
-
 * version 3.2.2 - 2022-02-08
 
     * NPM package updates
index bbfae03fffaa3f134cf01ec9363eae58659c8d6f..120c9dc5f913ccc385e1078b816e331d7f55ecee 100644 (file)
@@ -1,7 +1,7 @@
 {
   "name": "nominatim-ui",
   "description": "Debug web interface for Nominatim geocoder",
-  "version": "3.2.4",
+  "version": "3.2.5",
   "license": "GPL-2.0",
   "scripts": {
     "build": "rollup -c",
index b3b9e833e6d7e9b5912a91975952b2b8a369ffa8..763495d420c8936f9f5b57aae4cffcd9a892110f 100644 (file)
           clickable: false
         }
       );
+      cm.bindTooltip(`Search (${position_marker[0]},${position_marker[1]})`).openTooltip();
       cm.addTo(map);
       dataLayers.push(cm);
     }
       let circle = L.circleMarker([lat, lon], {
         radius: 10, weight: 2, fillColor: '#ff7800', color: 'blue', opacity: 0.75
       });
+      if (position_marker) { // reverse result
+        circle.bindTooltip('Result').openTooltip();
+      }
       map.addLayer(circle);
       dataLayers.push(circle);
     }