开发者

Google maps in Silverlight

开发者 https://www.devze.com 2023-01-08 04:34 出处:网络
What is the best/easiest way to integrate开发者_StackOverflow中文版 google maps and silverlight?I would like to display a google map within a silverlight canvas, where the canvas will be surrounded by

What is the best/easiest way to integrate开发者_StackOverflow中文版 google maps and silverlight? I would like to display a google map within a silverlight canvas, where the canvas will be surrounded by other silverlight controls that drive the map.


If you really need to use Google maps inside your Silverlight application and you can run your application in out of browser mode then you might want to take a look at the WebBrowser control for Silverlight 4

Using the WebBrowser control, you could get started with something as simple as this:

<Grid x:Name="LayoutRoot" Background="White">
    <WebBrowser Source="http://maps.google.com/" />
</Grid>

However, it's certainly not the best way to integrate mapping into a Silverlight application. To use mapping inside Silverlight your best choice is really the Bing Maps Silverlight control - take a look at these links to get started:

http://www.microsoft.com/maps/

http://www.microsoft.com/maps/isdk/silverlight/


There is no Silverlight control for Google maps. Google also only allows use of their map data if you are using their API. The path of least resistance will be to use Bing Maps with the Bing Maps Silverlight control.

Otherwise, you'd probably want to use a different web technology with javascript to integrate with Google maps.

0

精彩评论

暂无评论...
验证码 换一张
取 消