Data-toggle tab does not download Leaflet map

后端 未结 4 1794
抹茶落季
抹茶落季 2020-11-22 09:48

I am using tabs to display clear content, but one of them stopped downloading well since it is in the data-toggle tab. It is a Leaflet map. Here is the code :


相关标签:
4条回答
  • 2020-11-22 09:52

    Welcome to SO!

    If your Leaflet map suddenly works correctly after you resize your browser window, then you experience the classic "map container size not valid at map initialization": in order to work correctly, Leaflet reads the map container size when you initialize the map (L.map("mapContainerId")).

    If your application hides that container (typically through CSS display: none;, or some framework tab / modal / whatever…) or later changes its dimensions, Leaflet will not be aware of the new size. Hence it will not render correctly. Typically, it downloads tiles only for the fraction of the container it thinks is shown. This can be a single tile in the top left corner in the case of a container that was entirely hidden at map initialization time.

    This mistake often arises when embedding the map container in a "tab" or "modal" panel, possibly using popular frameworks (Bootstrap, Angular, Ionic, etc.).

    Leaflet listens to browser window resize event, and reads again the container size when it happens. This explains why the map suddenly works on window resizing.

    You can also manually trigger this update by calling map.invalidateSize() when the tab panel is displayed (e.g. add a listener on the tab button click), at least the first time the container is rendered with its correct dimensions.

    As for implementing the tab button click listener, perform a new search on SO on that topic: you should have plenty resources available for that matter, for most of the popular frameworks.

    0 讨论(0)
  • 2020-11-22 10:03

    For those like me weren't able to solve the challenge with the precious @ghybs explanation (map.invalidateSize()) and were able to do it with @gangai-johann one, there's still a chance you may do it the right way. Put your invalidate instruction inside a setTimeout, as it may be too early to dispatch that instruction.

    setTimeout(() => {
        this.$refs.mymap.mapObject.invalidateSize()
    }, 100)
    

    Refer to https://stackoverflow.com/a/56364130/4537054 answer for detailed instructions.

    0 讨论(0)
  • 2020-11-22 10:08

    I have this problem because i used modal bootstarp. and it not solved anyway. i tried map.invalidateSize() and window.dispatchEvent(new Event('resize')); but not fixed.

    finaly it fixed by this:

    $('#map-modal').on('shown.bs.modal', function(event) {});

    'shown.bs.modal' event means when modal is completely load and not any confuse on size, now inside that write your codes.

    0 讨论(0)
  • 2020-11-22 10:17

    First, thank you @ghybs for your good explanation on why the Leaflet maps are not shown properly in these cases.

    For those who tried unsuccessfully the @ghybs's answer, you should try to resize your browser instead of calling a method of the map object :

    window.dispatchEvent(new Event('resize'));
    

    That fix worked for me, and it should work in every cases.

    0 讨论(0)
提交回复
热议问题