Nothing
# Find the poi result with the largest $dist from a list of results
# some of which may be NA
which_max_dist <- function(pois) {
which.max(
vapply(
pois,
function(x) ifelse(is.list(x), x$dist, NA_real_),
double(1)
)
)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.