VectorField#

Overview#

VectorField is a field widget to load points data. A custom input widget to load vector data. The user will provide a vector file compatible with fiona. The user can then select a specific shape by setting column and value fields. It inherits from the SepalWidget class. Any argument from the original Layout ipyvuetify class can be used to complement it.

from sepal_ui import sepalwidgets as sw

# correct colors for the documentation
# set to dark in SEPAL by default
import ipyvuetify as v
v.theme.dark = False

vectr_field = sw.VectorField()
vectr_field

the value can be retrieve from the v_model trait.

Note

More information can be found here.