Use bootstrap 4.5.0 in all examples

This commit is contained in:
Maximilian Krög
2020-07-27 20:15:55 +02:00
parent cad5057a96
commit 594ba4a0ab
8 changed files with 21 additions and 21 deletions

View File

@@ -75,14 +75,14 @@ map.on('click', function (evt) {
});
$(element).popover('show');
} else {
$(element).popover('destroy');
$(element).popover('dispose');
}
});
// change mouse cursor when over marker
map.on('pointermove', function (e) {
if (e.dragging) {
$(element).popover('destroy');
$(element).popover('dispose');
return;
}
const pixel = map.getEventPixel(e.originalEvent);