Open
Description
I just found out this really nice app based on LeafletJS by the ISRN:
https://cartoradon.irsn.fr/static/ (which is embedded on this page).
This has two interesting components:
- The Search Control for which I opended a feature request Search Control #534
- The tile layer for natural radio activity level, which we can reuse:
from ipyleaflet import Map, TileLayer, FullScreenControl
m = Map(center=(47, 2), zoom=5)
radon = TileLayer(url='https://cartoradon.irsn.fr/static/r/{z}/{x}/{y}.png',
tms=True, opacity=0.5)
m.add_layer(radon)
fullscreen = FullScreenControl()
m.add_control(fullscreen)
m
I think that a good objective would be to enable the same application in a pure ipyleaflet setting.