简体   繁体   中英

Google Chart Overlays using googleVis package in R

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?

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")

在此处输入图片说明

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM