ipyleaflet icon indicating copy to clipboard operation
ipyleaflet copied to clipboard

FullScreenControl doesn't work inside Vscode

Open ebiederstadt opened this issue 1 year ago • 0 comments

Hi there, the FullScreenControl widget doesn't seem to work in vscode. Reproduction steps:

from ipyleaflet import Map, basemaps, basemap_to_tiles, FullScreenControl

m = Map(
    basemap=basemap_to_tiles(basemaps.NASAGIBS.ModisTerraTrueColorCR, "2017-04-08"),
    center=(52.204793, 360.121558),
    zoom=4
)

m.add(FullScreenControl())

m

Run the following in vscode and a Jupyter lab with browser. Observe that the full screen control doesn't work inside vscode, but it does work inside the browser.

Environment:

  • Jupyter lab 4.2.2
  • Browser: Google Chrome
  • ipyleaflet: 0.19.2

ebiederstadt avatar Oct 15 '24 21:10 ebiederstadt