-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #215 from crazycapivara/release/v0.3.0-pkgdown
Release/v0.3.0 pkgdown
- Loading branch information
Showing
128 changed files
with
6,099 additions
and
8,228 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,3 +18,4 @@ | |
^_vignettes$ | ||
^index.Rmd$ | ||
^index.md$ | ||
^CRAN-SUBMISSION$ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
Version: 0.3.0 | ||
Date: 2023-02-19 20:07:38 UTC | ||
SHA: 9efc9a20df037e8e03003655da8c8259de546b88 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,8 @@ | ||
# deckgl 0.3.0 | ||
|
||
* deck.gl v8.1.9 | ||
* Fix warnings | ||
|
||
# deckgl 0.2.7 | ||
|
||
* __Get Started__ vignette | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
#' Set the view state of the map | ||
#' @inheritParams add_layer | ||
#' @param latitude The latitude of the view state. | ||
#' @param longitude The longitude of the view state. | ||
#' @param zoom The zoom level of the view state. | ||
#' @param pitch The pitch of the view state. | ||
#' @param bearing The bearing of the view state. | ||
#' @export | ||
set_view_state <- function(deckgl, latitude = 37.8, longitude = -122.45, | ||
zoom = 12, pitch = 0, bearing = 0) { | ||
|
||
deckgl %>% | ||
invoke_method( | ||
"setViewState", | ||
latitude = latitude, | ||
longitude = longitude, | ||
zoom = zoom, | ||
pitch = pitch, | ||
bearing = bearing | ||
) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.