How to plot multiple sets of geospatial data on the same figure?

Is it possible to plot multiple sets of geospatial data on the same figure in Plotly? I have multiple GeoPandas GeoDataFrames that I would like to plot on the same figure (for reference, one contains polygons of lakes, another contains polygons of watershed boundaries). In addition, it would be useful to plot some points on the graph. I can plot any of these individually by calling px.choropleth() or px.scatter_geo. However, I would really like these to show up on the same Figure (e.g., lakes and watersheds in the same figure) with separate labels. Is this supported in Plotly, and if so, can anyone enlighten me on how to accomplish this?

Hi @dlcole3 , welcome to the forums. In general you can have different charts or chart types in one figure. Take a look into " traces"

You can more information (for example) here:

Thank you for the quick response! This is very helpful!