Indoor map plot

Hi! I am new to plotly and i have some indoor data to plot. Specifically a geopandas dataframe of tables (polygons) all in the form POLYGON ((2.047 8.142, 2.046 6.142, 6.046 6.14…) on top of which i will have to plot some trajectory points contained in another geodataframe. I can easily plot them using matplotlib in this way:

fig, ax = plt.subplots(figsize = (20,20))
tables.plot(ax=ax, alpha = 0.2, color = 'blue')
traj.plot(ax=ax, color = 'red', label = 'traj')
plt.show()

but i cannot find a way to plot them using plotly. Do you have some suggestions? thanks in advance