Skip to content

Radioactivity Map Example #535

Open
Open
@SylvainCorlay

Description

@SylvainCorlay

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

Screenshot from 2020-03-28 23-44-38

I think that a good objective would be to enable the same application in a pure ipyleaflet setting.

Metadata

Metadata

Assignees

No one assigned

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions