Change auto close of map marker popup to 3000 miliseconds

This commit is contained in:
Wolfgang Huß 2023-01-29 11:34:55 +01:00
parent aaf4c18aa5
commit 54cf350ce8

View File

@ -249,7 +249,7 @@ export default {
this.popupOnLeaveTimeoutId = setTimeout(() => {
this.map.getCanvas().style.cursor = ''
this.markers.popup.remove()
}, 2000)
}, 3000)
}
})