I'm developing a website with openlayers where the user should be able to drag the name of a building from a list of buildings(outside the map) onto a feature on the map.
Since I have found no way to do this with openlayers I thought about doing this by using the interact.js framework. My plan is to select the features by mouse hover so when the user drops something and releases the mouse button then the feature is already selected.
Is it possible to drag something from outside the map onto a feature with openlayers?
If not, have you a better suggestion how to do it like described above?
I found a solution by using the HTML5 drag&drop feature in order to drag a HTML element from outside the map to a polygon on a vector layer. It looks a bit dirty but it works perfectly.
Here is the HTML code with a list of droppable elements and the map:
In order to detect the feature on which the element was dropped I used a select interaction that selects a feature on mouse hover. And here is the JavaScript code that handles the drop event and finds the target feature: