Create interactive maps¶
In [1]:
Copied!
import ortho_modificator
import ortho_modificator
In [2]:
Copied!
m = ortho_modificator.Map()
data = "https://github.com/opengeos/datasets/releases/download/us/us_states.geojson"
m.add_geojson(data, name="Countries")
m.add_layer_control()
m
m = ortho_modificator.Map()
data = "https://github.com/opengeos/datasets/releases/download/us/us_states.geojson"
m.add_geojson(data, name="Countries")
m.add_layer_control()
m
Out[2]:
In [ ]:
Copied!