|
POST
|
Yes, the fullextent property is only available on the Layer level. I would like to know how are you adding the tpk and the online basemap? Are you adding them as a part of basemap object or adding separately as layers. Because somethings get defined based on the first layer you load. In other words can you try loading the online basemap first and then load the tpk on top of that and see if you can pan outside the tpk? Nakul
... View more
04-12-2018
11:08 AM
|
0
|
1
|
1500
|
|
POST
|
Hi there, Please make sure the new Location SR is same as the feature layer SR. If not project it using GeometryEngine. And then call updateFeature(). On the updatefeature signal call applyedits(). Like below. selectedFeature.geometry = newLocation;
// update the feature in the feature table asynchronously
featureTable.updateFeature(selectedFeature); FeatureLayer {
id: featureLayer
selectionColor: "cyan"
selectionWidth: 3
// declare as child of feature layer, as featureTable is the default property
ServiceFeatureTable {
id: featureTable
url: "http://sampleserver6.arcgisonline.com/arcgis/rest/services/DamageAssessment/FeatureServer/0"
// make sure edits are successfully applied to the service
onApplyEditsStatusChanged: {
if (applyEditsStatus === Enums.TaskStatusCompleted) {
console.log("successfully updated feature");
}
}
// signal handler for the asynchronous updateFeature method
onUpdateFeatureStatusChanged: {
if (updateFeatureStatus === Enums.TaskStatusCompleted) {
// apply the edits to the service
featureTable.applyEdits();
}
}
} Thanks, Nakul
... View more
04-09-2018
12:16 PM
|
2
|
1
|
1293
|
|
POST
|
I don't know the path for mmpks in Esri Apps such as navigator etc. You may try find out from the team. They might be able to tell you but I can't be sure. Nakul
... View more
04-06-2018
09:00 AM
|
0
|
0
|
877
|
|
POST
|
Every app that supports mmpk may have a different path. So if you know the path you can point to that in your appstudio app atleast on Android. Basically all apps can consume the same mmpks. As long as they share the same path. Generally, all AppStudio apps point to \ArcGIS\AppStudio\Data. In that case you can share the mmpks for all apps. Actually, player uses the same path. So if one app (within player) download the mmpk. Another app can just consume it as long it is looking for the same path. I hope this helps. Nakul
... View more
04-06-2018
08:11 AM
|
0
|
2
|
877
|
|
POST
|
Unfortunately, from Runtime API you could only do an image. You need to find a way or write some code to convert the image to PDF. Thanks, Nakul
... View more
03-20-2018
11:41 AM
|
0
|
0
|
1168
|
|
POST
|
Please post your question on ArcGIS Online . This is not related to AppStudio On the side note the service directory has been disabled by the admin. This is a setting but that doesn't mean you cannot access the service. It just means you cannot browse the root folder of the REST urls. You need to provide the complete URL with the token to view in the browser.
... View more
03-20-2018
10:55 AM
|
0
|
1
|
1055
|
|
POST
|
MapView has a method to export the Map as an image. You can use that method to get the url and download locally. GeoView QML Type | ArcGIS for Developers Nakul
... View more
03-12-2018
11:15 AM
|
0
|
2
|
1168
|
|
POST
|
First of all. Could you please let us know, how are you creating mmpk? There are two ways to create that as explained here Offline—ArcGIS Runtime SDK for Qt | ArcGIS for Developers So are you using the service pattern or desktop pattern? Thanks, Nakul
... View more
03-12-2018
11:02 AM
|
0
|
1
|
944
|
|
POST
|
This can be done but requires some code changes at your end. Here are some steps (Pseudo code). Hope you find it useful. 1) Edit QR source code and Open quickreportapp.qml. Look for function initializeFeatureService(errorcode, errormessage, root, cacheName) 2) find if(fields.editable===true && fields.name!=root.typeIdField) {
var f = fields;
app.fields.push(f);
fieldsMassaged.push(f);
} 3) In this code block, read the var f, it should be something like: {
name: "opsstatus",
type: "esriFieldTypeString",
alias: "Operational Status",
domain: {
type: "codedValue",
name: "OperationalStatus",
codedValues: [
{
name: "Open",
code: "Open"
},
{
name: "Closed",
code: "Closed"
},
{
name: "Unknown",
code: "Unknown"
}
]
},
editable: true,
nullable: true,
length: 50
} 3) Sort the codedvales in alphabetical order, put it back to this jsobject
... View more
02-23-2018
03:59 PM
|
1
|
0
|
1528
|
|
POST
|
Hi there, Could you please log a support issue? It looks like you are looking for the Geodatabase feature Table and perform a query on it instead of the ServicefeatureTable. They should be able point you in right direction. Thanks, Nakul
... View more
02-22-2018
02:48 PM
|
0
|
0
|
1585
|
|
POST
|
Could you please double check if you have enabled the external storage (capability from App Settings )in your app? This is required for Android device and not really for windows device. The player already has this enabled by default. You can also test your mmpk by adding it to the Open Mobile Map mmpk sample and make sure it works.
... View more
02-22-2018
02:37 PM
|
1
|
1
|
1491
|
|
POST
|
HI Jeremy, There can be multiple ways to solve this problem. One way I think you can work around it by using QML ListModel and instead of appending data (json object) you can use insert operation and always use index 0 while lopping through each layer. This way every layer will gets added in the ListModel as the first item as oppose to the Last item which what append operation does. Thanks, Nakul
... View more
01-30-2018
08:24 AM
|
0
|
1
|
1336
|
|
POST
|
I am not sure whats your end goal and what exactly you mean? Are you saying 1) Can you use the Xform code found in Survey123 in other native apps? Or 2) Or Can you just use that code don't add any other code? But yes you should be able to use the XForm code to create your apps Nakul
... View more
01-22-2018
08:57 AM
|
0
|
1
|
1099
|
|
POST
|
Hi there, Thanks for posting your question. This is definitely a valid enhancement request. Could you please go ahead and log an enhancement request with the Tech Support so that it can tracked properly? -Thanks Nakul
... View more
01-18-2018
12:29 PM
|
0
|
0
|
745
|
|
POST
|
Yes you should be able to sign in to your arcgis organisational account even if you don't have standard license. Are you able to log in to explorer or collector app using the same log in? If yes could you please contact the Esri support to further troubleshoot this issue. Thanks, Nakul
... View more
01-12-2018
11:28 AM
|
0
|
0
|
574
|
| 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
|