|
POST
|
Hi, If you are building a WPF application, ArcGIS Runtime SDK for .NET supports the Local Server component that contains geoprocessing tools for raster extraction - for the list of available geoprocessing tools see Local Server geoprocessing tools support—ArcGIS Runtime SDK for .NET | ArcGIS for Developers. Thanks Mike
... View more
08-19-2020
07:41 AM
|
1
|
1
|
1819
|
|
POST
|
Hi, I recommend exposing the parameter as a string and using inline variable substitution if you're using ModelBuilder or a similar approach if you're writing a Python script. For more information see Inline variable substitution—ArcGIS Pro | Documentation. If you want to input multiple file names (strings) then you should consider defining the input parameter as a multi-value parameter. For more information see Setting script tool parameters—ArcGIS Pro | Documentation. Thanks Mike
... View more
08-19-2020
07:35 AM
|
0
|
1
|
1641
|
|
POST
|
Hi, It sounds like you might be trying to cross two separate products. ArcGIS Runtime Local Server is only supported for use with client applications built with ArcGIS Runtime SDK for .NET, ArcGIS Runtime SDK for Java, and ArcGIS Runtime SDK for Qt. It is not supported for use with ArcGIS API for JavaScript. I recommend posting your JavaScript question in ArcGIS API for JavaScript Thanks Mike
... View more
08-19-2020
06:19 AM
|
0
|
0
|
1879
|
|
POST
|
Hi, Can you provide more information regarding: - The system/environment (ideally a dxdiag report from 2-3 machines on which you are able to reproduce the issue you are seeing) - What your application is doing at the time of the hang (if you are able to ascertain that) (e.g. user zoomed in) - The composition of the map in terms of basemap layers (e.g. vector tiled layer), operational layers (e.g. feature layers from service feature table), and graphics overlays. - Any specific UI interactions you have running e.g. identify on mouse move. If you're not able to share here - please email [email protected]. Thanks Mike
... View more
08-16-2020
10:10 AM
|
0
|
0
|
1576
|
|
POST
|
Hi, This issue has been resolved in current development builds and pending regression testing and release testing we plan to include in the upcoming 100.9 release (expected Q3 2020). Thanks Mike
... View more
08-05-2020
05:01 AM
|
1
|
0
|
8002
|
|
POST
|
Hi, Confirming this works in the following example (C# WPF): async Task AddRasterAndSetBackgroundColorValue()
{
try
{
// Create a raster dataset from a local file raster.
Raster raster = new Raster(@"..\FileRaster.tif");
// Await the Load to catch any errors.
await raster.LoadAsync();
// Create a raster function from the JSON string using the static/Shared method called: RasterFunction.FromJson(json as String)
RasterFunction rasterFunction = RasterFunction.FromJson(jsonFunction);
// Get the raster function arguments
RasterFunctionArguments rasterFunctionArguments = rasterFunction.Arguments;
// Get the list of raster names from the raster function arguments.
IReadOnlyList<string> rasterNames = rasterFunctionArguments.GetRasterNames();
// Set the local file raster as a raster name argument.
rasterFunctionArguments.SetRaster(rasterNames[0], raster);
// Create a new raster based on the raster function.
Raster rasterWithFunction = new Raster(rasterFunction);
// Create a new raster layer from the raster with function applied.
RasterLayer rasterLayer = new RasterLayer(rasterWithFunction);
// Add RasterLayer with function to Map OperationalLayers collection.
Map.OperationalLayers.Add(rasterLayer);
}
catch (Exception ex)
{
// TODO : Handle Errors
}
}
string jsonFunction =
@"{
""raster_function"":{""type"":""Mask_function""},
""raster_function_arguments"":
{
""nodata_values"":{""double_array"":[0],""type"":""Raster_function_variable""},
""nodata_interpretation"":{""nodata_interpretation"":""all"",""type"":""Raster_function_variable""},
""raster"":{""name"":""raster"",""is_raster"":true,""type"":""Raster_function_variable""},
""type"":""Raster_function_arguments""
},
""type"":""Raster_function_template""
}"; Mike
... View more
07-21-2020
02:54 AM
|
0
|
0
|
2302
|
|
POST
|
Hi, A couple of questions: - Is all your data comprised local file formats + graphics and no remote services at all? - Do you have any code running on UI events e.g. MouseMove? Thanks Mike
... View more
07-16-2020
05:06 AM
|
0
|
14
|
7069
|
|
BLOG
|
Hi, Local Server provides both ArcMap-based and ArcGIS Pro-based map and geoprocessing services - I recommend following the ArcGIS Pro requirements and .NET SDK requirements for WPF: - ArcGIS Pro system requirements for CPU, GPU, and memory - ArcGIS Runtime SDK for .NET - WPF system requirements Generally I would consider the optimum requirements as the minimum (depending on your deployment budget). Note ArcGIS Pro-based local services are 64-bit only. Thanks Mike
... View more
07-14-2020
12:42 PM
|
0
|
0
|
1079
|
|
POST
|
Hi Thanks for the focused repro; it makes a big difference. We've reproduced the error you're seeing and have opened an issue in our backlog to aim to address this in a future release. Unfortunately we have not yet been able to identify a workaround. Thanks Mike
... View more
07-10-2020
05:59 PM
|
0
|
2
|
8002
|
|
POST
|
Hi, Are you building a WPF app? If so, you might find one of the supported Geoprocessing tools offers the functionality you need. Alternatively you may want to take a look at Drone2Map. Thanks Mike
... View more
07-07-2020
10:22 AM
|
0
|
0
|
1785
|
|
POST
|
Apologies for the misdirection, I replied while in the midst of an in-depth discussion about Dynamic and Static. I've updated my comment above (Static being the all important mode in this case). Thanks Mike
... View more
06-30-2020
12:51 PM
|
0
|
0
|
2350
|
|
POST
|
Hi, The visual difference is caused by a change in v100.8 where we now use the Dynamic RenderingMode for Feature Layers with point geometry when the Map has a ReferenceScale set. Thanks for reporting the issue above - we're investigating and hope to be able to resolve this case in an upcoming release. To restore the original behavior you can set FeatureLayers to use the **Static** RenderingMode either by setting the FeatureLayer.RenderingMode Property on a per-layer basis or by setting the Map.LoadSettings Property / LoadSettings.PreferredPointFeatureRenderingMode Property. In both cases the property should be set to FeatureRenderingMode Enumeration value Static. Thanks Mike
... View more
06-30-2020
10:17 AM
|
0
|
2
|
2350
|
|
POST
|
Hi Eric, Version 100.4 is in the `Extended Support` phase which means it does not undergo certification for new environments and therefore it hasn't been formally tested and certified for use with iOS 13.5.1. We're not currently aware of any issues that may arise from using v100.4 with iOS 13.5.1. Thanks Mike
... View more
06-29-2020
04:04 PM
|
2
|
1
|
2192
|
|
POST
|
Hi, An initial call stack ending in Geoview.Pulse means something interrupted the drawing but could be caused by a variety of things. You can get more information by enabling native debugging and referencing the symbols as documented here: Debug using ArcGIS Runtime Windows symbol files—ArcGIS Runtime SDK for .NET | ArcGIS for Developers. A couple of questions: - Are you able to reproduce with 100.8? We made a specific enhancement in the 100.8 release for applications with multiple maps/mapviews. - What is your application `Platform target`? (x86 | x64 | AnyCPU + Prefer 32-bit | AnyCPU) 100 feature layers is a significant number of layers to be loading concurrently. Because you also mentioned multiple maps/mapviews it's worth checking whether your application is hitting the memory limit for its specific architecture (if it's x86 then that's approx. 1.2GB or less). Thanks Mike
... View more
06-26-2020
05:04 PM
|
0
|
3
|
2610
|
|
POST
|
Hi, Thanks for the suggestion : I've added an issue to our product roadmap to investigate support for GeoPDF. The best place to submit enhancement requests like this is on ArcGIS Ideas. You could start by searching for existing GeoPDF requests for Runtime or search for similar requests Apps such as Collector (which are based on Runtime) and up vote these to help us prioritize (e.g. PDF basemaps for Collector). To help us determine what that support should look like, please can you add info to an existing Idea or to your new Idea to tell us more about what functionality you need and what user workflows you need to support? e.g. read and display one or more GeoPDF documents, control visibility of individual layers within the document, select/identify vector features, export a Map as GeoPDF, etc? Thanks Mike
... View more
06-26-2020
02:39 PM
|
0
|
0
|
1030
|
| 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
|