'Why is that every provider tile works for leaflet except Esri.WorldImagery?

Does anyone know why Esri.WorldImagery is not working for leaflet in the following example? Please keep in mind this is original leaflet examples. If that works for you, please let me know!

> # Background 2: World Imagery 
library(leaflet) 
m <- leaflet() %>%    
  addTiles() %>%    
  setView( lng = 2.34, lat = 48.85, zoom = 3 ) %>%   
  addProviderTiles("Esri.WorldImagery") 
m

If I change the addProviderTiles to anything else form this list, then it works!



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source