|
POST
|
The template installer for WPF only comes with .NET 6 support and requires VS2022. This is because the We a few years ago removed the .NET Framework templates to be in line with the Microsoft recommendation to not use .NET Framework for new work. To use .NET Framework, instead create a blank WPF .NET Framework application and add the Esri.ArcGISRuntime.WPF NuGet package (this should even work in VS2017, although we don't officially support/test it). Just changing the framework in the SDK-style project isn't fully supported with .NET Framework. It's possible but might cause a few headaches (you could try adding <PlatformTarget>AnyCPU</PlatformTarget> to the PropertyGroup, and it might resolve this specific issue but I'd still recommend starting with the blank wpf templates instead)
... View more
04-30-2022
04:28 PM
|
0
|
1
|
3540
|
|
POST
|
Update 14 (out soon) will allow you to override the automatically set max extent initialized at startup.
... View more
04-20-2022
09:29 AM
|
0
|
0
|
1191
|
|
POST
|
There is no built-in support for WKT. However I did write a library a while back that can do that. It should likely still work, but might need a bit of a version upgrade: https://github.com/dotMorten/GeometryConversions
... View more
04-20-2022
09:03 AM
|
0
|
0
|
897
|
|
POST
|
You can set the zoomfactor here: https://developers.arcgis.com/net/api-reference/api/netwin/Esri.ArcGISRuntime/Esri.ArcGISRuntime.UI.InteractionOptions.ZoomFactor.html mapView.InteractionOptions = new Esri.ArcGISRuntime.UI.MapViewInteractionOptions() { ZoomFactor = 1.5 }; > Because the mouse wheel delta value always is 120/-120 Some mice reports much smaller (but more frequent) intervals - in that case zooming switches to a much more discrete amount of zoom. Also try shift + drag to create a zoom box (ctrl+shift+drag to zoom out).
... View more
04-18-2022
01:11 PM
|
0
|
0
|
1163
|
|
POST
|
Good news! We now have an official preview you can try out! https://community.esri.com/t5/arcgis-runtime-sdks-blog/announcing-preview-1-of-net-maui-support-with/ba-p/1160505
... View more
04-06-2022
09:22 AM
|
1
|
0
|
2295
|
|
POST
|
Good news! We have an official preview you can now use: https://community.esri.com/t5/arcgis-runtime-sdks-blog/announcing-preview-1-of-net-maui-support-with/ba-p/1160505
... View more
04-06-2022
09:20 AM
|
0
|
0
|
3495
|
|
POST
|
Engine and Runtime are two vastly different architectures, so a one-to-one mapping of classes is going to be really tough / impossible. Also you might be looking at changing the approach or workflows to solve certain use-cases. I'd recommend you install the WPF Sample Viewer (https://www.microsoft.com/store/productId/9MTP5013343H) and find samples that shows how to do various workflows you're looking to duplicate and study the code behind each sample.
... View more
03-29-2022
12:17 PM
|
2
|
0
|
1155
|
|
POST
|
We are not currently planning on it, but collecting feedback and requirements so we can consider it in the future.
... View more
03-26-2022
05:01 PM
|
0
|
0
|
1374
|
|
POST
|
.NET 6-ios and .NET 6-android support isn't at this point supported, but considered preview. After we shipped Update 13, Microsoft updated their .NET 6 ios runtime with lots of breaking changes, which is what you're hitting. We just shipped Update 13.1 a few days ago, and it's compiled with the latest, so (for now at least) that version should work with iOS (I've successfully used it). I have a MAUI sample here you can also play with and is quite similar to what you have: https://github.com/dotMorten/MauiPlayground/tree/main/Esri.ArcGISRuntime.Maui
... View more
03-26-2022
04:58 PM
|
2
|
0
|
3592
|
|
POST
|
Could you try and add this to your application and see if that resolves the issue for you? var ms = MyMapView.LocationDisplay.CourseSymbol as Esri.ArcGISRuntime.Symbology.MarkerSymbol; ms.AngleAlignment = Esri.ArcGISRuntime.Symbology.SymbolAngleAlignment.Map;
... View more
03-15-2022
10:47 AM
|
0
|
1
|
2770
|
|
POST
|
Sorry for not responding earlier and following up with me at devsummit. We've confirmed this regression and are tracking the issue internally. It looks like there's generally an issue with taking the current map rotation into account when not in navigation mode or compass mode.
... View more
03-15-2022
10:10 AM
|
1
|
0
|
2777
|
|
POST
|
At this point no. Microsoft are still working on .NET MAUI, and the timeline there is still just "Q2" which makes it hard for us to plan specific releases around. Once MAUI finalizes, we'll see how quickly we can get something out after that, but it might still be preview for some time.
... View more
03-07-2022
01:50 PM
|
0
|
0
|
2376
|
|
POST
|
I'm a little confused. The Runtime SDK doesn't have, and never had a "center cross-hair". Can you explain a bit more what you're referring to?
... View more
03-02-2022
02:49 PM
|
0
|
0
|
1265
|
|
POST
|
One thing to note is that the target framework is just the minimum SDK you need to reference. It isn't the same as the minimum supported. For instance you can add this to your project properties: <SupportedOSPlatformVersion>8.1</SupportedOSPlatformVersion> That allows the app to also run on Windows 8.1 (the above minimum requirements Mike listed is for Windows 10). If you set this to 7.0 for instance, you'll actually see any use of our APIs would generate a build warning that you are risking accessing APIs not supported for Windows 7. The ArcGIS Runtime project starter template for WPF actually sets this value to 8.1 too. In the future we might change the required target to 19041 or 22000, but that again isn't the same as changing the minimum requirement.
... View more
03-02-2022
02:45 PM
|
1
|
0
|
1743
|
|
POST
|
There's really not much context to go on here, wrt what code you're running, how you set up searchview etc. Do you have a reproducer sample to share? Also could you share what it says next to the purple "StackTrace" part, that seem to start with "at Xamarin.Forms.Platform.iOS.", and share the full text in that field? That might give a better indication of where it went wrong and where.
... View more
02-18-2022
11:47 AM
|
0
|
0
|
782
|
| 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 month ago
|