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了
学习技术最好的文档就是【官方文档】,没有之一。
还有学习资料【Microsoft Learn】、【CSharp Learn】、【My Note】。
如果,你认为阅读这篇博客让你有些收获,不妨点击一下右下角的【推荐】按钮。
如果,你希望更容易地发现我的新博客,不妨点击一下【关注】。