Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix docstrings #1098

Merged
merged 8 commits into from
May 8, 2024
Prev Previous commit
Next Next commit
Another tiny fix in docstrings for the geom_livemap() function.
  • Loading branch information
ASmirnov-HORIS committed May 8, 2024
commit 0e52afed9e57480784c27963550406e0edb6eae7
4 changes: 2 additions & 2 deletions python-package/lets_plot/plot/geom_livemap_.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,8 @@ def geom_livemap(*,
tiles : str
Tile provider:

- pass a predefined constant from the `tilesets` module (Lets-Plot's vector tiles, e.g. LETS_PLOT_COLOR, or outer raster tiles, e.g. OPEN_TOPO_MAP);
- pass a URL for a standard raster ZXY tile provider with {z}, {x} and {y} wildcards (e.g. 'http:https://my.tile.com/{z}/{x}/{y}.png') if the required tileset isn't in the module;
- pass a predefined constant from the `tilesets` module (Lets-Plot's vector tiles, e.g. LETS_PLOT_COLOR, or external raster tiles, e.g. OPEN_TOPO_MAP);
- pass a URL for a standard raster ZXY tile provider with {z}, {x} and {y} wildcards (e.g. 'http:https://my.tile.com/{z}/{x}/{y}.png') if the required tileset not present in the module;
- pass the result of a call to a `maptiles_zxy()` function if further customisation is required (e.g. attribution or zoom).

More information about tiles can be found here:
Expand Down