|
POST
|
Trying to use this example: Object Detection Workflow with | ArcGIS for Developers log into and AGOL and i get content not found error: well_pads = gis.content.get('ae6f1c62027c42b8a88c4cf5deb86bbf') # Well pads layerwell_pads If I try to use services url's i get the SSL errors: URLError: <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed (_ssl.c:841)>
Thank you,
... View more
08-15-2019
10:50 AM
|
0
|
2
|
944
|
|
POST
|
widgets have 'onMinimize', 'onMaximize' function, does 'onResize' widget function exists? Thank you,
... View more
06-16-2019
04:38 AM
|
0
|
3
|
1317
|
|
POST
|
I have downloaded the Geodatabase thru GeodatabaseSyncTask. with 'returnAttachments: true' as parameter. I am using click>Identify>Select features on the map, then download attachment thru this code, code below get attachments from online feature service, geodatabase feature service returns nothing: onSelectFeaturesStatusChanged: { if (selectFeaturesStatus === Enums.TaskStatusCompleted) { if (!selectFeaturesResult.iterator.hasNext) return; selectedFeature = selectFeaturesResult.iterator.next(); attachmentListModel = selectedFeature.attachments; attachmentListModel.fetchAttachmentsStatusChanged.connect(function() { if(attachmentListModel.fetchAttachmentsStatus === Enums.TaskStatusCompleted){ console.log("loaded"); console.log(attachmentListModel.count); attachmentListModel.forEach(function(element, index, array) { element.fetchDataStatusChanged.connect(function(){ if(element.fetchDataStatus===Enums.TaskStatusCompleted){ console.log(element.attachmentUrl); } }); element.fetchData(); }); } }); } }
... View more
03-28-2019
01:20 PM
|
0
|
1
|
644
|
|
POST
|
Thank you Tina, When is the 3.3 Beta will be released as production version?
... View more
03-21-2019
11:47 AM
|
0
|
1
|
623
|
|
POST
|
App is keep crashing on Initialization of Camera page (app asked for camera and microphone permissions): Error on the console: /////////////// file:///var/mobile/Containers/Data/Application/AC7B5E3D-5602-4251-B6B4-C03896C720BF/Documents/ArcGIS/AppStudio/Apps/0e16a346002d499ab1205b30a3a7e3ea/QuickReport/pages/AddPhotoPage.qml:910: TypeError: Property 'start' of object QmlCamera(0x121ad6ed0) is not a function ////// Running ESRI Player App on iOS, version 12.1.4 (16D57) Quick Report version 3.2
... View more
03-20-2019
12:07 PM
|
0
|
3
|
764
|
|
POST
|
I am using this example code:arcgis-runtime-samples-qt/GenerateGeodatabase.qml at master · Esri/arcgis-runtime-samples-qt · GitHub and it does create the replica, but the data is 10-15 min old, and not the latest. why would that happen? Params are: // create the generate geodatabase parameters GenerateGeodatabaseParameters { id: generateParameters extent: app.centerExtent outSpatialReference: SpatialReference { wkid: 4326 } returnAttachments: true syncModel: "SyncModelGeodatabase" // only generate a geodatabase with 1 layer layerOptions: [ GenerateLayerOption { layerId: featureLayerId } ] }
... View more
03-19-2019
11:16 AM
|
0
|
1
|
487
|
|
POST
|
ok, setting property loginRequired: false
resolved the loading issue.
Thanks,
... View more
03-14-2019
12:49 PM
|
0
|
0
|
847
|
|
POST
|
Thank you Lucas, that resolves the controls problems. How ever on start map doesn't show up, I checked the web map ID and its good Anything else is missing?
... View more
03-14-2019
12:33 PM
|
0
|
1
|
847
|
|
POST
|
Ye, I did all that, getting error on DownloadButton and GenerateWindow controls: qml: GenerateWindow is not a type Thank you,
... View more
03-14-2019
10:27 AM
|
0
|
3
|
847
|
|
POST
|
In this example: Generate offline map—ArcGIS Runtime SDK for Qt | ArcGIS for Developers I don't have the import Esri.ArcGISExtras 1.1 module, and the 'DownloadButton' control gives me error, which module should I use?
Thank you,
... View more
03-14-2019
10:10 AM
|
0
|
5
|
909
|
|
POST
|
Proper way:
var geodb = ArcGISRuntimeEnvironment.createObject("Geodatabase", { path: outputGdb}); geodb.loadStatusChanged.connect(function () { if (Enums.LoadStatusLoaded === geodb.loadStatus) { var tables = geodb.geodatabaseFeatureTables; var t1 = geodb.geodatabaseFeatureTablesByTableName["offline_test"]; var fc = ArcGISRuntimeEnvironment.createObject("FeatureLayer",
{featureTable: t1}); var map = ArcGISRuntimeEnvironment.createObject("Map",{}); map.operationalLayers.append(fc); mapView.map = map; } }) Thank you,
... View more
03-12-2019
07:27 AM
|
0
|
0
|
804
|
|
POST
|
I am trying to create the Map object from Geodatabase layer: var geodb = ArcGISRuntimeEnvironment.createObject("Geodatabase", {path: outputGdb});
var t1 = geodb.geodatabaseFeatureTablesByTableName["offline_test"]; var fc = ArcGISRuntimeEnvironment.createObject("FeatureLayer", {featureTable: t1 });
var map2 = ArcGISRuntimeEnvironment.createObject("Map",{}); map2.operationalLayers.append(fc); mapView.map = map2;
Map loads with no data, is this wrong way to load GB data programmatically?
Thank you,
... View more
03-11-2019
10:23 AM
|
0
|
1
|
804
|
|
POST
|
Found this read, not sure if its possible:Visualizing points with 3D symbols | ArcGIS API for JavaScript 4.10 Thank you, Laurynas
... View more
03-07-2019
11:28 AM
|
0
|
2
|
749
|
|
POST
|
How to add local Geodatabase feature class grammatically to the Map object created thru: ArcGISRuntimeEnvironment.createObject("Map",{}); ? Thank you
... View more
03-05-2019
01:38 PM
|
0
|
3
|
941
|
|
POST
|
Thank you Lucas, I was trying the identify thru mapView.identifyLayersWithMaxResults, it get's the selected feature, but nothing is highlighted thru this code: featureLayer.selectFeatures(identifiedObjects); Thank you,
... View more
03-01-2019
01:19 PM
|
0
|
0
|
629
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 06-26-2025 09:55 AM | |
| 2 | 08-24-2024 07:17 AM | |
| 1 | 05-07-2024 01:31 PM | |
| 1 | 02-09-2022 08:55 AM | |
| 1 | 02-08-2022 12:52 PM |
| Online Status |
Offline
|
| Date Last Visited |
11-24-2025
07:01 AM
|