I'm trying to add a third party google map tile layer to leaflet map in R. For now, I'm using the addProviderTiles("Esri.WorldImagery")
to add a satellite view.
The tile layer I want to use has following JavaScript code:
googleHybrid = L.tileLayer('http://{s}.google.com/vt?lyrs=s,h&x={x}&y={y}&z={z}',{
maxZoom: 20,
subdomains:['mt0','mt1','mt2','mt3']
});
Is there a way to do so?