From 1085c973d2da801836e2eac33dcd96532bfd04d7 Mon Sep 17 00:00:00 2001 From: Rodja Trappe Date: Fri, 15 Dec 2023 06:58:07 +0100 Subject: [PATCH] fixed function name --- website/documentation/content/leaflet_documentation.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/documentation/content/leaflet_documentation.py b/website/documentation/content/leaflet_documentation.py index 6ed96abc2..5baaf2be7 100644 --- a/website/documentation/content/leaflet_documentation.py +++ b/website/documentation/content/leaflet_documentation.py @@ -47,7 +47,7 @@ def markers() -> None: These can be added with the `generic_layer` method. We are happy to review any pull requests to add more specific layers to simplify usage. ''') -def markers() -> None: +def vector_layers() -> None: m = ui.leaflet(location=(51.505, -0.09)).classes('h-32') m.generic_layer(name='circle', args=[[51.505, -0.09], {'color': 'red', 'radius': 300}])