|
POST
|
@imbachb , team spent some time to repro the issue. We have been able to see the differences as you reported. We can see clear differences between Static and Dynamic rendering and how some properties are getting ignored. I don't have a clear answer as to where the problem is and why but I wanted to follow up on this and let you know that we are digging into this to find where the problem is. I appreciate your patience as we troubleshoot this further. I will reach out to you if I have any further questions. BTW, are you forcing some where in you app to render in Dynamic code. I didn't see anything explicit but still wanted to double check. I will keep you posted as we make progress on this. Thanks, Preeti
... View more
a week ago
|
0
|
1
|
58
|
|
POST
|
My bad, this fell off my radar. I will try and let you know by Monday what I find by testing your sample.
... View more
2 weeks ago
|
0
|
0
|
113
|
|
POST
|
Hello @imbachb , Are you able to share a repro MMPK that is configured with this symbology? Happy to take a closer look to understand the problem. For clarification, is the issue with the size of dashes , or gaps between dashes and J marker or label placement of the label marker ?
... View more
10-15-2025
10:15 AM
|
0
|
2
|
375
|
|
POST
|
Current ArcGIS Maps SDK for Native apps does not have a PrintTask. However you can export the map contents as an image via this API call. https://developers.arcgis.com/net/api-reference/api/net/Maui/Esri.ArcGISRuntime.Maui.GeoView.ExportImageAsync.html.
... View more
10-02-2025
12:25 PM
|
0
|
2
|
183
|
|
POST
|
Here is the detailed blog post that explain usage of new auth APIs and how to best use them https://www.esri.com/arcgis-blog/products/sdk-net/developers/new-auth-apis-for-dotnet-sdk Please give this a read, especially `Configuring OAuth` section that particularly talks about OAuth. For OAuth app authentication, pass client ID and client secret directly to OAuthApplicationCredential.CreateAsync. Hope this helps, Thanks
... View more
09-23-2025
09:51 AM
|
0
|
0
|
514
|
|
POST
|
Hi, Can you please retest this with latest version (200.8) of Maps SDK for .NET. We tested this recently and were unable to reproduce the problem.
... View more
09-10-2025
03:31 PM
|
0
|
0
|
109
|
|
POST
|
Thanks for the code, I guess you might be running into following issue, which we have identified as bug and plan to fix in Nov release. https://community.esri.com/t5/net-maps-sdk-questions/issue-with-identifygraphicsoverlayasync-and/m-p/1622617 The workaround is to not pass maximumresults parameter value. Please try removing that and let me know if this fixes the issue for you.
... View more
09-05-2025
10:52 AM
|
0
|
1
|
714
|
|
POST
|
This exact feature is on our priority list for April 2026 release and is planned to be a toolkit component that you can simply add to your app. It is somewhat a complicated feature because of different backgrounding capabilities on platforms supported by .NET Maps SDK. BTW, What platform are you trying to build this feature on ? Can you also elaborate the workflow so we can take it into account when we are building this tool. Thanks, Preeti
... View more
09-04-2025
04:44 PM
|
2
|
2
|
844
|
|
POST
|
Yes, we have a great sample on popup viewer our .NET toolkit repo that does exactly what you want https://github.com/Esri/arcgis-maps-sdk-dotnet-toolkit/blob/main/src/Samples/Toolkit.SampleApp.WPF/Samples/PopupViewer/PopupViewerSample.xaml.cs#L29-L121 Just add another case for AggergateGeoElement after https://github.com/Esri/arcgis-maps-sdk-dotnet-toolkit/blob/main/src/Samples/Toolkit.SampleApp.WPF/Samples/PopupViewer/PopupViewerSample.xaml.cs#L62 ``` if (popup.GeoElement is AggregateGeoElement aggregateGeoElement) { return new Popup(aggregateGeoElement, popup.PopupDefinition); } ``` and that should do it. With code if you click on an indiviual feature or a cluster, popup will be displayed accordingly. Hope this helps.
... View more
09-03-2025
09:53 AM
|
0
|
4
|
801
|
|
POST
|
If you have both aggregated geoelement and geoelements on the map you will have to tweak your identify code to account for displaying popup in both cases. Properties defined for AggregationFeatureReduction are independent of properties of FeatureLayer.
... View more
09-02-2025
12:40 PM
|
0
|
1
|
839
|
|
POST
|
@LucaCastenetto , Thanks for reporting the issue. I am able to repro the problem. We will try to get this resolved in one of the near future releases. In the meantime, this can be workaround by not passing the maximumResults parameter to IdentifyGraphicsOverlay method. Thanks again, Preeti
... View more
06-11-2025
03:29 PM
|
0
|
1
|
453
|
|
POST
|
>Is this functionality supposed to be working in ESRI ArcGIS Runtime? ArcGIS Maps SDK for Native Apps currently does not support primitiveOverrides. There is some support to honor them but is limited to DictionaryRenderer using military standards like mil2525d etc. We already have this feature on priority list for near future release, but there isn't a definitive timeline yet. I will add your case to our internal issue and will keep you updated as we make progress on this feature.
... View more
04-14-2025
10:39 AM
|
1
|
0
|
648
|
|
POST
|
Hi Tim, Thanks for the reproducer, we were able to reproduce this. We have logged an issue internally and assigned to the team responsible for this area. We appreciate your feedback. We will continue to investigate this and try to resolve it. In the meantime, I do have a workaround that you can use, not the best one but will at least unblock youfor now. The workaround below finds the first selected feature and reselects the feature by looking for a matching attribute name `id`. Note my code only selects the first selected feature. You can alter the code to reselect all features as needed. This is just to show the how you we workaround the issue for now. See the updated code below: var currentExtent = MyMapView.VisibleArea.Extent;
// Create a query based on the current visible extent.
var visibleExtentQuery = new QueryParameters();
visibleExtentQuery.Geometry = currentExtent;
visibleExtentQuery.SpatialRelationship = SpatialRelationship.Intersects;
// Set a limit of 5000 on the number of returned features per request,
// because the default on some services could be as low as 10.
visibleExtentQuery.MaxFeatures = 5000;
// Get the selected features.
var selectedFeatures = await _ogcFeatureLayer.GetSelectedFeaturesAsync();
// Get the id of the first selected feature.
var firstSelectedFeature = selectedFeatures.FirstOrDefault();
Int32 id_value = -1;
if (firstSelectedFeature != null)
{
var attributes = firstSelectedFeature.Attributes;
id_value = Convert.ToInt32(attributes["id"]);
}
// Populate the table with the query, leaving existing table entries intact.
await _featureTable.PopulateFromServiceAsync(visibleExtentQuery, false, null);
// Find the previously selected feature by its ID.
var previously_selected_feature = await _featureTable.QueryFeaturesAsync(new QueryParameters() { WhereClause = "id = " + id_value });
// Reselect the previously selected features.
_ogcFeatureLayer.SelectFeatures(previously_selected_feature); If you questions please feel free to reach out. Thanks again, Preeti
... View more
04-02-2025
10:50 AM
|
0
|
1
|
840
|
|
POST
|
I haven't tried your code but I have an idea what might be happening. I see you are passing `true` value for `ClearCache` parameter in PopulateServiceAsync, which means all data is cleared from existing table data before loading new results. I don't know what your parameters are for selecting features, but if you are using ID of the feature to query then it will be a different feature everytime because existing data is getting cleared everytime and new results are loaded.
... View more
03-27-2025
02:28 PM
|
0
|
1
|
906
|
|
POST
|
Sounds like this could be handled by `RemoteCertificateValidationCallback`. Can you give this a try please? https://developers.arcgis.com/net/api-reference/api/net/Esri.ArcGISRuntime/Esri.ArcGISRuntime.Security.AuthenticationManager.RemoteCertificateValidationCallback.html
... View more
03-06-2025
05:33 PM
|
0
|
1
|
1125
|
| Title | Kudos | Posted |
|---|---|---|
| 2 | 09-04-2025 04:44 PM | |
| 1 | 04-14-2025 10:39 AM | |
| 1 | 12-17-2024 01:28 PM | |
| 1 | 01-16-2025 02:56 PM | |
| 1 | 12-26-2024 11:08 AM |
| Online Status |
Offline
|
| Date Last Visited |
a week ago
|