|
POST
|
HI Paul, FYI- I have logged this as an official defect #BUG-000097758 -Enabling Labels on a feature layer causes application to crash on 64bit iOS devices
... View more
07-13-2016
05:12 PM
|
0
|
0
|
929
|
|
POST
|
HI Paul, Yes I was able to reproduce the issue in 64 bit iphone 6. I am going to log this as a defect and send you the bug id. Thank you. Nakul
... View more
07-13-2016
02:02 PM
|
0
|
1
|
929
|
|
POST
|
Thanks Shobana you were right. I confirmed that I am using 32 bit Soc 4th gen iPad. I need to find one and test with a 64 bit iOS device and I'll let you know. Thanks for your patience.
... View more
07-12-2016
11:07 AM
|
0
|
0
|
2340
|
|
POST
|
In your featureservice I couldn't find any features. But I tested with this feature service and it worked fine. Can you please test with this one? This one is also feature Service layer. Layer: Wildfire Response Points (ID: 0)
... View more
07-11-2016
05:30 PM
|
0
|
3
|
2340
|
|
POST
|
Hi Paul, I tested the following code on iPad with iOS 9.3.2 and I was not able to reproduce the issue. import QtQuick.Controls 1.2 import QtQuick 2.3 import ArcGIS.AppFramework 1.0 import ArcGIS.AppFramework.Runtime 1.0 App { id: app width: 800 height: 532 GeodatabaseFeatureServiceTable { id: featureServiceTable url: "http://sampleserver6.arcgisonline.com/arcgis/rest/services/Wildfire/MapServer/0" } Map { id: map anchors.fill: parent focus: true ArcGISTiledMapServiceLayer { url: "http://services.arcgisonline.com/ArcGIS/rest/services/World_Street_Map/MapServer" } FeatureLayer { enableLabels: true; featureTable: featureServiceTable } } }
... View more
07-11-2016
09:07 AM
|
0
|
5
|
2340
|
|
POST
|
FYI- An official defect with Support has been logged for this issue # BUG-000097435 : Vulnerability with libpng for Google Play Android .
... View more
06-27-2016
08:49 AM
|
0
|
2
|
3052
|
|
POST
|
Yes it should work just fine unless you are adding a local (offline) geodatabase and in that case it should be in same spatial reference as the basemap. I tested the following code and works fine ArcGISTiledMapServiceLayer { url: "http://server.arcgisonline.com/ArcGIS/rest/services/World_Street_Map/MapServer" } GeodatabaseFeatureServiceTable { id: featureServiceTable url: "http://sampleserver6.arcgisonline.com/arcgis/rest/services/Water_Network/FeatureServer/23" } FeatureLayer { id: featureLayer featureTable: featureServiceTable }
... View more
06-15-2016
08:58 AM
|
1
|
0
|
1124
|
|
POST
|
Hi Paul, Ok, I can see what you are referring to here. Remember paths or rings cannot have just one point. In order to have a legit polyline it must have atleast two points which means path has to have 2 points or more. Same for polygons. If you want to check for the PointCount use MultiPoint approach. See the code below. This way I get the desired results // No points yet qml: {"points":[]} qml: Point count is 0 qml: {"paths":[]} // First point added qml: {"points":[[-4207876.484103985,3465221.995640751]],"spatialReference":{"latestWkid":3857,"wkid":102100}} qml: Point count is 1 qml: {"paths":[],"spatialReference":{"latestWkid":3857,"wkid":102100}} // Next point added qml: {"points":[[-4207876.484103985,3465221.995640751],[1903563.1713803783,5368785.167021126]],"spatialReference":{"latestWkid":3857,"wkid":102100}} qml: Point count is 2 qml: {"paths":[[[-4207876.484103985,3465221.995640751],[1903563.1713803783,5368785.167021126]]],"spatialReference":{"latestWkid":3857,"wkid":102100}} Does this help? Thanks, Nakul onMouseClicked: {
if (capturePoints == true) {
if (numberOfClicks == 0) {
// No points yet
console.log(JSON.stringify(points.json))
console.log("Point count is ",points.pointCount)
console.log(JSON.stringify(featurePoly.json))
featurePoly.startPath(mouse.mapPoint)
points.add(mouse.mapPoint)
// First point added
console.log(JSON.stringify(points.json))
console.log("Point count is ",points.pointCount)
console.log(JSON.stringify(featurePoly.json))
pointGraphic.geometry = points
pointGraphic.symbol = markerSymbol
} else {
// Next point added
points.add(mouse.mapPoint)
featurePoly.lineTo(mouse.mapPoint)
graphic.geometry = featurePoly
graphic.symbol = lineSym
pointGraphic.geometry = points
pointGraphic.symbol = markerSymbol
console.log(JSON.stringify(points.json))
console.log("Point count is ",points.pointCount)
console.log(JSON.stringify(featurePoly.json))
}
numberOfClicks++
}
}
Graphic {
id: pointGraphic
}
MultiPoint {
id: points
spatialReference: {
"latestWkid": 3857,
"wkid": 102100
}
}
Polyline {
id: featurePoly
spatialReference: {
"latestWkid": 3857,
"wkid": 102100
}
}
... View more
06-10-2016
11:32 AM
|
0
|
0
|
591
|
|
POST
|
I am assuming your "LOCATION" value varies with attachments. Otherwise you can just hard code the name as "LOCATION" FOR instance aa_bb_cc_for_Kansas_(ss).png & ffff_sss_ee_for_Redlands_(eer).png. If this is how your attachments are, then you could use the following split method text: name.split('_')[name.split('_').length -2] This assumes that you have no "_" in "LOCATION" value and also you have exactly one more "_" after the "LOCATION" value. If not then we need to change the logic for attachment name extraction. In that case please provide more examples of your attachments. -Nakul
... View more
05-24-2016
05:39 PM
|
0
|
0
|
803
|
|
POST
|
You can go ahead and create a new application using our samples "User credentials". This should help you to get started on how to provide user credentials to access a secured feature layer. After that you can either choose to continue building on this sample or create a new app from the "Hello World" starter map template and port the code from this sample. The code snippet is the same as mentioned in the above links. I hope this helps. -Nakul
... View more
05-24-2016
08:45 AM
|
0
|
0
|
1340
|
|
POST
|
When you create a geodatabase using GeodatabaseSyncTask::generateGeodatabase, the replica is created and the local database is ready to be edited and synced. If you don't any further syncs or you wanna share that geodatabase, you need to unregister it. It can be done by using [ GeodatabaseSyncTask::unregisterGeodatabase(Geodatabase geodatabase) ]. After that you can go ahead and delete the geodatabase. I hope this helps. ArcGIS Runtime SDK for Qt QML API: GeodatabaseSyncTask Class Reference
... View more
05-23-2016
09:10 AM
|
1
|
1
|
1180
|
|
POST
|
Here is the code snippet to access secured feature service layers. I hope this helps. Access Secured ArcGIS Layers in your App using Runtime · Esri/arcgis-appstudio-samples Wiki · GitHub
... View more
05-13-2016
08:18 AM
|
0
|
3
|
1340
|
|
POST
|
Make sure to create a data folder in your app directory. Add the tpk to the data folder. I have tested this sample code and it works on both android and iPad. Can you please test it by uploading this sample and test it in the player? import QtQuick 2.3 import QtQuick.Controls 1.2 import ArcGIS.AppFramework 1.0 import ArcGIS.AppFramework.Controls 1.0 import ArcGIS.AppFramework.Runtime 1.0 App { id: app width: 800 height: 532 property string runtimePath: AppFramework.userHomeFolder.filePath("ArcGIS/Runtime") property string dataPath: runtimePath + "/Data" property string inputTPK: "test.tpk" property string outputTPK: dataPath + "/" + inputTPK function copyLocalData(input, output) { var resourceFolder = AppFramework.fileFolder(app.folder.folder("Data").path); AppFramework.userHomeFolder.makePath(dataPath); resourceFolder.copyFile(input, output); return output } Envelope { id: sfExtent xMin: -13643665.582273144 yMin: 4533030.152110769 xMax: -13618899.985108782 yMax: 4554203.2089457335 } Map { id: myMap anchors.fill: parent extent: sfExtent focus: true ArcGISLocalTiledLayer { path: copyLocalData(inputTPK, outputTPK) } } }
... View more
05-10-2016
10:18 AM
|
0
|
0
|
1666
|
|
POST
|
You code looks to ok to me. Have you tried with some other sample kml files. Are you getting the same error?
... View more
12-31-2015
03:26 PM
|
0
|
0
|
914
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 11-30-2022 08:20 AM | |
| 1 | 06-06-2017 09:24 AM | |
| 1 | 11-19-2019 05:32 PM | |
| 1 | 09-29-2017 04:37 PM | |
| 1 | 12-20-2017 11:02 AM |
| Online Status |
Offline
|
| Date Last Visited |
01-29-2026
08:38 AM
|