|
POST
|
What version of .NET did you upgrade from where it didn't happen? Was this the only change you made? (just on a side note, the v10.x releases retired four years ago, and we encourage you port to the 200.x releases if you can)
... View more
09-19-2023
10:04 AM
|
0
|
0
|
1370
|
|
POST
|
Make sure you configure your oauth app settings in the portal to have a redirect url that matches what you have in the application. If there's a mismatch, you get the error you report. If possible, any chance you could share something that reproduces the hang? Also where do you see the hang?
... View more
09-14-2023
08:44 AM
|
0
|
0
|
3081
|
|
POST
|
Thanks for confirming. In that case we might need some more information to replicate the issue you're referring to. We are not currently aware of IWA issues on Android. Having said that, any chance you could give v200.2.0 a go and see if it still reproduces? There's been quite a lot of fixes over the past year, and as mentioned, IWA on Android wasn't really supported in MAUI until .NET 7 shipped - 200.2 is built for .NET 7 on Android.
... View more
09-12-2023
09:56 AM
|
0
|
3
|
3110
|
|
POST
|
Also want to add that there's currently a bug in the .NET 8 Preview, preventing IWA from working on Android. But as Preeti said, .NET 7 should "just work". It's actually a feature that was added to Android in .NET 7. It's also worth noting that .NET 6 is no longer supported by .NET MAUI. Side note: ArcGISHttpMessageHandler is merely a delegate now. On Android it uses .NET's SocketsHttpHandler under the hood and should improve authentication across the board for Android, whereas with Xamarin.Android each message handler had their pros and cons.
... View more
09-11-2023
06:14 PM
|
0
|
0
|
3270
|
|
POST
|
I'm able to reproduce your issue. Still investigating the root cause, but I was able to work around it with this bit of code in MainPage.xaml: protected override void OnAppearing()
{
#if ANDROID
if (MyMapView.GetCurrentViewpoint(ViewpointType.CenterAndScale) is Viewpoint vp)
MyMapView.SetViewpoint(vp);
#endif
}
... View more
08-22-2023
10:32 AM
|
1
|
0
|
10046
|
|
POST
|
The above two links are how you can create picture marker symbols in v100.x+ . Moving from 10.x releases you're going to have to adapt to some various new patterns. While the feature set is the same (and then some), the way you achieve all the features might be slightly different.
... View more
08-01-2023
03:08 PM
|
0
|
0
|
1800
|
|
POST
|
No there's no setting for turning this off. While it might appear that the dot is always up to a second behind, in real world navigation with natural acceleration and deceleration, the experience is a lot better than a "jumping" symbol, but in local simulated testing, it might feel like it's more off than it should be.
... View more
08-01-2023
12:01 PM
|
0
|
1
|
1809
|
|
POST
|
Are you able to reproduce the issue with v100.15? (even if just for a local quick test)
... View more
08-01-2023
09:47 AM
|
0
|
0
|
839
|
|
POST
|
PictureMarkerSymbol can be created with either a Uri in the constructor or from a stream of bytes. There's been a slight shift in the API and leaning more towards model objects (like your map definition) to be created in your models or viewmodels, rather than in XAML, and keeping the XAML bit focused on the UI pieces.
... View more
08-01-2023
09:44 AM
|
0
|
0
|
1810
|
|
POST
|
The 1 second is expected. When the MapView receives the location update, it'll animate the location update from the old position to the newly reported location. That animation is about 1 second.
... View more
07-31-2023
04:37 PM
|
0
|
3
|
1829
|
|
POST
|
The offline tiles aren't created when you ask for the offline map. Those have already been pre-cooked in the online tile-service. So the quality you get is exactly the quality of the online tiles. Having said that, you can limit how many zoom levels you're downloading, so if you don't need the highest resolution tiles, you can limit the scale range in the offline parameters.
... View more
07-10-2023
09:45 AM
|
1
|
1
|
1967
|
|
POST
|
Have you tried using a Polygon with two rings instead of an extent? That might do the trick.
... View more
06-28-2023
01:53 PM
|
1
|
1
|
1865
|
|
POST
|
> expecting the live data from Esri service also without using Enterprise subscription That specific service requires a subscription. I'm not aware of any free traffic services, but if you can find one, you could try and write a custom layer for it. > 2. the Route Service api generates a single route for the given stops wherein we are expecting all possible different routes. I'm not sure what you mean by "All possible routes". The service provides the most optimal route for the given input. Depending on which routing service you use, you can have it optimize for various things and adjust weights to get alternative routes (like fastest vs shortest, walking vs driving vs biking, avoid toll roads and ferries etc).
... View more
06-15-2023
10:44 AM
|
1
|
0
|
1153
|
|
POST
|
See https://community.esri.com/t5/net-maps-sdk-questions/live-traffic-net-mauvi/m-p/1299761#M11922
... View more
06-15-2023
10:43 AM
|
0
|
0
|
1342
|
|
POST
|
The Maps SDK for .NET only supports the base .net7 target for class libraries. When you go to execute at runtime, it requires a platform identifier so the correct native libraries gets deployed and are available at runtime. I'm guessing the issue you're referring to is related to that .NET MAUI deploys on Windows as a packaged app, and your test runner (and commandline parameters) must support this. Which test framework are you using?
... View more
06-09-2023
09:10 AM
|
0
|
1
|
4023
|
| Title | Kudos | Posted |
|---|---|---|
| 2 | 05-11-2026 07:05 AM | |
| 2 | 03-19-2026 06:03 PM | |
| 1 | 03-03-2026 04:41 PM | |
| 1 | 02-26-2018 07:53 AM | |
| 1 | 02-26-2018 07:51 AM |
| Online Status |
Offline
|
| Date Last Visited |
a week ago
|