|
POST
|
Hi, Those errors are due to the output/deployment destination folder length being greater than 260 characters. To resolve those errors your project output location should be reduced. Consider using relative paths in your project to define a shorter output location (either via the Project > Properties dialog > Build tab or directly in the .csproj file e.g. `<OutputPath>..\..\..\bin\</OutputPath>`. Thanks Mike
... View more
09-30-2020
03:19 PM
|
1
|
4
|
3502
|
|
POST
|
Hi, It is an option on the Package Result tool (Package Result (Data Management)—ArcGIS Pro | Documentation ). Thanks Mike
... View more
09-29-2020
04:48 PM
|
0
|
2
|
7026
|
|
POST
|
Hi, Note you need to use the Package Result tool Prepare a geoprocessing service for offline use(Step 11). Thanks Mike
... View more
09-29-2020
08:58 AM
|
0
|
5
|
7026
|
|
POST
|
Hi, When packaging the result, did you specify the option to Support ArcGIS Runtime? Prepare a geoprocessing service for offline use | ArcGIS for Developers (Step 14) Thanks Mike
... View more
09-28-2020
09:05 AM
|
0
|
7
|
7026
|
|
POST
|
Hi, Thanks for your feedback. This feature is still under consideration for a future release. It will help our design process if you can share any additional information about what type of data you would like to cluster, how many features/graphics, what type of symbols or renderer, how you would like them to display when clustered, what level of control you would like over the clustering behavior, whether the clustering should be animated or not? Thanks Mike
... View more
09-25-2020
04:10 PM
|
0
|
3
|
3613
|
|
POST
|
Hi, Please can you follow the instructions here Debug using ArcGIS Runtime Windows symbol files—ArcGIS Runtime SDK for .NET | ArcGIS for Developers then try to reproduce the crash and share the full native call stack? Thanks Mike
... View more
09-24-2020
05:31 PM
|
0
|
0
|
1213
|
|
POST
|
Hi, 1. Once the download starts, and if the application goes in background, then because of backgrounding the job download stops, progress changes from 40-50 to direct 100%, but GetResultAsync() status is coming "Succeeded" and it is not returning any error, so how can I identify an error in such scenarios. You can use the GenerateOfflineMapResult.HasErrors Property to determine if there are any errors. It does sound like there may be an error during the offline map generation because the status goes directly to 100%. We do recommend though that when you app may be backgrounded you use the following APIs to handle this scenario: - Job(T).Pause Method - Job(T).ToJson Method - GenerateOfflineMapJob.FromJson Method - Job(T).Start Method (note this will resume if it was in progress) - Job(T).CheckStatusAsync Method 2. On my map, I have a few shapefile layers overlayed, and below are two scenarios related to it : a) If I select features, combine extents of these features using GeometryEngine.CombineExtents to calculate offline download extent, download result gives an error related to Vector Tile(my base map in web map) ( error message e.g. VectorTile_118: For input string: "{"xmin":-12696158.575750671”) Is it possible the union/combination of the extents of all features is greater that the full extent of the basemap? Also, it may be worth checking the spatial references. Thanks Mike
... View more
09-24-2020
05:27 PM
|
0
|
0
|
1440
|
|
POST
|
HI, In the offline geodatabase do you see the equivalent/correct information for the layer relationships? (GDB_ServiceIItems table > ItemInfo column) Thanks Mike
... View more
09-24-2020
04:44 PM
|
0
|
1
|
2052
|
|
POST
|
Hi, Do you mean the installation of Visual Studio didn't work or the installation of ArcGIS Runtime SDK for .NET didn't work? Thanks Mike
... View more
09-22-2020
09:37 AM
|
0
|
1
|
4103
|
|
POST
|
Hi, Unfortunately I too found that when using 10.2.7 with that service the ServiceFeatureTable fails to initialize (with the exception you observed). I was unable to identify what is specific to your service that is causing the issue (I compared your service with a variety of similar hosted feature services, including services based on views, and they all initialized and displayed). 100.x does successfully load and display this service. Here's a potential workaround you could use: Map map = new Map
{
SpatialReference = SpatialReferences.WebMercator,
};
MyMapView.Map = map;
MyMapView.Map.Layers.Add(new ArcGISTiledMapServiceLayer(new Uri("https://sampleserver6.arcgisonline.com/arcgis/rest/services/World_Street_Map/MapServer")));
var queryTask = new QueryTask(new Uri("https://services.arcgis.com/BLN4oKB0N1YSgvY8/ArcGIS/rest/services/CalOES_California_Webcams/FeatureServer/1"));
var queryResult = await queryTask.ExecuteAsync(new Query("1=1"));
var features = queryResult.FeatureSet.Features;
var graphicsOverlay = new GraphicsOverlay();
graphicsOverlay.Graphics.AddRange(queryResult.FeatureSet.Features.OfType<Graphic>());
SimpleRenderer simpleRenderer = new SimpleRenderer()
{
Symbol = new SimpleFillSymbol()
{
Color = Color.FromArgb(0, 92, 230, 49),
Outline = new SimpleLineSymbol()
{
Color = Color.FromArgb(110, 110, 110, 0),
Style = SimpleLineStyle.Solid,
Width=0.7
}
}
};
graphicsOverlay.Renderer = simpleRenderer;
MyMapView.GraphicsOverlays.Add(graphicsOverlay);
... View more
09-18-2020
05:46 PM
|
2
|
0
|
2395
|
|
POST
|
Hi, - Can you share any of the multi-threading code? - Do you see the exception if only one thread is accessing the mobile map package? - What code runs in GetMaxScaleTask and GetMinScaleTask? - Can you try awaiting the Map.LoadAsync operation before attempting to set the MaxScale and MinScale? - What happens if you remove the List parallelization? Thanks Mike
... View more
09-18-2020
12:53 PM
|
0
|
1
|
3032
|
|
POST
|
Hi, That error could indicate that a field used for the renderer or label definition is not part of the layer's schema, although the service info (below) shows that it's just a simple renderer with no labels. `{"renderer":{"type":"simple","symbol":{"type":"esriSFS","style":"esriSFSSolid","color":[0,92,230,49],"outline":{"type":"esriSLS","style":"esriSLSSolid","color":[110,110,110,0],"width":0.7}}},"scaleSymbols":true,"transparency":0,"labelingInfo":null}` In your code are you applying a renderer or label definition? You could also try request all fields e.g. `myServiceFeatureTable.OutFields = Esri.ArcGISRuntime.Tasks.Query.OutFields.All;` Thanks Mike
... View more
09-18-2020
10:17 AM
|
0
|
0
|
2395
|
|
POST
|
Hi, Apologies - the pdbs for 100.9 are still being staged before deployment to the production server. If you revert to 100.8 you'll get the pdbs and be able to get a native call stack. Are you able to share the code where to open/load the mobile map package, and particularly the multi-threading code? Thanks Mike
... View more
09-17-2020
10:56 AM
|
0
|
3
|
3032
|
|
POST
|
Hi, Please can you update to the latest release v100.9 and retest? If you can still reproduce then please follow the instructions in this Guide doc topic for obtaining a native call stack: Debug using ArcGIS Runtime Windows symbol files—ArcGIS Runtime SDK for .NET | ArcGIS for Developers Thanks Mike
... View more
09-16-2020
11:48 AM
|
0
|
5
|
3032
|
|
POST
|
Hi, My recommendation is to expose the output location/folder as a string input parameter. You can then specify the desired output location in your code and the Local Geoprocessing Service will write the Shapefile directly to that location. Documentation resources: - For ModelBuilder Inline variable substitution—ArcGIS Pro | Documentation - For Python Scripts Setting script tool parameters—ArcGIS Pro | Documentation Thanks Mike
... View more
09-16-2020
11:46 AM
|
0
|
0
|
1516
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 04-14-2026 05:04 AM | |
| 1 | 02-20-2024 07:02 AM | |
| 1 | 01-19-2026 06:44 AM | |
| 1 | 12-10-2025 07:16 AM | |
| 1 | 11-21-2025 08:12 AM |
| Online Status |
Offline
|
| Date Last Visited |
07-02-2026
06:07 AM
|