Can I get selected point from plotly map using streamlit like same example done by dash by callback function full code already attached below : #control selection from map by the lasso and square selection tools provided by the Plotly map @app.callback(
Output(‘selected-wells-output’, ‘children’),
[Input(“curves-dropdown”, “value”),
Input(‘datasets-checkbox’, ‘value’),
Input(‘map-plot’, ‘selectedData’)]
)
def update_output(curves, datasets, selected_items):
# return the well names for all wells that match the criterion
curve_mask = locations_df[curves].values.all(axis=1)
dff = locations_df[curve_mask]
dff = dff[dff['Dataset'].isin(datasets)]
# now filter by wells that have been selected in the image.
all_wells = dff['WELL'] # initialize to all of the wells
lasso_wells = None
# now iterate over selected items, and get the relevant point data
# need to do some checks to make sure valid data selected
if selected_items is not None:
for selected_item in [selected_items]:
if selected_item and selected_item['points']:
# get a list of the selected well names
lasso_wells = [p['customdata'][0] for p in selected_item['points']]
select_mask = dff['WELL'].isin(lasso_wells if lasso_wells else all_wells)
dff = dff[select_mask]
num_wells = dff.shape[0]
well_names = dff['WELL'].values
output_text = "\nYou have selected {} wells.\n\n".format(num_wells)
well_list_text = ", ".join("'{}'".format(well_name) for well_name in well_names)
well_list_text = "selected_wells = ["+well_list_text + "]"
return output_text + well_list_text
Thanks for stopping by! We use cookies to help us understand how you interact with our website.
By clicking “Accept all”, you consent to our use of cookies. For more information, please see our privacy policy.
Cookie settings
Strictly necessary cookies
These cookies are necessary for the website to function and cannot be switched off. They are usually only set in response to actions made by you which amount to a request for services, such as setting your privacy preferences, logging in or filling in forms.
Performance cookies
These cookies allow us to count visits and traffic sources so we can measure and improve the performance of our site. They help us understand how visitors move around the site and which pages are most frequently visited.
Functional cookies
These cookies are used to record your choices and settings, maintain your preferences over time and recognize you when you return to our website. These cookies help us to personalize our content for you and remember your preferences.
Targeting cookies
These cookies may be deployed to our site by our advertising partners to build a profile of your interest and provide you with content that is relevant to you, including showing you relevant ads on other websites.