Greetings, I have some raster data that is tiled and formatted for display in the Google Maps API:
https://storage.googleapis.com/flag_twi/flag_twi/index.html
Is there a way to access these tiles through R Leaflet?
I see in the leaflet documentation an argument for a URL:
addTiles(map, urlTemplate = "//{s}.tile.openstreetmap.org/{z}/{x}/{y}.png",
attribution = NULL, layerId = NULL, group = NULL,
options = tileOptions())
...though it is not immediately apparent if this function will accept my tiles in the manner that they are currently indexed.
And relatedly, are there functions to tile raster data in a format that R leaflet can read? Basically searching for a more agile alternative to addRasterImage()