We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
При клике в недрагабельные маркеры без балунов проскакиевает клик в карту. Маркеры создаются:
md1 = DG.marker([54.98, 82.91]).addTo(map); md1.bindLabel('Я статическая подсказка 1 !', { static: true });
The text was updated successfully, but these errors were encountered:
Для получения бага достаточно DG.marker([54.98, 82.91]).addTo(map);.
DG.marker([54.98, 82.91]).addTo(map);
Так работает leaflet, если на layer, а в нашем случае. на маркер не навешивается не одно событие, то он пропускает его дальше.
Например, так:
DG.marker([54.98, 82.91]) .on('click', function () { console.log('marker click'); }) .addTo(map);
клик в карту уже не будет срабатывать.
С @ilfa обсудили, решили пока не заморачиваться.
Sorry, something went wrong.
No branches or pull requests
При клике в недрагабельные маркеры без балунов проскакиевает клик в карту.
Маркеры создаются:
The text was updated successfully, but these errors were encountered: