Simple example of a fullscreen map.
()
| 23 | |
| 24 | @app.route("/") |
| 25 | def fullscreen(): |
| 26 | """Simple example of a fullscreen map.""" |
| 27 | m = folium.Map() |
| 28 | return m.get_root().render() |
| 29 | |
| 30 | |
| 31 | @app.route("/iframe") |
nothing calls this directly
no test coverage detected
searching dependent graphs…