标签: arcgis-runtime

有关使用ArcGIS Runtime Local Server实现MVVM的问题

我正在尝试设置ESRI本地服务器进行显示.mpk.我有一个模型

public class Model
{
    private string basemapLayerUri = "http://services.arcgisonline.com/ArcGIS/rest/services/World_Topo_Map/MapServer";
    private string mapPackage = "D:\\App\\Data\\Canada.mpk";
    public Model() { }

    public string BasemapLayerUri
    {
        get { return this.basemapLayerUri; }
        set
        {
            if (value != this.basemapLayerUri)
            {
                this.basemapLayerUri = value;
            }
        }
    }

    public string MapPackage
    {
        get { return this.mapPackage; }
        set
        {
            if (value != this.mapPackage)
            {
                this.mapPackage = value;
            }
        }
    }
}
Run Code Online (Sandbox Code Playgroud)

ViewModel.cs课堂上我有

public class ViewModel : INotifyPropertyChanged
{
    public Model myModel { get; …
Run Code Online (Sandbox Code Playgroud)

c# mvvm arcgis-runtime arcgis-runtime-net

6
推荐指数
1
解决办法
225
查看次数

iOS ArcGIS.framework太大,因此大.ipa大小

我正在使用ArcGIS.framework for iOS维护一个应用程序.我从版本10.2升级到100+.我已经延长了这一点,希望在某些时候应用程序大小问题将得到解决.新架构的应用程序规模从26MB增加到360MB以上.这不会被客户接受.我一直在寻找一种简单的方法来减少应用程序的大小而不使用应用程序细化,这需要启用bitcode,这是由于其他一些我无法启用的原因.

剥离x86_64和i386体系结构并没有大大减少框架大小.

是否有标志,其他编译器或链接设置我们可以在编译时提供Xcode?

xcode ios ipa arcgis-runtime

2
推荐指数
1
解决办法
374
查看次数

标签 统计

arcgis-runtime ×2

arcgis-runtime-net ×1

c# ×1

ios ×1

ipa ×1

mvvm ×1

xcode ×1