|
POST
|
Is the MapView (actually the layers) still requesting the data at that point? You might need to use arcgis-runtime-samples-dotnet/src/WPF/ArcGISRuntime.WPF.Samples/Samples/MapView/DisplayDrawingStatus at master · Esri/ar… to make sure that the drawing is finished before taking the screenshot.
... View more
06-05-2017
02:17 AM
|
0
|
0
|
1124
|
|
POST
|
Hi Clay, You should be seeing the release coming out from the door in a months time.
... View more
06-01-2017
08:15 AM
|
2
|
0
|
2682
|
|
POST
|
Hi and welcome! Have you looked to Display a scene—ArcGIS Runtime SDK for .NET | ArcGIS for Developers? Hopefully that will give you enough information to get started.
... View more
06-01-2017
08:13 AM
|
0
|
1
|
2332
|
|
POST
|
You can follow the same approach described in https://community.esri.com/message/520348
... View more
06-01-2017
01:18 AM
|
1
|
1
|
2598
|
|
POST
|
Hi Clay, This is most likely because it's not there in 100 release. Background property is added to TextSymbol in next release that is coming out quite soon.
... View more
05-24-2017
02:05 AM
|
0
|
2
|
2682
|
|
POST
|
That's about right. You could easily get some performance improvements by parallelism and patch updates if you are doing a lot of work in a patches. Getting correct patch size figured out might need some performance diagnostics from your side based on the concrete requirements. In some cases you might want to do everything in one go though. If you are doing only attribute edits, then this isn't as important but if you are doing something with the geometry such as using GeometryEngine to validate / compare / manage the geometry, then there will be clear benefits to write a bit more code to get more speed out from it. Anyway, you have the general usage working so rest is basically up on the real use case and decision how much time is worth to spend to optimize the behavior. If you are planning to run this patch tool as a console app, i would recommend using something like this to enable proper use of async-await pattern http://blog.stephencleary.com/2012/02/async-console-programs.html Edit: There might be also benefit to define which attributes / geometry is requested when the features are queried. See ServiceFeatureTable.QueryFeaturesAsync Method (QueryParameters, QueryFeatureFields), QueryParameters.ReturnGeometry Property.
... View more
05-24-2017
01:56 AM
|
2
|
0
|
2438
|
|
POST
|
Hi, you have to call ArcGISFeature.LoadAsync Method for the feature before you can edit it. var editFeature = features.First(); await (editFeature as ArcGISFeature).LoadAsync(); editFeature.SetAttributeValue("description", $"Updated from runtime at {DateTime.Now.ToShortTimeString()}");
... View more
05-23-2017
02:30 AM
|
2
|
2
|
2438
|
|
POST
|
Hi, you can use GraphicsOverlay.SelectionColor Property to set the color.
... View more
05-23-2017
01:18 AM
|
0
|
0
|
702
|
|
POST
|
Hi Joe, I assume that that you are referencing this SyncLayerResult.EditResults Property Text that is highlighted is misleading and wrong so please ignore it. The remark is actually related how our communication is done between C++ and C# and slipped through to the public API documentation. We will fix that for the next release. From my understanding the actually the behavior is following: 1) if the SyncGeodatabaseJob completes (ie. no error occurred in the authentication, network connection, etc..) the SyncGeodatabaseJob.Status is set to completed and SyncGeodatabaseJob.Error is null. 2) if the SyncGeodatabaseJob fails (ie. no network connection) the SyncGeodatabaseJob.Status is set to failed and SyncGeodatabaseJob.Error has an error. 3) if the job completes and if there weren't any edit errors then SyncGeodatabaseJob returns a SyncLayerResultList which doesn't contain any items In the picture above you can see that the results doesn't contain any items so all is good. 4) if the job completes and if there were edit errors then SyncLayerResultList contains one or more SyncLayerResult items. These items contains at least one FeatureEditResult so there shouldn't be a case where SyncLayerResult.EditResults list is either empty or null. You could still check if this to be sure (we shouldn't have any SyncLayerResults if they don't have any FeatureEditResults in the first place). It should be actually very hard to get into the situation where you would find any FeatureEditResults or SyncLayerResults populated so if you find that you are getting these, please let us know. Hopefully this cleared some confusion how this works.
... View more
05-19-2017
04:57 AM
|
2
|
1
|
1101
|
|
POST
|
I tested the original sample with the latest build and I cannot see problem happening. I always get only one popup so I assume that this is fixed. @Yunqin_Chen can you provide me a simple test to verify that your case also works? Utilities_Sewer 0 popups found Utilities_Sewer/Sewer Pipes 1 popups found OBJECTID: 11490
... View more
05-15-2017
03:05 AM
|
0
|
1
|
1232
|
|
POST
|
This works fine on my machine. Can you provide more details about your configuration: - OS - Build 86 / 64 - Graphics card Can you also add a handler to catch all unhandled exceptions and see if anything is caught in there? Also can you enable native debugging?
... View more
04-12-2017
08:57 AM
|
0
|
1
|
2191
|
|
POST
|
Seems to work for me. Can you zip your solution and upload to the topic?
... View more
04-12-2017
08:29 AM
|
0
|
3
|
2191
|
|
POST
|
Hi, you have understood that correctly. Currently we don't have support for custom styles but we are working to get the support done for the runtime. Support for custom styles isn't only related to the runtime since we also need ways to author and deliver styles to the runtime so it is platform level item for us. That said, we totally get the importance of this feature and we try to deliver it as soon as possible.
... View more
04-12-2017
01:47 AM
|
1
|
0
|
948
|
|
POST
|
I have seen that error in situations where the .tpk file exists but it actually doesn't have any data in. This might occurs when you are generating tpk and something funny in the middle. Make sure that you check that the tpk file actually has some data in side (size of the file is larger than 0). Let me know if that helps.
... View more
03-02-2017
02:24 AM
|
0
|
1
|
1477
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 11-12-2014 03:52 AM | |
| 1 | 08-27-2015 03:47 AM | |
| 1 | 12-08-2014 09:58 AM | |
| 1 | 05-05-2015 10:19 AM | |
| 1 | 07-30-2015 08:43 AM |
| Online Status |
Offline
|
| Date Last Visited |
11-11-2020
02:23 AM
|