Learn R Programming

amt (version 0.1.4)

inspect: Inspect a track

Description

Provides a very basic interface to leaflet and lets the user inspect relocations on an interactive map.

Usage

inspect(x, ...)

# S3 method for track_xy inspect(x, popup = NULL, cluster = TRUE, ...)

Arguments

x

[track_xy, track_xyt] A track created with make_track.

...

Further arguments, none implemented.

popup

[character(nrow(x))] Optional labels for popups.

cluster

[logical(1)] If TRUE points are clustered at lower zoom levels.

Value

An interactive leaflet map.

See Also

leaflet::leaflet()

Examples

Run this code
# NOT RUN {
data(sh)
x <- track(x = sh$x, y = sh$y, crs = sp::CRS("+init=epsg:31467"))

# }
# NOT RUN {
inspect(x)
inspect(x, cluster = FALSE)
inspect(x, popup = 1:nrow(x), cluster = FALSE)
# }

Run the code above in your browser using DataLab