微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

GIS silverlight随堂作业1 显示加载到中国

1.新建silverlight工程

2.右边web解决方案中添加引用ESRI.Arcgis.Client,并在代码添加xmlns:esri="clr-namespace:ESRI.ArcGIS.Client;assembly=ESRI.ArcGIS.Client"

3.加载MAP控件

4.把URL改成如下,Url="http://services.arcgisonline.com/arcgis/rest/services/ESRI_Imagery_World_2D/MapServer" />, 2D图像

5.esri:map 属性中加入Extent,手打,加入坐标,左下角,右上角4个坐标,即minx,miny,maxx,maxy坐标。


<UserControl x:Class="ArcGisSilverlight.MainPage"

    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"     xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"     xmlns:d="http://schemas.microsoft.com/expression/blend/2008"     xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"     mc:Ignorable="d"              xmlns:esri="clr-namespace:ESRI.ArcGIS.Client;assembly=ESRI.ArcGIS.Client"              xmlns:esriGeometry="clr-namespace:ESRI.ArcGIS.Client.Geometry;assembly=ESRI.ArcGIS.Client"     d:DesignHeight="300" d:DesignWidth="400">     <Grid x:Name="LayoutRoot" Background="White">         <esri:Map Background="White" HorizontalAlignment="Left" Margin="12,0" Extent="60,60,140,13"  Name="map1" VerticalAlignment="Top" WrapAround="True" Height="300" Width="388">             <esri:Map.Layers>                 <esri:LayerCollection>                     <esri:ArcGISTiledMapServiceLayer Url="http://services.arcgisonline.com/arcgis/rest/services/ESRI_Imagery_World_2D/MapServer" />                                      </esri:LayerCollection>             </esri:Map.Layers>         </esri:Map>     </Grid> </UserControl>

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 [email protected] 举报,一经查实,本站将立刻删除。

相关推荐