|
POST
|
You might be able to get a deeper native call stack following the instructions here: Debug using ArcGIS Runtime Windows symbol files | ArcGIS Runtime API for .NET | ArcGIS Developers Are you able to repro on your development machines and deployment machines?
... View more
11-07-2022
09:19 AM
|
0
|
0
|
1504
|
|
POST
|
Hi, Are you still able to repro with the current release, 100.15? Thanks
... View more
11-03-2022
08:07 AM
|
0
|
2
|
1536
|
|
POST
|
The Navigate route with rerouting | ArcGIS Runtime API for .NET | ArcGIS Developers sample should point you in the right direction.
... View more
10-26-2022
09:46 AM
|
0
|
0
|
1984
|
|
POST
|
There are currently no public API types for working with Symbol Layer Effects (they're on the future roadmap), but it looks like you have ArcGIS Pro therefore in the short-medium term you can... Add one or more feature layers to a Map in ArcGIS Pro Setup the layer symbology with symbol layer effects Use the Create Mobile Map Package geoprocessing tool to create a .mmpk Unzip the mmpk Browse to the P20 folder and locate the .geodatabase file Open the .geodatabase file in a Sqlite browser and open the GDB_ServiceItems table Locate the row for the layer symbology you want to replicate and JSON copy the content of the AdvancedDrawingInfo column Trim the first and last parts of the JSON: e.g. `{"drawingInfo":{"renderer":` e.g. `,"scaleSymbols":true,"transparency":0,"labelingInfo":null}}` This leaves you with just the Renderer JSON which you can use with Renderer.FromJson(). Code example: string drawingInfoJson = "{ \"type\":\"simple\",\"symbol\":{ \"type\":\"CIMSymbolReference\",\"symbol\":{ \"type\":\"CIMPointSymbol\",\"haloSize\":1,\"scaleX\":1,\"angleAlignment\":\"Display\",\"symbolLayers\":[{ \"type\":\"CIMVectorMarker\",\"effects\":[{ \"type\":\"CIMGeometricEffectCircularSector\",\"endAngle\":45,\"radius\":30}],\"enable\":true,\"anchorPoint\":{ \"x\":0,\"y\":0,\"z\":-0.5},\"anchorPointUnits\":\"Relative\",\"dominantSizeAxis3D\":\"Z\",\"size\":30,\"billboardMode3D\":\"FaceNearPlane\",\"markerPlacement\":{ \"type\":\"CIMMarkerPlacementInsidePolygon\",\"gridType\":\"Fixed\",\"seed\":13,\"stepX\":15,\"stepY\":15,\"clipping\":\"ClipAtBoundary\",\"stdDeviationX\":7.5,\"stdDeviationY\":7.5},\"frame\":{ \"xmin\":-2.0,\"ymin\":-2.0,\"xmax\":2.0,\"ymax\":2.0},\"markerGraphics\":[{ \"type\":\"CIMMarkerGraphic\",\"geometry\":{ \"rings\":[[[0.0,2.0],[0.35,1.97],[0.68,1.88],[1.0,1.73],[1.29,1.53],[1.53,1.29],[1.73,1.0],[1.88,0.68],[1.97,0.35],[2.0,0.0],[1.97,-0.35],[1.88,-0.68],[1.73,-1.0],[1.53,-1.29],[1.29,-1.53],[1.0,-1.73],[0.68,-1.88],[0.35,-1.97],[0.0,-2.0],[-0.35,-1.97],[-0.68,-1.88],[-1.0,-1.73],[-1.29,-1.53],[-1.53,-1.29],[-1.73,-1.0],[-1.88,-0.68],[-1.97,-0.35],[-2.0,-0.0],[-1.97,0.35],[-1.88,0.68],[-1.73,1.0],[-1.53,1.29],[-1.29,1.53],[-1.0,1.73],[-0.68,1.88],[-0.35,1.97],[0.0,2.0]]]},\"symbol\":{ \"type\":\"CIMPolygonSymbol\",\"symbolLayers\":[{ \"type\":\"CIMSolidStroke\",\"enable\":true,\"capStyle\":\"Round\",\"joinStyle\":\"Round\",\"lineStyle3D\":\"Strip\",\"miterLimit\":10,\"width\":0,\"color\":[0,0,0,0]},{ \"type\":\"CIMSolidFill\",\"enable\":true,\"color\":[138,73,50,255]}]} }],\"scaleSymbolsProportionally\":true,\"respectFrame\":true}]} } }";
GraphicsOverlay graphicsOverlay = new GraphicsOverlay();
graphicsOverlay.Renderer = Renderer.FromJson(drawingInfoJson);
Graphic graphic = new Graphic(new MapPoint(0, 0, 0, SpatialReferences.Wgs84));
graphicsOverlay.Graphics.Add(graphic);
mapView.GraphicsOverlays.Add(graphicsOverlay); You could go further too... and create a C# class for the JSON then export that to JSON and use in conjunction with the Renderer.FromJson method.
... View more
10-25-2022
09:10 AM
|
1
|
0
|
1643
|
|
POST
|
Are you trying to implement a custom effect beyond the out-of-the-box symbol layer effects? Use symbol effects—ArcGIS Pro | Documentation
... View more
10-24-2022
01:14 PM
|
0
|
2
|
1653
|
|
POST
|
I recommend following this WPF-based tutorial: Find a route and directions It actually starts with the Display a map tutorial which is based on our Visual Studio project templates, and it builds up from there. There isn't really very much to it, although the project templates do demonstrate a simple MVVM pattern to help guide you into using best practices as you build more and larger apps - more info on the VS extension and templates here: Install and set up | ArcGIS Runtime API for .NET | ArcGIS Developers
... View more
10-20-2022
04:11 PM
|
1
|
2
|
2023
|
|
POST
|
As @GISGeekpro suggested, it sounds like Reference Scale is what you're looking for - in the ArcGIS Runtime API, this is accessed via: Property ReferenceScale (arcgis.com). Also see SDK sample Map reference scale | ArcGIS Runtime API for .NET | ArcGIS Developers.
... View more
10-20-2022
08:14 AM
|
1
|
1
|
3021
|
|
POST
|
I wonder if the act of identifying the feature from the service populates additional attribute fields and values on which there is another condition for visibility? Are you still able to reproduce this issue if you set the ServiceFeatureTable to ManualCache mode and use the method populateFromService(QueryParameters parameters, bool clearCache, list<string> outFields), requesting all fields as outFields, typically as a "*". For more info see ServiceFeatureTable QML Type | ArcGIS Runtime API for Qt | ArcGIS Developers.
... View more
10-17-2022
10:41 AM
|
1
|
1
|
3452
|
|
POST
|
The Raster Function capability may solve the problem - for more info see Solved: Re: RasterLayer Alpha Channel? - Esri Community
... View more
10-17-2022
10:31 AM
|
0
|
0
|
1718
|
|
POST
|
I have not been able to reproduce this, although without the full code / repro my repro would be different from your exact case. I recommend taking a look at our sample code for EditFeatureAttachments and comparing that with your app logic.
... View more
10-14-2022
04:13 PM
|
0
|
0
|
1674
|
|
POST
|
Have you also tried running the query in a browser? e.g. Query: SA4 (ID: 0) (abs.gov.au) For `Where`, if you enter 1=1 then click: Query (GET): I get the query response (after some time). Query (POST): I get a 403 - could there be a server-side issue with POST requests? Regarding ArcGIS Runtime, the API will automatically switch internally from GET to POST when the URI length requires it. A couple of options for diagnosing these types of issues: Run a network monitoring tool such as Fiddler to see the request/response. Subscribe to the request begin event to see the requests being made e.g. ArcGISHttpClientHandler.HttpRequestBegin += (sender, httpRequestMessage) =>
{
Debug.WriteLine(httpRequestMessage.Method);
};
... View more
10-10-2022
02:59 PM
|
0
|
0
|
1411
|
|
POST
|
If your service has a service id then it is from an ArcGIS Portal, in which it would probably be better to approach from the PortalItem perspective (example below). Note the way you access/create the portal item initially will be different from this public sample service example where I'm using the direct URL including the ItemId, for example the item might be returned from a portal search. PortalItem portalItem = await PortalItem.CreateAsync(new Uri("https://www.arcgis.com/home/item.html?id=6f7540023c48421e923db1bb9b7d5414"));
ServiceGeodatabase serviceGeodatabase = new ServiceGeodatabase(portalItem.ServiceUrl);
await serviceGeodatabase.LoadAsync();
Regex regex = new Regex("services/(.*)/FeatureServer");
var v = regex.Match(serviceGeodatabase.ServiceInfo.Source.ToString());
string s = v.Groups[1].ToString(); Regarding the service name, the way you approach this may depend on what you need the value for. The portion of the service path that you highlight is just the service name. Accessing via the PortalItem itself gives you access to properties that might be more meaningful if presenting the information in the UI, for example string portalItem.Title (in this case "San Diego Facilities" versus the original service name "San_Diego_Facilities" - ok that's not a great comparison 😞 but the Title in theory could be more different and could mean more to the user).
... View more
10-07-2022
04:11 PM
|
0
|
0
|
1732
|
|
POST
|
Hi, Unfortunately, the new OSM 3D buildings layer that you tried is still in Beta isn't fully supported yet (for more info see this thread). In the meantime, you can work with scene services and scene layer packages of type 3D Object Scene Layer or Integrated Mesh Scene Layer that are published based on the i3S 1.x spec - this ArcGIS Online query for "buildings" and "scenelayers" will provide you with some examples: https://www.arcgis.com/home/search.html?q=buildings&focus=layers-weblayers-scenelayers Thanks
... View more
10-07-2022
11:23 AM
|
0
|
2
|
4051
|
|
POST
|
Hi, Unfortunately, the new OSM 3D buildings layer is still in Beta isn't fully supported yet (for more info see this thread). In the meantime, you can work with scene services and scene layer packages of type 3D Object Scene Layer or Integrated Mesh Scene Layer that are published based on the i3S 1.x spec - this ArcGIS Online query for "buildings" and "scenelayers" will provide you with some examples: https://www.arcgis.com/home/search.html?q=buildings&focus=layers-weblayers-scenelayers Thanks
... View more
10-07-2022
11:22 AM
|
0
|
0
|
3048
|
|
POST
|
Hi, Can you share the code where you're creating/updating the feature and attachment, adding to the table, and applying the edits to the service? Thanks
... View more
10-07-2022
09:57 AM
|
0
|
0
|
1725
|
| 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 |
Wednesday
|