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

java - unable show chart in xls document using jasper reports -

javascript - How to change image src on success AJAX -

java.lang.RuntimeException: Could not generate dummy secret at sun.security.ssl.RSAClientKeyExchange.<init> -