|
POST
|
Few options to try before rolling back : - Try deleting the build directory on the Mac as well. You should find that at /users/<user>/library/caches/xamarin/mtbs/builds/<app name> . - Try adding [assembly: XamlCompilation(XamlCompilationOptions.Compile)] to Assemblyinfo.cs in Xamarin Forms iOS project. Xamarin Forms build will exclude referenced libraries unless they're used in code or otherwise explicitly preserved.
... View more
04-06-2017
11:53 AM
|
0
|
1
|
856
|
|
POST
|
Most likely around summer , like May-June time frame.
... View more
03-15-2017
10:24 AM
|
1
|
1
|
2837
|
|
POST
|
Hell Damien, Support to add margin is going to be available in the next update release. -Preeti
... View more
03-13-2017
02:33 PM
|
1
|
8
|
2837
|
|
POST
|
Displaying pop-up info is app logic and is left to app developer to decide and design how that info is displayed (e.g. custom UI control, a MapOverlay ). ArcGIS Runtime SDK for Dotnet API or Toolkit does not have any out-of-the-box UI control for displaying Pop-up control yet. --Preeti
... View more
12-19-2016
01:38 PM
|
1
|
2
|
2905
|
|
POST
|
WMTS support is not available in the released version but it's up on the list for next release.
... View more
12-13-2016
10:21 AM
|
0
|
15
|
3664
|
|
POST
|
To get to the popup on all/any layers for a tapped location , you will have to call MapView.IdentifyLayersAsync(),or you can call MapView.IdentifyLayerAsync to get info for a specific layer. The result of Identify "IdentifyLayerResult" has Popups property that will return popup info on a layer(s). Side note, if layer has sublayers then you would need to get the SublayerResults and then check for popups for that sublayer. Just to give an idea I quickly typed following code to demonstrate how to get the popup from a featurelayer. This is not a functional code. Let me know if you still have problems and I will put together a quick sample. IReadOnlyList<IdentifyLayerResult> results = await MyMapView.IdentifyLayersAsync(Position, tolerance, false,Features); foreach (IdentifyLayerResult identifyLayerResult in results) { if (identifyLayerResult.Error != null) { //Display error } else if (identifyLayerResult.Popups?.Count > 0) { //Get the popup for geoelement var ge=identifyLayerResult.Popups[0].GeoElement; //get attributes foreach (KeyValuePair<string, object> element in ge.Attributes) { // do something } } else if (identifyLayerResult.SublayerResults?.Count > 0) { foreach (var sublayer in identifyLayerResult.SublayerResults) { if (sublayer.Popups?.Count > 0) { ////Get the popup from sublayer var sublayerGE=(sr.Popups[0].GeoElement); } .... } }
... View more
12-13-2016
10:17 AM
|
1
|
4
|
2905
|
|
POST
|
Since VS is still a 32-bit process too, therefore it would be trying to load the 32-bit runtime.
... View more
12-01-2016
09:41 AM
|
0
|
0
|
1268
|
|
POST
|
Glad the workaround worked. I am still curious if I can repro the problem and find cause of failure with background loading. Will be you be able to share your code for setting platform specific image. If want you can direct email me pmaske@esri.com -Preeti
... View more
11-30-2016
11:25 AM
|
0
|
0
|
4386
|
|
POST
|
Glad it worked. It would make sense that installing x32 resolved the issue because by default a WPF Application has prefer 32 bit checked on and app needed 32 bit redistributable which was missing earlier.
... View more
11-30-2016
11:07 AM
|
0
|
0
|
1268
|
|
POST
|
You might be missing another requirement as listed in systems requirement "Applications built with ArcGIS Runtime SDK for .NET require installation of Microsoft Visual C++ 2015 Redistributable Update 3." https://developers.arcgis.com/net/latest/wpf/guide/system-requirements.htm
... View more
11-30-2016
10:12 AM
|
0
|
3
|
1268
|
|
POST
|
The error you mentioned indicates you are hitting a bug but we tried reproducing the issue by writing code using similar workflow and were not able to reproduce it. There are couple things you can do to help us narrow down the problem. Can you please try changing the code with one option at a time and run your code and see if it still reproduces the problem. - await SetGraphicSymbolAsync method that sets the picturemarkersymbol. - Get rid of async symbol stuff altogether or replace PictureMarkerSymbol with a SimpleMarkerSymbol. Thanks, Preeti
... View more
11-30-2016
10:07 AM
|
0
|
1
|
4386
|
|
POST
|
We are unable to reproduce this. Usually that error is displayed until nuget packages are restored. Once the packages are restored and application is clean+rebuild, that error warning goes away.
... View more
11-29-2016
04:27 PM
|
0
|
0
|
1268
|
|
POST
|
Can you please share your code that reproduces the problem ?
... View more
11-29-2016
02:36 PM
|
0
|
0
|
4386
|
|
POST
|
Hope you see the image now. This is the image I was referring too. But I guess you got what I was asking to check. Ok so, does the app work/deploy in release mode? As an FYI, there are some issues with arm64-v8a architecture that are currently under investigation. Would it possible for you to uncheck arm64-v8 and test running/deploying your app? -Preeti
... View more
11-29-2016
01:28 PM
|
0
|
1
|
3257
|
|
POST
|
Can you please check that project properties > Android Options> Advanced Tab has the architecture that matches the architecture of the mobile to be checked ON. See image above for reference. Let me know.
... View more
11-29-2016
11:54 AM
|
0
|
3
|
3257
|
| 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 |
10-15-2025
10:12 AM
|