From 60557c54fffba58478df0fa9f33e0120916fa83e Mon Sep 17 00:00:00 2001 From: GitHub Actions Date: Tue, 26 Nov 2024 15:06:57 +0000 Subject: [PATCH] Built site for basemaps@0.1.0: a3daa60 --- index.html | 22 +- news/index.html | 9 +- pkgdown.yml | 2 +- reference/add_maptypes.html | 8 + reference/basemap.html | 6 +- reference/defaults.html | 4 +- reference/get_maptypes.html | 192 +--------- reference/index.html | 4 +- reference/load_maptypes.html | 8 + reference/maptypes.html | 677 +++++++++++++++++++++++++++++++++++ reference/save_maptypes.html | 8 + search.json | 2 +- sitemap.xml | 2 +- 13 files changed, 741 insertions(+), 203 deletions(-) create mode 100644 reference/add_maptypes.html create mode 100644 reference/load_maptypes.html create mode 100644 reference/maptypes.html create mode 100644 reference/save_maptypes.html diff --git a/index.html b/index.html index 94b61ec..210476d 100644 --- a/index.html +++ b/index.html @@ -77,14 +77,14 @@

Installation

Get started

-

All available map services and map types can be printed using get_maptypes(). The basemap() function and its class-specific aliases facilitate (down)loading a basemap and returning it as a class of choice. Map preferences that should be used during a session can be set as defaults using set_defaults().

+

All available map services and map types can be printed using get_maptypes(). The basemap() function and its class-specific aliases facilitate (down)loading a basemap and returning it as a class of choice. Map preferences that should be used during a session can be set as defaults using set_defaults().

 library(basemaps)
 data(ext)
 # or use draw_ext() to interactively draw an extent yourself
 
 # view all available maps
-get_maptypes()
+get_maptypes()
 
 # set defaults for the basemap
 set_defaults(map_service = "osm", map_type = "topographic")
@@ -147,7 +147,7 @@ 

Get started

Map examples

-

basemaps supports a variety of map services and types (which can be printed using get_maptypes()). A selection of available map types is shown below. For a complete table of available map types, see supported services and maps.

+

basemaps supports a variety of map services and types (which can be printed using get_maptypes()). A selection of available map types is shown below. For a complete table of available map types, see supported services and maps.

 basemap(ext, map_service = "osm", map_type = "streets")
 #> Loading basemap 'streets' from map service 'osm'...
@@ -589,6 +589,18 @@

Supported services and maps maptiler +aquarelle_dark +yes, register: https://www.maptiler.com + + + +maptiler +aquarelle_vivid +yes, register: https://www.maptiler.com + + + +maptiler backdrop yes, register: https://www.maptiler.com @@ -667,7 +679,7 @@

Available functionsget_maptypes() returns every supported map service and map type that can be used as input to the map_service and map_type arguments of set_defaults(), basemap() or associated functions. +get_maptypes() returns every supported map service and map type that can be used as input to the map_service and map_type arguments of set_defaults(), basemap() or associated functions.
  • draw_ext() lets you draw an extent on an interactive map.
  • @@ -687,7 +699,7 @@