我已安装 ArcGIS Runtime SDK for .NET (100.1.0)
我从 ArcGIS 模板创建了一个 WPF 应用程序(它应该带有所有必要的程序集引用......)。
我有一个“MapView”(我的 XAML 文件),其中包含我只想添加一个图层的地图。我使用了 API 文档中的示例。我的 XAML 如下:
<Page x:Class="WpfApplication1.Views.MapView"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:local="clr-namespace:WpfApplication1.Views"
xmlns:esri="http://schemas.esri.com/arcgis/runtime/2013"
mc:Ignorable="d"
d:DesignHeight="300" d:DesignWidth="300"
Title="MapView">
<Grid>
<Grid.Resources>
<esri:SimpleLineSymbol x:Key="SLS" Color="Transparent" Width="1"/>
<esri:SimpleLineSymbol x:Key="BlackSLS" Color="Black" Width="1"/>
</Grid.Resources>
<Grid>
<esri:MapView x:Name="MyMapView" />
</Grid>
</Grid>
</Page>
在后面的代码中,我在调用该InitializeComponent()
方法后执行以下操作:
LocalMapService localMapService = new LocalMapService(@"..\..\..\samples-data\maps\water-distribution-network.mpk");
await localMapService.StartAsync();
ArcGISDynamicMapServiceLayer arcGISDynamicMapServiceLayer = new
ArcGISDynamicMapServiceLayer()
{
ID = "arcGISDynamicMapServiceLayer",
ServiceUri = localMapService.UrlMapService,
};
MyMapView.Map.Layers.Add(arcGISDynamicMapServiceLayer);
此时 Visual Studio 警告我“地图不包含层的定义 [...] 您是否缺少 using 指令或程序集引用?”
如果我决定直接从 XAML 添加我的层而不编写任何代码:
<Page x:Class="WpfApplication1.Views.MapView"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:local="clr-namespace:WpfApplication1.Views"
xmlns:esri="http://schemas.esri.com/arcgis/runtime/2013"
mc:Ignorable="d"
d:DesignHeight="300" d:DesignWidth="300"
Title="MapView">
<Grid>
<Grid.Resources>
<esri:SimpleLineSymbol x:Key="SLS" Color="Transparent" Width="1"/>
<esri:SimpleLineSymbol x:Key="BlackSLS" Color="Black" Width="1"/>
</Grid.Resources>
<Grid>
<esri:MapView x:Name="MyMapView">`enter code here`
<esri:Map>
<esri:ArcGISDynamicMapServiceLayer Url=... />
</esri:Map>
</esri:MapView>
</Grid>
</Grid>
</Page>
设计器现在警告“名称 ArcGISDynamicMapServiceLayer 在命名空间http://schemas.esri.com/arcgis/runtime/2013中不存在”
我究竟做错了什么?看起来我没有加载 API 的所有适当组件,即使我使用的是 SDK 的 WPF 模板......我很困惑。
我在 MS Windows Server 2012 上运行 Visual Studio 2015 Update 2(如果有任何相关性!)