|
POST
|
>Is there a way to use an MMPK's network dataset instead of a .gdb? The documentation explicitly mentions a geodatabase, so wondering what my options are. I already use an MMPK elsewhere in my app, so I have no issue with MAUI recognizing it, just need to know how to prep it for Network Analysis Yes you can access the dataset if the database is added to map packaged in MobileMapPackage. // Open a mobilemappackage
string mmpkPath = "PATH_TO_MMPK";
var mapPackage = await MobileMapPackage.OpenAsync(mmpkPath); If there are UtilityNetworks you can get access to them via: var gdb= mapPackage.Maps[0].UtilityNetworks[0].Geodatabase; Or a TransportationNetwork var gdb = map.TransportationNetworks[0].Geodatabase; Note, the snippet assumes first map in mobilemappackage has the database. This will change depending on which map in your MMPK has the network dataset. Hope this helps! Thanks Preeti
... View more
06-09-2023
07:56 AM
|
1
|
1
|
4624
|
|
POST
|
Please ensure your app is licensed properly. Refer to https://developers.arcgis.com/net/license-and-deployment/license/#licensing-capabilities for information on different license levels and the capabilities offered at each license level.
... View more
06-09-2023
07:38 AM
|
0
|
0
|
1441
|
|
POST
|
Currently there is no way to change the drawing order of the features. We have the enhancement logged in our system internally but it has not been prioritized for any recent release. I would be interested in understanding your workflow or use case to change the drawing order to help us better prioritize the issue.
... View more
05-16-2023
06:52 PM
|
0
|
3
|
1438
|
|
BLOG
|
We are please to announce 200.1 release of ArcGIS Maps SDK for .NET . You can read about the highlights common to all ArcGIS Maps SDKs for Native Apps in the shared ArcGIS Runtime blog post and additional details in the 200.1 Release Notes. For our .NET community here are a few more highlights... Improvements and optimizationsThis release brings more memory optimizations and improvements to enable your applications to be more performant. Improved error messaging and reporting for load and layerViewState errors. Toolkit PopupViewer control has improved text formatting and is enhanced to support the display of elements like media, charts, and attachments. Many new sample additions and a brand new look for The MAUI sample viewer. The UI has been completely transformed with a more modern look and includes many new features like marking sample as favorites, search for samples, and easy navigation between samples, view code (xaml and cs) driving the sample. Each release of Runtime also includes significant updates to the ArcGIS Developer guide doc, API Reference doc, Toolkit, and Samples. We thank you for your ongoing support and feedback and hope you will find these updates valuable as you continue to use ArcGIS Maps SDK to build amazing applications for your users. The ArcGIS Maps SDK for .NET Team
... View more
04-19-2023
10:57 AM
|
0
|
0
|
556
|
|
POST
|
To get current scale of the map use `GeoView.GetCurrentViewpoint` and with ViewpointType as `CenterAndScale` https://developers.arcgis.com/net/api-reference/api/netwin/wpf/Esri.ArcGISRuntime.UI.Controls.GeoView.GetCurrentViewpoint.html
... View more
02-17-2023
10:07 AM
|
1
|
0
|
2175
|
|
POST
|
Error clearly indicates you don't have access which means either authentication manager is not correctly hooked up and not raising challenge or credentials are invalid. Were you able to download the same MMPK from same portal before using Xamarin SDK? Are same credentials being used to sign in to Portal via browser and in your code? Refer to MAUI version of OAuth sample here : https://github.com/Esri/arcgis-maps-sdk-dotnet-samples/tree/main/src/MAUI/Maui.Samples/Samples/Security/OAuth
... View more
02-16-2023
11:03 AM
|
0
|
0
|
589
|
|
POST
|
There is currently no mechanism to set ZIndex on features in a FeatureLayer. Can you please elaborate your use case so I can understand better why do you need to set ZIndex on each feature and what point in your workflow you want the ZIndex to be set, like before loading the layer or after loading and rendering etc?
... View more
02-16-2023
08:56 AM
|
0
|
0
|
669
|
|
POST
|
Thanks for sharing your thoughts. Appreciate it. Your requirement and workflow lines up with our roadmap to provide clustering on feature layers for the most part. In your example you mentioned about clustering features on layers using dictionary renderer. This is considered as advanced workflow that needs to added across ArcGIS system, like ArcGIS Pro and Online Viewer. That being said, I have added your case of clustering features using Dictionary renderer to our list of features for feature clustering. Thanks again 🙂
... View more
02-13-2023
05:44 PM
|
0
|
0
|
1323
|
|
POST
|
Hi there, We are currently prioritizing Clustering features functionality for future releases. As part of that exercise it is quite useful to capture as many use cases as possible. I am very interested in knowing specifics of what you are looking for and if possible elaborate on your workflow and how you would like clustering to work in your current workflows. Thanks Preeti
... View more
02-13-2023
01:15 PM
|
0
|
0
|
1329
|
|
POST
|
Yes, the behavior you are seeing is as expected. One you login with a particular License level , capabilities are determined by that level. You cannot change license level once ArcGISRuntimEnvironment has been initialized.
... View more
02-02-2023
05:16 PM
|
0
|
1
|
1564
|
|
POST
|
Just curious, if there is a reason for loading MyMapView.Map.LoadAsync() in the loop? Can you try removing `MyMapView.Map.LoadAsync()` from the loop. If loading the map is needed, I suggest either do it before or after the for loop.
... View more
02-02-2023
04:55 PM
|
0
|
1
|
665
|
|
POST
|
Fields in FeatureCollectionTable are defined by fields that are in FeatureQueryResult. There is no way to add attributes to a FeatureCollectionTable after the fact.
... View more
02-02-2023
04:02 PM
|
0
|
1
|
605
|
|
POST
|
ClassBreaksRenderer should work for FeatureCollection. The fact that it is rendering the default symbol indicates that value coming from attribute is not matching or falling within the ranges defined by classbreaks renderer. I am happy to look into further if you can provide the data/gpkx and some repro code.
... View more
02-02-2023
09:27 AM
|
0
|
0
|
532
|
|
POST
|
You can send the files to pmaske@esri.com. It will be helpful if you can also briefly describe your workflow in the email.
... View more
01-24-2023
04:36 PM
|
1
|
0
|
2291
|
|
POST
|
I will be happy to look into this further and see what's going on 🙂 . Is it possible for you to share your ArcGIS Pro project and MMPK you published. Please specify ArcGIS Pro version that you used to create the Pro project and the MMPK.
... View more
01-24-2023
10:27 AM
|
1
|
1
|
2303
|
| 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 |
2 weeks ago
|