Map fire event after removing
Open
Nobody has claimed this yet.
bug
- Dominant language
- JavaScript
- Stars
- 212
- Forks
- 36
- PR merge metrics
- No merged PRs in 30d
Description
Например, такой код:
map = new DG.Map('map', {
center: new DG.LatLng(54.980206086231, 82.898068362003),
zoom: 15
});
map.on('zoomend', function() {
console.log('zoomend')
map.remove();
console.log('remove')
});
map.on('moveend', function() {
console.log('moveend')
});
Выведет в консоль:
'zoomend'
'remove'
'moveend'
Кажется, что если карта удалена, то никакие обработчики больше вызываться не должны.
Contributor guide
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
Research direction
Reproduce the behavior using the JavaScript example in the issue, focusing on the zoomend handler that calls map.remove() and the subsequent moveend event. Trace the map removal and event-dispatch flow, then verify that no event handlers run after removal.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- javascript
- Domain
- frontend
- Issue type
- Bug
- Difficulty
- 3/5
- Estimated time
- 1-2 days
- Activity status
- Stale
- Clarity
- Mostly clear
- Newbie friendliness
- 35/100