Google Chart Overlays using googleVis package in R

2019-08-25 04:26发布

Google Charts has overlay functionality that allows you to put an image over a plot at a specified position. Is this possible in the googleVis package or do I need to edit the chart html ad hoc to include an overlay?

1条回答
一夜七次
2楼-- · 2019-08-25 04:46

You can add an overlay to a Google map using my googleway package. To use Google Maps you need a valid API key

library(googleway)
map_key <- 'your_api_key'

google_map(key = map_key) %>%
    add_overlay(north = 40.773941,south = 40.712216, east = -74.12544, west = -74.22655,
                            overlay_url = "https://www.lib.utexas.edu/maps/historical/newark_nj_1922.jpg")

enter image description here

查看更多
登录 后发表回答