Open a map and a label to display results of identify operations:
from ipywidgets import widgets
map = Map()
label = widgets.Label(layout=widgets.Layout(width='100%', max_width='1000px'))
widgets.VBox([map, label])
Add a layer displaying Corine Land Cover with transparency:
p = inter.ImageCollection("CORINE").process().opacity(128)
map.clear()
map.addLayer(p.toLayer())
Activate identify:
mark = inter.identify(map,p,label)