vb.net - Bing Streetside view & Location look up -


hi have implemented bing maps application using xaml , vb have in aerial mode know how modify when zoom in give me option go street side view, i'm implementing address lookup through use of textbox , button click.

xaml

<window x:class="mainwindow" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:m="clr-namespace:microsoft.maps.mapcontrol.wpf;assembly=microsoft.maps.mapcontrol.wpf" title="mainwindow" height="350" width="525"> <grid >     <m:map credentialsprovider="my key" x:name="bingmap"/>  </grid> 

vb

imports microsoft.maps.mapcontrol.wpf  partial public class mainwindow inherits window  public sub new()     initializecomponent()     'set map mode aerial labels     bingmap.mode = new aerialmode(true)    end sub     end class 

this current set up.

streetside not available in bing maps wpf control. available in windows 10 bing maps control.


Comments

Popular posts from this blog

javascript - Slick Slider width recalculation -

jsf - PrimeFaces Datatable - What is f:facet actually doing? -

angular2 services - Angular 2 RC 4 Http post not firing -