去年鄙人写了一系列关于Bing Maps开发的博文,深受网友的喜欢,很久没写关于Bing Maps的博文了,最近关注了Bing Maps WPF Control,于此将本人个人对Bing Maps WPF Control的应用经验同网友们分享,同时欢迎大家丢转。

 

一、下载Bing Maps WPF Control

      基于WPF的Bing Maps开发和Silverlight的开发基本一致,不同的是WPF Control还是bate版本,功能上尚未Bing Maps Silverlight Control那么完善,关于Bing Maps Silverlight Control 开发这里就不多谈,有兴趣的请查阅:[Silverlight]Bing Maps系列文章汇总

 

Bing Maps WPF Control下载地址:http://www.microsoft.com/download/en/details.aspx?id=27165

 

二、 应用Bing Maps WPF Control

      Bing Maps WPF Control的应用和Bing Maps Silverlight Control基本一致,只需要在WPF中将Map空间所在的名称空间添加引用就可以直接使用Map控件以呈现出地图效果了。

xmlns:m="clr-namespace:Microsoft.Maps.MapControl.WPF;assembly=Microsoft.Maps.MapControl.WPF" 

 

<Window x:Class="BingMapWPF.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 x:Name="map" CredentialsProvider="">
            <m:MapLayer x:Name="mapLayer"/>
        </m:Map>
    </Grid>

</Window> 

 

  Bing Maps WPF Control

 

三、 Bing Maps WPF Control图元渲染

      Bing Maps Silverlight Control中对于大数量的图元渲染性能非常低下,这里对Bing Maps WPF Control做了个简单的测试,随便从数据库中提取了5000个地名点在地图中渲染出来,性能上还是存在很大的问题,不过这里只是直接渲染并没有做任何的优化处理,对于渲染性能这块还是有很大的优化空间,理论上性能要比Bing Maps Silverlight Control高。

Bing Maps WPF Control

Bing Maps WPF Control 

 

        本片就简单介绍到这里,如对Bing Maps开发感兴趣,不妨移步看看《》。

 

相关说明

 本文属学习笔记文章,愿与有志者共同学习交流。欢迎转载,为了保存作者的创作热情,但请在明显地位标记本文的原文连接。  

作      者:Beniao

文章出处:http://beniao.cnblogs.com/  或  http://www.cnblogs.com/  

Bing Maps WPF Control

 

相关文章:

  • 2021-10-15
  • 2021-09-26
  • 2021-08-23
  • 2021-10-14
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2021-10-20
  • 2022-12-23
  • 2021-12-04
  • 2021-12-08
相关资源
相似解决方案