|
POST
|
One more thing: If your installed app isn't launching (ie nothing is happening) it is likely crashing. Open up "Event Viewer" and got to Windows Logs -> Application. There should be some recent Error entries that should give you an indication of what went wrong (note there might be multiple entries for the same error, but they contain different details). Make sure content files etc from your project is included (most importantly the "arcgisruntime200.3\*" folder).
... View more
06-13-2024
06:58 PM
|
0
|
0
|
2071
|
|
POST
|
I don't think this is settable in the project dialogs. I never use those any longer either. Typically you do this in the publish settings instead, but since you're doing some kind of installer project I'm guessing you're not using that. Anyway you set it in the project file directly. Add the following to a project group> <RuntimeIdentifier>win-x64</RuntimeIdentifier> <Platform>x64</Platform> You could also create platform configurations and have it change based on it. ie <RuntimeIdentifier Condition="'$(Platform)'=='x64'">win-x64</RuntimeIdentifier> <RuntimeIdentifier Condition="'$(Platform)'=='x86'">win-x86</RuntimeIdentifier> Again I don't quite know what kind of MSI project you're using since AFAIK they don't ship one out of the box with Visual Studio, so I don't know how it tries to compile the project. If you use the newer App Packaging projects that creates MSIX it'll "just work".
... View more
06-13-2024
06:36 PM
|
0
|
0
|
2078
|
|
POST
|
Since I see the "runtimes" folder in the last screenshot, it looks like you compiled for AnyCPU (the DLLs you're looking for are likely in the runtimes folder). Try setting Platform=x64 and RuntimeIdentifier=win-x64, and the runtimes folder will go away, and the native assemblies will be placed in the root folder.
... View more
06-13-2024
03:35 PM
|
0
|
2
|
2116
|
|
POST
|
Maui just released a service release with a bunch of memory leak fixes: https://github.com/dotnet/maui/releases/tag/8.0.60 If any view on a page leaks, it'll end up holding on to the entire page, including the mapview, and there's not much we can do to overcome that. If the above update doesn't help, you could actually removing the entire mapview control from the page when navigating away. It won't fix your memory leak, but it'll at least get rid of the largest amount of memory being leaked.
... View more
06-12-2024
11:36 AM
|
0
|
1
|
3926
|
|
POST
|
Do you only see the memory issue on iOS? Is so, do you happen to be using a Toolbar in your app? There are a couple known toolbar memory issues preventing the entire page from getting garbage collected: https://github.com/dotnet/maui/issues/20703 https://github.com/dotnet/maui/issues/22814 They were both fixed in the last week or so, so if you're up for trying out the nightly builds of MAUI that might help confirm/deny if you're hitting this issue.
... View more
06-10-2024
01:35 PM
|
0
|
3
|
4014
|
|
POST
|
> Yes, you can deploy it without a license. But "License for developers Use Only" will be shown forever. I guess your customer wouldn't like it. I'm fairly certain that would be against the license agreement. If you sign into an ArcGIS Portal, you can also get a license key from the portal as part of your login flow in the app.
... View more
06-05-2024
08:52 AM
|
0
|
0
|
4605
|
|
POST
|
We don't provide a project template for .NET Framework. When using that project template, .NET 8 will be used. How are you trying to install the package? You either install the Visual Studio extension to get project templates, or you install it from commandline using: dotnet new install Esri.ArcGISRuntime.ProjectTemplates::200.4.0 You can't add this package to an existing project, as the error hints at this is a template nuget, and not a library nuget (there are several kinds of nuget packages). If you just need to reference the SDK, add a reference to Esri.ArcGISRuntime.WPF and you should be good to go.
... View more
06-04-2024
11:06 AM
|
0
|
0
|
1333
|
|
POST
|
The iOS DLL is correct (it’s the same for iOS and catalyst). this looks more like an issue with xamarin and the linker. Is Xcode, Maui workloads and maps Sdk all up to date?
... View more
05-20-2024
01:53 PM
|
0
|
1
|
1739
|
|
POST
|
Simplify removes duplicate points as well, and if the start and endpoint is the same, it'll remove it. Polygons are always closed and doesn't need the last vertex to be the same as the first.
... View more
05-16-2024
08:45 AM
|
1
|
0
|
917
|
|
POST
|
Did you try setting the OutSpatialReference property as I suggested?
... View more
05-14-2024
09:15 AM
|
0
|
1
|
2083
|
|
POST
|
By default you're getting coordinates in the projection of your map - which is probably WebMercator. In the query you can set the output spatial reference, by setting the OutSpatialReference on your QueryParameters: https://developers.arcgis.com/net/api-reference/api/net/Esri.ArcGISRuntime/Esri.ArcGISRuntime.Data.QueryParameters.OutSpatialReference.html You can also use the GeometryEngine to project coordinates. For instance: var newGeometry = GeometryEngine.Project(feature.Geometry, SpatialReference.Create(4269));
... View more
05-10-2024
08:58 PM
|
1
|
3
|
2180
|
|
POST
|
The feature query returns "Geometry" which is the baseclass of "MapPoint", since it could have been a polygon or polyline. So you first need to cast it to MapPoint: double tempX = ((MapPoint)feature.Geometry).X;
... View more
05-10-2024
07:40 PM
|
1
|
0
|
2189
|
|
POST
|
@DevinCarlson1 I suggest you post that limitation in the Pro SDK area, since they probably don't look in the Maps SDK forum.
... View more
05-09-2024
08:56 AM
|
0
|
0
|
3411
|
|
POST
|
This was addressed in the 200.1 build of the localservices package, and you can now use "dotnet build" with .NET Framework apps that references this package. wrt restoring, you can use "msbuild /restore project.csproj" to achieve the same thing.
... View more
05-08-2024
08:55 PM
|
0
|
2
|
3422
|
|
POST
|
For the tiles themselves yes, but we need a way to understand the tiles first, and that's where the service metadata comes in. Here's a good thread on how someone accomplished it: https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/is-it-possible-to-render-mapbox-vector-tiles-pbf/td-p/380081 And some more doc on vector tile services: https://developers.arcgis.com/documentation/mapping-apis-and-services/data-hosting/vector-tile-services/introduction/
... View more
05-03-2024
11:31 AM
|
0
|
0
|
2408
|
| 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 |
Monday
|