2gis / 2gis/mapsapi

Map fire event after removing

Open
#281 0 comments 0 reactions 0 assignees View on GitHub

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

Open the contributing guide

First steps

  1. Read the whole issue, then the project's contributing guide.
  2. Comment on the issue to say you are picking it up — it saves two people doing the same work.
  3. Fork the repository and make your change on a branch.
  4. 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

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.