|
POST
|
@JoeHershman ArcGIS Runtime SDKs for .NET, iOS, and Qt have been certified for iOS 16. Note we're still waiting for the release of iPadOS 16 to certify on iPad. System requirements for 100.15 | ArcGIS Runtime API for .NET | ArcGIS Developers System requirements for 100.15 | ArcGIS Runtime API for iOS | ArcGIS Developers System requirements for 100.15 | ArcGIS Runtime API for Qt | ArcGIS Developers Thanks
... View more
10-06-2022
02:21 PM
|
0
|
0
|
1944
|
|
BLOG
|
The ArcGIS Runtime 200.0 Beta program is now available for you to get early access to the next major release of the ArcGIS Runtime SDKs for .NET, Java, and Qt. To continue delivering on our mission to bring you comprehensive mapping and geospatial SDKs with a premium developer experience for building modern ArcGIS solutions, the ArcGIS Runtime SDKs are evolving to take advantage of recent developments in the underlying development frameworks on which they are built. Highlights in this beta release include: .NET MAUI support with ArcGIS Runtime SDK for .NET JavaFX 17 improved support with ArcGIS Runtime SDK for Java. Qt 6 support with ArcGIS Runtime SDK for Qt. See this blog post for more information on what's new in each SDK, the 100.x lifecycle, and future plans.
... View more
10-05-2022
01:59 PM
|
1
|
0
|
698
|
|
POST
|
You might try testing the service via the HTML pages as well, to help track down where the bottleneck is e.g. the query below uses 1=1 to get all 108 features from your service, including geometry. If you don't need the geometry you can disable that part of the query - in the API you'd specify ReturnGeometry = false. https://geo.abs.gov.au/arcgis/rest/services/ASGS2021/SA4/MapServer/0/query?where=1=1&text=&objectIds=&time=&geometry=&geometryType=esriGeometryEnvelope&inSR=&spatialRel=esriSpatialRelIntersects&distance=&units=esriSRUnit_Foot&relationParam=&outFields=&returnGeometry=true&returnTrueCurves=false&maxAllowableOffset=&geometryPrecision=&outSR=&havingClause=&returnIdsOnly=false&returnCountOnly=false&orderByFields=&groupByFieldsForStatistics=&outStatistics=&returnZ=false&returnM=false&gdbVersion=&historicMoment=&returnDistinctValues=false&resultOffset=&resultRecordCount=&returnExtentOnly=false&datumTransformation=¶meterValues=&rangeValues=&quantizationParameters=&featureEncoding=esriDefault&f=html
... View more
10-03-2022
06:29 PM
|
0
|
0
|
2990
|
|
POST
|
Apologies. I just tried your code and it appear to work fine: control returns to the UI thread and the async tasks continue to run effectively in the background. For the query I'm using 1=1 which retrieves all features which appear to be about 100 per layer. Note it took almost 1min from submitting the query to the service responding so I do think the server/service appears to be running a little slowly. string MAPSERVER_SA4 = "https://geo.abs.gov.au/arcgis/rest/services/ASGS2021/SA4/MapServer/0";
string MAPSERVER_SA3 = "https://geo.abs.gov.au/arcgis/rest/services/ASGS2021/SA4/MapServer/1";
ServiceFeatureTable sft_SA4 = new ServiceFeatureTable (new Uri($"{MAPSERVER_SA4}"));
ServiceFeatureTable sft_SA3 = new ServiceFeatureTable(new Uri($"{MAPSERVER_SA3}"));
QueryParameters myquery = new QueryParameters() { WhereClause="1=1"};
FeatureQueryResult fc1; FeatureQueryResult fc2;
var t1 = sft_SA4.QueryFeaturesAsync(myquery);
var t2 = sft_SA3.QueryFeaturesAsync(myquery);
await Task.WhenAll(t1, t2); // both complete
fc1 = t1.Result;
fc2 = t1.Result;
... View more
10-03-2022
04:36 PM
|
0
|
0
|
2997
|
|
POST
|
Because you're awaiting the task, the second query will be executed after the first one completes. To execute the tasks in parallel see Task.WhenAll Method (System.Threading.Tasks) | Microsoft Learn or Parallel.ForEach Method (System.Threading.Tasks) | Microsoft Learn. While you're migrating to use the more data-oriented end points - we now recommend using Class ServiceGeodatabase rather than the more granular ServiceFeatureTable because your FeatureServer and therefore the client ServiceGeodatabase may contain behavior that operates on multiple tables in the service. Some background info: Attribute rules: Release notes for 100.14 | ArcGIS Runtime API for .NET | ArcGIS Developers Feature service client edits: Release notes for 100.13 | ArcGIS Runtime API for .NET | ArcGIS Developers Branch versioning: Release notes for 100.10 | ArcGIS Runtime API for .NET | ArcGIS Developers
... View more
10-03-2022
09:58 AM
|
0
|
0
|
3006
|
|
POST
|
Can you share more details about: .NET target framework & version? e.g. NET Framework 4.8 ArcGIS Runtime SDK for .NET API and version? e.g. WPF, 100.15 Do you get the same experience when accessing via the FeatureServer endpoint? i.e. https://geo.abs.gov.au/arcgis/rest/services/ASGS2021/SA4/FeatureServer/0
... View more
09-30-2022
09:57 AM
|
0
|
0
|
1678
|
|
POST
|
If it's a difference between debug and release, I recommend comparing all the project settings (e.g. optimization, http, capabilities) as all these can impact how apps built in release mode run. Often there are settings which are enabled by default in debug but that you explicitly need to opt into in release mode. The following may be useful: Configure build variants | Android Developers
... View more
09-27-2022
12:08 PM
|
0
|
0
|
1140
|
|
POST
|
Can you provide more context about your scenario? (typically it's not necessary to read bundle files directly, instead you would access the Tile Cache via the Class TileCache (arcgis.com) and Class ArcGISTiledLayer)
... View more
09-23-2022
04:54 PM
|
0
|
2
|
1587
|
|
POST
|
By default, labeling will attempt to place (show) as many labels as possible based on the rules/properties you set, but if they cannot be placed because they would overlap, then they will not be placed. Instead, to always place labels regardless of overlaps, you should set the LabelDefinition class property LabelDeconflictionStrategy to either: LabelDeconflictionStrategy::None : The label will be placed in the preferred location, regardless of overlaps with other features, graphics, or labels. LabelDeconflictionStrategy::DynamicNeverRemove : The label will be placed in the preferred location, but may be moved to an alternative location to minimize overlapping higher priority labels or feature/graphic symbols. For more info see: <LabelingTypes.h> - Collection of Labeling Enums | ArcGIS Runtime API for Qt | ArcGIS Developers LabelDefinition Class | ArcGIS Runtime API for Qt | ArcGIS Developers
... View more
09-23-2022
04:47 PM
|
0
|
0
|
1852
|
|
POST
|
Thanks for sharing the repro project - I see it references Esri.ArcGISRuntime.Xamarin.Forms Version 100.11.2 - are you able to repro with the current release? (100.15) e.g. we fixed an issue with nested group layers for 100.15.
... View more
09-23-2022
03:10 PM
|
0
|
1
|
1149
|
|
POST
|
That's not an approach I've seen anyone take... we obviously recommend querying via the API (Method QueryFeaturesAsync (arcgis.com)). That said, perhaps... Check your connection string: From a quick search on StackOverflow it looks like the connecting string should include the directory name and you access each dbf file in that directory as a table of the database connection? e.g. c# - Read DBF file: System.Data.OleDb.OleDbException - Stack Overflow Take a look at the technical spec for Shapefile for dbf info: ESRI Shapefile Technical Description
... View more
09-23-2022
02:48 PM
|
0
|
1
|
2928
|
|
POST
|
Hi Joe, We do plan to certify iOS 16 for 100.15, and similarly Android 12. We'll update this thread when that process is complete and update the System Requirements doc topics accordingly. Note we did test iOS 16 dev betas prior to the release of iOS 16 and didn't encounter any major issues, but unfortunately we do have to wait for the actual release and certify with that. We appreciate your feedback. Thanks
... View more
09-23-2022
10:35 AM
|
1
|
1
|
1972
|
|
POST
|
> after I get my users authenticated in the main body of the app Are your users authenticating as ArcGIS users?
... View more
09-22-2022
10:30 AM
|
0
|
1
|
2911
|
|
POST
|
Can you share your current JSON label definition? Note ArcGIS Runtime now has a full API for labeling, we recommend migrating from your JSON definition to using the API types. For more info see LabelDefinition Class | ArcGIS Runtime API for Qt | ArcGIS Developers
... View more
09-22-2022
09:28 AM
|
0
|
0
|
1878
|
|
POST
|
Hi, The basemaps in the BasemapStyle Enum are the new developer basemaps. You enable your access to them by creating and managing your developer API keys in your ArcGIS Developer dashboard, or alternatively by authenticating with an ArcGIS Identity. Essentially the services need a token to enable access, that is either in the form of an API Key that you set via the API, or a token that's automatically appended to requests after you enable users to authenticate with their ArcGIS identity. For more info see: Release notes for 100.10 | ArcGIS Runtime API for .NET | ArcGIS Developers API keys | Documentation | ArcGIS Developers Thanks
... View more
09-21-2022
11:58 AM
|
0
|
3
|
2999
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 04-14-2026 05:04 AM | |
| 1 | 02-20-2024 07:02 AM | |
| 1 | 01-19-2026 06:44 AM | |
| 1 | 12-10-2025 07:16 AM | |
| 1 | 11-21-2025 08:12 AM |
| Online Status |
Offline
|
| Date Last Visited |
a week ago
|