ArcGIS Runtime SDK for WPF 初始化

Posted lulus

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ArcGIS Runtime SDK for WPF 初始化相关的知识,希望对你有一定的参考价值。

安装包

管理nuget包

Esri.ArcGISRuntime.WPF

也许还需要

Esri.ArcGISRuntime.Hydrography
Esri.ArcGISRuntime.LocalServices
...

初始化arcgis

/// <summary>
/// App.xaml 的交互逻辑
/// </summary>
public partial class App : Application
{
    private void Application_Startup(object sender, StartupEventArgs e)
    {
        try
        {
            Esri.ArcGISRuntime.ArcGISRuntimeEnvironment.Initialize();
        }
        catch (Exception ex)
        {
            // Show the message and shut down
            MessageBox.Show(string.Format("There was an error that prevented initializing the runtime. {0}", ex.Message));
            Current.Shutdown();
        }
    }
}

即可正常使用ArcGIS Runtime SDK了

以上是关于ArcGIS Runtime SDK for WPF 初始化的主要内容,如果未能解决你的问题,请参考以下文章

《ArcGIS Runtime SDK for Android开发笔记》——离在线一体化技术:概述

Arcgis runtime sdk for android第一个程序Holle Map

《ArcGIS Runtime SDK for Android开发笔记》——数据制作篇:发布具有同步能力的FeatureService服务

《ArcGIS Runtime SDK for Android开发笔记》——离在线一体化技术:离线矢量数据下载

《ArcGIS Runtime SDK for Android开发笔记》——(15)要素绘制Drawtools3.0工具DEMO

《ArcGIS Runtime SDK for Android开发笔记》——(15)要素绘制Drawtools3.0工具DEMO