(args, fig, orders)
| 840 | |
| 841 | |
| 842 | def configure_geo(args, fig, orders): |
| 843 | fig.update_geos( |
| 844 | center=args["center"], |
| 845 | scope=args["scope"], |
| 846 | fitbounds=args["fitbounds"], |
| 847 | visible=args["basemap_visible"], |
| 848 | projection=dict(type=args["projection"]), |
| 849 | ) |
| 850 | |
| 851 | |
| 852 | def configure_animation_controls(args, constructor, fig): |
nothing calls this directly
no test coverage detected