From 9191017f954325f5f22c67dddcb569875d8632bc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nico=20Frie=C3=9F?= Date: Wed, 16 Oct 2024 11:27:55 +0200 Subject: [PATCH] try --- docs/index.html | 24 ++++++++++++++++-------- docs/search.json | 2 +- index.qmd | 1 + 3 files changed, 18 insertions(+), 9 deletions(-) diff --git a/docs/index.html b/docs/index.html index 3fe6c10..083a6c4 100644 --- a/docs/index.html +++ b/docs/index.html @@ -165,12 +165,20 @@

MapLibre for R provides R bindings for MapLibre GL JS.

It integrates seamlessly into Shiny, Quarto and Jupyter.

-
library(maplibre)
-
-maplibre(map_options = mapOptions(center=c(-123.1256, 49.24658), zoom = 9))
+
remotes::install_github("eodaGmbH/r-maplibregl")
+
+
Using GitHub PAT from the git credential store.
+
+
+
Skipping install of 'maplibre' from a github remote, the SHA1 (7d9dd7d8) has not changed since last install.
+  Use `force = TRUE` to force installation
+
+
library(maplibre)
+
+maplibre(map_options = mapOptions(center=c(-123.1256, 49.24658), zoom = 9))
-
- +
+
@@ -178,9 +186,9 @@

MapLibre for Python provides Python bindings for MapLibre GL JS.

It integrates seamlessly into Shiny for Python, Quarto and Jupyter.

-
from maplibre import Map, MapOptions
-
-Map(MapOptions(center=(-123.1256, 49.24658), zoom=9))
+
from maplibre import Map, MapOptions
+
+Map(MapOptions(center=(-123.1256, 49.24658), zoom=9))
diff --git a/docs/search.json b/docs/search.json index 7f55957..96871da 100644 --- a/docs/search.json +++ b/docs/search.json @@ -4,6 +4,6 @@ "href": "index.html", "title": "Maplibre GL JS Bindings for R and Python", "section": "", - "text": "MapLibre GL JS bindings for R and Python\n\nRPython\n\n\nMapLibre for R provides R bindings for MapLibre GL JS.\nIt integrates seamlessly into Shiny, Quarto and Jupyter.\n\nlibrary(maplibre)\n\nmaplibre(map_options = mapOptions(center=c(-123.1256, 49.24658), zoom = 9))\n\n\n\n\n\n\n\nMapLibre for Python provides Python bindings for MapLibre GL JS.\nIt integrates seamlessly into Shiny for Python, Quarto and Jupyter.\n\nfrom maplibre import Map, MapOptions\n\nMap(MapOptions(center=(-123.1256, 49.24658), zoom=9))\n\n\n\n\nMy Awesome Map" + "text": "MapLibre GL JS bindings for R and Python\n\nRPython\n\n\nMapLibre for R provides R bindings for MapLibre GL JS.\nIt integrates seamlessly into Shiny, Quarto and Jupyter.\n\nremotes::install_github(\"eodaGmbH/r-maplibregl\")\n\nUsing GitHub PAT from the git credential store.\n\n\nSkipping install of 'maplibre' from a github remote, the SHA1 (7d9dd7d8) has not changed since last install.\n Use `force = TRUE` to force installation\n\nlibrary(maplibre)\n\nmaplibre(map_options = mapOptions(center=c(-123.1256, 49.24658), zoom = 9))\n\n\n\n\n\n\n\nMapLibre for Python provides Python bindings for MapLibre GL JS.\nIt integrates seamlessly into Shiny for Python, Quarto and Jupyter.\n\nfrom maplibre import Map, MapOptions\n\nMap(MapOptions(center=(-123.1256, 49.24658), zoom=9))\n\n\n\n\nMy Awesome Map" } ] \ No newline at end of file diff --git a/index.qmd b/index.qmd index a0c0fbe..ec04e96 100644 --- a/index.qmd +++ b/index.qmd @@ -14,6 +14,7 @@ format: It integrates seamlessly into [Shiny](https://github.com/rstudio/shiny), [Quarto](https://quarto.org/) and [Jupyter](https://jupyter.org/). ```{r} +remotes::install_github("eodaGmbH/r-maplibregl") library(maplibre) maplibre(map_options = mapOptions(center=c(-123.1256, 49.24658), zoom = 9))