Reputation: 33
I am using leaflet-bing-layer in my project. I am currently loading Aerial and Road views of Bing Maps. Now, I also want to load Bing maps Streetside view in my application similar to https://www.bing.com/api/maps/sdkrelease/mapcontrol/isdk/setviewtostreetside#TS. How can I achieve that using leaflet's plugin.
Upvotes: 0
Views: 855
Reputation: 1772
Streetside views are completely different from orthographic Mercator tile layers (it's a spherical panorama, not a flat projected image), and can't be displayed in leaflet. The only supported way to get streetside views is to use the bing map control (which should also support all the functionality and views Leaflet does).
Upvotes: 3