VS2010下WPF开发ARCGIS ENGINE 10的带Ribbon控件项目

原文 http://blog.sina.com.cn/s/blog_47522f7f0100nq5t.html

题目好长,但是集目前最新的工具于一身。。VS是最新的2010版,不过用的是.net3.5,最热门的WPF/Silverlight,还有新的arcgis10,还有非常热的Ribbon控件。。。

1、安装VS2010。我用的是旗舰版。地址自己找去,百度上一搜就有。

2、安装arcgis engine 10。

3、安装arcgis api for wpf 2.0.

4、新建一个Ribbon application。

5、添加ESRI.ArcGIS.Client引用。最好把arcgis api for wpf 2.0里面的几个dll都引用过来。在安装目录下可以找到。

6、在工具箱中拉一个map控件到主界面上。

7、添加命名空间,如果没有的话:xmlns:esri=http://schemas.esri.com/arcgis/client/2009

8、添加map的图层:

<esri:Map x:Name="MyMap" >
       
<esri:ArcGISTiledMapServiceLayer
ID="StreetMapLayer"
          
Url="http://server.arcgisonline.com/ArcGIS/rest/services/ESRI_StreetMap_World_2D/MapServer"/>

</esri:Map>
9、运行。

详细请参阅http://help.arcgis.com/en/webapi/silverlight/help/index.html

上一篇:ubuntu_virtualenv


下一篇:root的方法大体上有以下三种