# 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
* 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
{
"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",
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);
}