POST
|
Is it possible to render vector MBTiles in the map view using runtime SDK 10.2.5? If Yes, how can we achieve that? Or even `*.vtpk` files are good enough to render. I have already rendered raster MBTiles.
... View more
04-16-2019
06:18 AM
|
0
|
1
|
822
|
POST
|
I would to like to group a field from `geodatabase`. The desired query is, SELECT PINCODE FROM <table-name> GROUP BY PINCODE; How to create a `AGSQuery` object focusing above SQL Query? I'm using ArcGIS runtime SDK 10.2.5. This guide helped me explore more. The expected result should be like, PINCODE: [ 10002, 10004, 10007, ... 10022 ] But, I got as follows, { PINCODE = 10002; "PINCODE_COUNT" = 147; }, { PINCODE = 10004; "PINCODE_COUNT" = 198; }, { PINCODE =10007; "PINCODE_COUNT" = 71; }, ... } The PINCODE 10002 has been holding by 147 records in the database.
... View more
03-06-2019
05:36 AM
|
0
|
1
|
416
|
POST
|
How to add an animation view (a view which moves with a rate of speed along with user location). I have added ` AGSGraphic` in a `AGSGraphicLayer`. Now, how can I animate that Object? Edit: Add graphics and text to graphics overlays—ArcGIS Runtime SDK for iOS | ArcGIS for Developers From above documentation, we can update the graphics. But, is there any other ways to animate the object?
... View more
01-06-2019
11:09 PM
|
0
|
1
|
539
|
POST
|
Yes i found that. Lot of stuffs in that class. Thanks Nick.
... View more
09-14-2018
12:29 AM
|
0
|
0
|
975
|
POST
|
I subclassed `AGSLocationDataSource` with bunch of location and timestamp information. Now i assigned the datasource to the location display and started the datasource for the simulation purpose. Its perfectly worked in runtime SDK v 10.2.x, but not in v 100.x. I found that the protocol has been changed as classes and the protocol was removed from the AGSLocationDisplay in v100.x Please see the below image (in runtime SDK v 10.2): It would be great if you upload any sample source code or more details about the AGSLocationDisplay with custom datasource. I know, there is `AGSSimulatedLocationDataSource` for simulate location updates. But i need to control the speed of the location updates and to support normal device location service as well. Regards,
... View more
08-29-2018
08:56 AM
|
0
|
1
|
608
|
POST
|
I have used `AGSGeometryWebMercatorToGeographic` and ` AGSGeometryGeographicToWebMercator` to convert from web mercator to geographic in runtime Sdk 10.x. But its not in runtime sdk 100.x. How can i get this functionalities? Regards,
... View more
08-28-2018
08:35 AM
|
0
|
1
|
697
|
POST
|
Hi, These methods are not accessible in runtime SDK 100.x. how can i achieve this? Regards,
... View more
08-28-2018
08:07 AM
|
0
|
2
|
975
|
POST
|
I have tried to get the features from the feature table using `AGSQueryparameter` by applying a geometry (AGSPolyLine). But it returns empty `AGSFeatureQueryResult`. How can i get the features here. code: AGSQueryParameters* query = [AGSQueryParameters queryParameters]; [query setGeometry:geometry]; [query setReturnGeometry:YES]; // fetching features from AGSArcGISFeatureTable [featueTable queryFeaturesWithParameters:query completion:^(AGSFeatureQueryResult * _Nullable result, NSError * _Nullable error) { //empty results here }];
... View more
08-09-2018
07:20 AM
|
0
|
1
|
594
|
POST
|
Hi Nicholas Furness, Here what i did, before: (as in Github sample code), relatedTable.createFeatureWithAttributes -> relatedFeature.relateToFeature -> relatedTable.addFeature I don't have any idea why it was not working for me or in Objective-C. Its Strange. after: relatedTable.createFeatureWithAttributes -> relatedTable.addFeature -> relatedFeature.relateToFeature Now the related feature is added to actual feature.
... View more
07-24-2018
06:39 AM
|
0
|
0
|
655
|
POST
|
Hi Nick, yes. I called 'refreshObjectID' and can able to get the objectID of original feature. The value of ObjectID is assigned to "OriginalFeatureID" of related feature's attribute.
... View more
07-18-2018
06:53 AM
|
0
|
2
|
655
|
POST
|
I have created a related feature for a feature. I got the following error while trying to add the related feature to the related table. error: OriginalFeatureID has an incorrect value. Encountered on feature with ID of -9223372036854775808. here the code to relate the feature with the related feature [relatedFeature relateToFeature: (AGSArcGISFeature*)data.originalFeature]; OriginalFeatureID's value is automatically assigned to the related feature attribute after calling relateToFeature: method I have commented "relateToFeature" and added the OriginalFeatureID Manually at related feature creation, as [NSNumber numberWithLongLong:123456];. Same error occurs.
... View more
07-02-2018
05:47 AM
|
0
|
4
|
765
|
POST
|
Yes, your reply worked for me. This is regarding listing related features. I have followed the following class arcgis-runtime-samples-ios/ListRelatedFeaturesVC.swift at ea83939a56101ef82f17ff6eecb1b2faa716d720 · Esri/arcgis-runtime… to fetch the related features. I tried to add related table in mapview as like in example. i got the following error: ArcGIS Runtime Error Ocurred. Set a breakpoint on C++ exceptions to see the original callstack and context for this error: Error Domain=com.esri.arcgis.runtime.error Code=24 "Object already owned." UserInfo={NSLocalizedFailureReason=Already owned., NSLocalizedDescription=Object already owned., Additional Message=Already owned.} I didn't get any clear idea about this. How can i add related table object to map.tables.
... View more
06-26-2018
04:12 AM
|
0
|
1
|
839
|
Title | Kudos | Posted |
---|---|---|
3 | 03-01-2018 11:02 PM |
Online Status |
Offline
|
Date Last Visited |
11-11-2020
02:25 AM
|