Title: | View and Serve Mapbox Vector Tile Databases |
---|---|
Description: | View and Serve Mapbox Vector Tile Databases for mapping development tasks. |
Authors: | Miles McBain [aut, cre] |
Maintainer: | Miles McBain <[email protected]> |
License: | MIT + file LICENSE |
Version: | 0.0.3 |
Built: | 2024-10-24 03:13:49 UTC |
Source: | https://github.com/milesmcbain/mvtview |
As you use serve_mvt or view_mvt servers will accumulate in child processes. This function kills all child processes serving tiles.
clean_mvt()
clean_mvt()
Starts a web server in a background R session serving vector tiles from a supplied .mbtiles file.
serve_mvt(tiles_path, port = NULL, .serve_mode = "in-memory")
serve_mvt(tiles_path, port = NULL, .serve_mode = "in-memory")
tiles_path |
The path to an .mbtiles file. |
port |
The port to for the server to serve mbtiles on. Default is a random available port. |
.serve_mode |
The way in which the server handles the vector tiles database. "in-memory" is the default and it will read the entire tile database into R as a tibble. "disk" will read tiles from the .mbtiles file as an SQLite database from disk. The default is more performant. Use "disk" only if you have a large vector tileset that would consume too much memory to hold in RAM at once. |
start_mvt_server for more control of server behaviour.
Starts a web server serving vector tiles from a supplied .mbtiles file.
start_mvt_server( tiles_path, host = "0.0.0.0", port = NULL, .serve_mode = "in-memory" )
start_mvt_server( tiles_path, host = "0.0.0.0", port = NULL, .serve_mode = "in-memory" )
tiles_path |
The path to an .mbtiles file. |
host |
the host to serve tiles on |
port |
the port to serve tiles on |
.serve_mode |
The way in which the server handles the vector tiles database. "in-memory" is the default and it will read the entire tile database into R as a tibble. "disk" will read tiles from the .mbtiles file as an SQLite database from disk. The default is more performant. Use "disk" only if you have a large vector tileset that would consume too much memory to hold in RAM at once. |
serve_mvt()
is likely more convenient. Only use this if if you want more
control of the host and port on which your tiles are served on.
Where serve_mvt()
verifies the server is actually up and responding, this
funciton does not. So that's up to you to take on.
Note: This server has been built minimising code written, not ' maximising performance. It is intended for local development work, and will likely not be performant enough for any production use-case.
Given a local .mtiles file containing a vector tiles database, this function will start a local development server to serve the tiles and then return a htmlwidget map that displays the tileset.
view_mvt( tiles_path, get_fill_color = "#FFFFFF70", get_line_color = "#ffffffff", get_line_width = 2, line_width_units = "pixels", get_point_radius = 2, point_radius_units = "pixels", stroked = TRUE, tooltip = TRUE, pickable = TRUE, ..., .serve_mode = "in-memory" )
view_mvt( tiles_path, get_fill_color = "#FFFFFF70", get_line_color = "#ffffffff", get_line_width = 2, line_width_units = "pixels", get_point_radius = 2, point_radius_units = "pixels", stroked = TRUE, tooltip = TRUE, pickable = TRUE, ..., .serve_mode = "in-memory" )
tiles_path |
The path to an .mbtiles file. |
get_fill_color |
the fill colour of plotted features. |
get_line_color |
the line colour of plotted features. |
get_line_width |
the line width of plotted features (in pixels by default). |
line_width_units |
the units of the value supplied in |
get_point_radius |
the radius of plotted point features (in pixels by default). |
point_radius_units |
the units of the value supplied in |
stroked |
use a line on the borders of polygons or points? TRUE by default. |
tooltip |
generate a tooltip for feature attributes? TRUE by default. |
pickable |
allow map to react to features that get mouse hover? Needs to be enabled to view tooltips. TRUE by default. |
... |
further arguments forwarded to |
.serve_mode |
The way in which the server handles the vector tiles database. "in-memory" is the default and it will read the entire tile database into R as a tibble. "disk" will read tiles from the .mbtiles file as an SQLite database from disk. The default is more performant. Use "disk" only if you have a large vector tileset that would consume too much memory to hold in RAM at once. |
The map is powered by the awesome rdeck package, which is highly recommended for making interactive WebGL maps in R.
The graphics options of this function are passed directed to '
rdeck::add_mvt_layer()
, and so suppourt rdeck color scales based on
attributes. See the rdeck helpfile for more detailed ' descriptions.
The graphics parameters apply only to relvant geometries. For ' example: 'fill color' is not used for line string features.