你好,各位arcgis开发人员。我即将从旧的Arcgis.Client .Net迁移到Arcgis.Runtime .Net。看一看文档,我找不到它们现在在Arcgis.Runtime 100.x中使用的相应名称空间。
现在,在运行Arcgis.Client时,我需要更改Arcgis.Runtime 100.13中相应的所有名称空间,并且正如我前面提到的,在文档中找不到:
using ESRI.ArcGIS.Client.Local;
using ESRI.ArcGIS.Client;
using ESRI.ArcGIS.Client.Symbols;
using ESRI.ArcGIS.Cl
私有函数GetRaster(ByRef sLayerLocation As String)为ESRI.ArcGIS.Carto.FeatureLayer
Dim fso As New Scripting.FileSystemObject
Dim sFolder As String
Dim sFile As String
Dim pWsFact As ESRI.ArcGIS.Geodatabase.IWorkspaceFactory
Dim pRasterWs As ESRI.ArcGIS.Geodatabase.IRasterWorkspace2
conda环境存在,但activate找不到它。这是怎么回事,我该如何排除故障?
C:\ArcGIS\Pro\bin\Python\Scripts>conda --version
conda 4.9.2
C:\ArcGIS\Pro\bin\Python\Scripts>.\activate.bat arcpro-clone
EnvironmentNameNotFound: Could not find conda environment: arcpro-clone
You can list all discoverable environments with `conda
RE:适用于SIlverlight 3.1 SIlverlight 5的ArcGIS应用编程接口:需要有关识别任务的帮助
I have the following using statements:
using ESRI.ArcGIS.Client;
using ESRI.ArcGIS.Client.Geometry;
using ESRI.ArcGIS.Client.Printing;
using ESRI.ArcGIS.Client.Tasks;
using ESRI.ArcGIS.Client.Toolkit;
using ESRI.ArcGIS.Client.Toolkit.Primi
我正在使用来自arcgis的javascript api在我的应用程序中具有地图功能。这个脚本在所有浏览器(google chrome,firefox,ie7,8,9)中都能正常工作。但在IE10中抛出拒绝访问错误,错误如下所示。由于安全原因,我不会发布任何代码,而且问题只出现在IE 10上,所以这一定是浏览器特定的问题。以前有没有人遇到过这个问题?
Error: Access is denied.
Error: Access is denied.
k (http://js.arcgis.com/3.11/:161:153)
at xhr (http://js.arcgis.com
下面的错误出现在我的esri arcgis小部件代码中的dom-struct.create()。
at showResults (Widget.js?wab_dv=2.12:118)
at Object._successHandler (init.js:2313)
at Object._handler (init.js:2307)
at init.js:64
at init.js:2302
at c (init.js:104)
at e (init.js:104)
at n.DeferredList.resolve.callbac
我有一个地图上的X层,我需要相交选定的层(两次)和颜色的结果要素。
我正在尝试让这段代码正常工作
// get first feature (index 0)
ESRI.ArcGIS.ADF.Web.Geometry.Geometry adfFeature =
m_firstLayer.GeometryFromRow(m_firstLayer.Rows[0])
as ESRI.ArcGIS.ADF.Web.Geometry.Geometry;
// THE FOLLOWING LINE RETURNS NULL
ESRI.ArcGIS.Geometry.IG
我要使用arcgis for python发布要素图层。作为第一步,我想根据文档(https://esri.github.io/arcgis-python-api/apidoc/html/arcgis.gis.toc.html?highlight=import_data#arcgis.gis.ContentManager.import_data)创建一个shapefile: import os
import json
from IPython.display import display
from arcgis.gis import GIS
from arcgis.geometry impo
我正在使用带有Android SDK的ArcGIS来试用示例HelloWorld应用程序。代码编译得很好,但在执行时出现了灰色屏幕。我看过这个,但它不能解决我的问题。
下面是我的源代码:
public class HelloWorld extends Activity {
MapView map = null;
ArcGISTiledMapServiceLayer tileLayer;
/** Called when the activity is first created. */
@Override
public void onCreate(Bu
我需要创建并授权一个新的ESRI ArcGIS企业级地理数据库。我们的组织现有的ESRI服务器许可证已经授权了一个ArcGIS ArcGIS企业级地理数据库。我是否可以指定现有的ArcGIS服务器授权文件,以便在同一组织和网络中创建另一个企业级地理数据库?我只会试一试,除非有人管理ArcGIS服务器,而我们仍在规划阶段。
我知道我们需要ArcGIS for Desktop Standard或Advanced (非Basic)来创建企业级地理数据库。
非常感谢- Tim
大家好,我正在与arcgis sdk for java的一个问题作斗争。我按照文档https://developers.arcgis.com/java/latest/guide/get-the-sdk.htm中提到的maven指南获得了sdk和jars,然后我运行了依赖项:unpack目标,我可以在homedirectory/.arcgis目录中看到运行时文件,当我从eclipse ide运行项目时,它工作得很好,但是一旦我将jar转换成可执行的jar并尝试运行它,它就会给我错误。 Caused by: java.lang.RuntimeException: Could not find r
这是的后续行动。重申一下,我有文本文件,其中包含给定位置的元数据和度量数据。我想将这些数据写入名为ArcGIS的空间映射软件中,我必须为列表中的每个值指定ArcGIS中定义的数据类型。例如:
type("foo")
在Python中给出str,但在ArcGIS中称为text。因此,我希望将列表中每个元素的数据类型转换为ArcGIS中的适当数据类型。就像这样:
# This is the raw data that I want to write to ArcGIS
foo= ['plot001', '01-01-2013', 'XX
我有一个由.NET引擎SDK10.2版本驱动的ArcGIS程序,它的目的是检查空间数据。IDE是2012。我添加了所有所需的引用,以ESRI.ARCGIS和名称空间开头,但它仍然不能运行。我认为命名空间ESRI.ARCGIS.Controls应该包含类AxMapControl,但它没有。我能做什么来解决它?下面显示了一些代码。
using ESRI.ArcGIS.Carto;
using ESRI.ArcGIS.Controls;
using ESRI.ArcGIS.DataSourcesRaster;
using ESRI.ArcGIS.esriSystem;
using ESRI.ArcG