|
POST
|
ArcGIS Companion currently allows only public dashboards to be open in browser. If you are not seeing this option for public items then it is a bug. But I am not sure how to reproduce it. Please confirm. Thank you. Nakul
... View more
02-06-2019
09:06 AM
|
1
|
0
|
1402
|
|
BLOG
|
Will have a another release in March at the same time as AGOL/Portal 10.7 comes out. If things look good, it will support Portal 10.7.
... View more
02-01-2019
11:34 AM
|
0
|
0
|
952
|
|
BLOG
|
Hi David, Thanks for showing interest. Yes, we are planning to bring support for Portal 10.6.1 and 10.6 in the upcoming release scheduled for early Feb. Thanks, Nakul
... View more
01-30-2019
01:55 PM
|
0
|
0
|
952
|
|
POST
|
Did you register it from AppStudio desktop app settings or directly on the developers.arcgis.com? If you did it on developers.arcgis.com please add the redirect uri - urn:ietf:wg:oauth:2.0:oob as mentioned in the following help Sign your app—AppStudio for ArcGIS | ArcGIS Nakul
... View more
01-09-2019
10:51 AM
|
1
|
1
|
1889
|
|
POST
|
Path changed signal works for me. Try this code property string dataPath: "C:/Users/<username>/ArcGIS/AppStudio/Data/"
Basemap {
// Nest the ArcGISTiledLayer to add it as one of the Basemap's baseLayers
ArcGISTiledLayer {
TileCache{
path: AppFramework.userHomeFolder.fileUrl(dataPath + "/SanFrancisco.tpk")
onPathChanged: {
console.log(path)
}
}
... View more
12-27-2018
04:42 PM
|
2
|
3
|
1162
|
|
POST
|
1. At the first page of the Quick Template it says "New" and "Drafts". There is also buttons like "Next" and "Submit". Can these be translated to local language with a Basic license? -- The builtin strings within the Template are already translated for users to use. Just install the app on your device and change the locale of your phone. Run the app you will see the translated strings. However, any user provided or custom strings requires translation by user and would need Standard AppStudio license. 2. When a submission is done, it says "Thank you Submitted Successfully". Can this be translated to local language with a basic license? --- Currently, it is not translated. But you can use your own string based on any language. However, you would have to upload the app to your Org account before you can do build, which requires Standard AppStudio license. 3. Can we change the basemap in the quick report template from the standard topographic map to another standard esri basemap with a basic license? --- No, but if you have Standard AppStudio license you can change the configuration such as basemaps and do a build. 4. Can we edit the color schemes in the app with a basic license? --- No, You need standard license to do that 5. Can we add/edit the text in the "About" section in the quick report template with a basic license? --- No, You need standard license to do that In short, any of the above changes require AppStudio Desktop to upload and build the app which requires Standard AppStudio license. With Basic license you can only build the templates with the configuration available on the AppStudio website. To learn more about it see following help AppStudio for ArcGIS license options—AppStudio for ArcGIS | ArcGIS Another useful resource to learn the difference between AppStudio Basic and Standard is shown below Frequently asked questions—AppStudio for ArcGIS | ArcGIS Nakul
... View more
12-21-2018
08:44 AM
|
0
|
0
|
639
|
|
POST
|
Thanks for confirming. This is a known issue. But it is already fixed in the upcoming release AppStudio 3.2 which is scheduled for this week. Nakul
... View more
12-12-2018
08:27 AM
|
0
|
0
|
1404
|
|
POST
|
Or are you trying to sign in to the AppStudio desktop using enterprise log in?
... View more
12-11-2018
02:04 PM
|
0
|
2
|
1404
|
|
POST
|
I am assuming you are using a custom application created using AppStudio. Could you please try downloading the sample OAuth + Biometric Authentication and see if you can reproduce the issue? Thank you. Nakul
... View more
12-11-2018
12:51 PM
|
0
|
3
|
1404
|
|
POST
|
As Keith mentioned, it is asynchronous, you need to wait for the results to be ready before you can view it. Try adding the code under the onClicked for the directions button Another thing is that the property of DirectionManeuver::directionText to get the directions and not just the text MouseArea {
anchors.fill: parent
onPressed: directionButton.pressed = true
onReleased: directionButton.pressed = false
onClicked: {
// Show the direction window when it is clicked
translate.x = directionWindow.visible ? 0 : (directionWindow.width * -1);
directionWindow.visible = !directionWindow.visible;
for(var i = 0; i < directionListModel.count; ++i) {
console.log(directionListModel.get(i).directionText );
}
} Nakul
... View more
12-05-2018
10:47 AM
|
2
|
0
|
1088
|
|
POST
|
Couple of problems here 1) This webmap is very old (1.7) and not supported by Runtime. Runtime only supports webmaps v2.0 or higher. https://www.arcgis.com/home/item.html?id=c74acddfcb1844eb90f8f9d40be2c823 If you run the above code with this item id "c74acddfcb1844eb90f8f9d40be2c823" it should throw you an error stating that the webmap is not supported. 2) initUrl works if webmap is unsecured or you append a token within the url. 3) Using itemId is same as initUrl. When using item id you need to give the portal url. With initUrl you have the complete URL with itemId . It just another way, plus you can use with the portal properties when using itemId 4) In your case you have a unsecured webmap with a secured layer inside. The above code would work for this scenario and also for scenario if you load the secured webmap. As long as secured webmap or secured layer belong to the same portal.
... View more
12-04-2018
01:44 PM
|
0
|
0
|
1640
|
|
POST
|
Hi Kyle, If you are looking to add a secured web map to your application. You need to create a Portal QML type object with credentials and then load the PortalItem which is a webmap within the MapView. Here is the code snippet. Please replace the item id and correct credentials to make it work. I hope this helps. Nakul import QtQuick 2.7
import QtQuick.Controls 2.2
import ArcGIS.AppFramework 1.0
import ArcGIS.AppFramework.Controls 1.0
import Esri.ArcGISRuntime 100.3
App {
id: app
width: 400
height: 640
Portal{
id:portal
url:"http://www.arcgis.com"
credential: Credential{
username: "username"
password: "password"
}
onErrorChanged: {
if (loadStatus === Enums.LoadStatusFailedToLoad)
console.log(error.message);
}
}
MapView{
id:mapView
anchors.fill: parent
Map{
item: PortalItem{
portal: portal
itemId: "45641addba21436aa90fc3e79ffe158f"
}
onErrorChanged: {
if (loadStatus === Enums.LoadStatusFailedToLoad)
console.log(error.message);
}
}
}
} Alternatively, you can do the same with JavaScript too function loadSecuredWebMapwithCredentials() {
var credential = ArcGISRuntimeEnvironment.createObject("Credential", { username: "username", password: "password" });
securityPortal = ArcGISRuntimeEnvironment.createObject("Portal", { url: "http://www.arcgis.com", credential: credential });
var item = ArcGISRuntimeEnvironment.createObject("PortalItem", { portal: securityPortal, itemId: "45641addba21436aa90fc3e79ffe158f" });
return ArcGISRuntimeEnvironment.createObject("Map", { item: item });
}
... View more
12-04-2018
11:46 AM
|
0
|
2
|
1640
|
|
POST
|
Hi Giatri, Please make sure the feature layer has been loaded (if adding it to the map) or initialized (if not the part of the view). For e.g. here I am adding the feature as soon as the featurelayer loads. Also Make your point is not undefined. I hope this helps. Nakul FeatureLayer {
id: featureLayer
// 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 added feature");
}
}
// signal handler for the asynchronous addFeature method
onAddFeatureStatusChanged: {
if (addFeatureStatus === Enums.TaskStatusCompleted) {
// apply the edits to the service
featureTable.applyEdits();
}
}
}
onLoadStatusChanged: {
if(loadStatus === Enums.LoadStatusLoaded){
// var point = ArcGISRuntimeEnvironment.createObject("Point", {x: -11975850.0012, y: 4274812.4997999966, spatialReference: SpatialReference.createWebMercator()});
var point = mapView.locationDisplay.mapLocation
var featureAttributes = {"typdamage" : "Minor", "primcause" : "Earthquake"};
// create a new feature using the mouse's map point
var feature = featureTable.createFeatureWithAttributes(featureAttributes, point);
// add the new feature to the feature table
featureTable.addFeature(feature);
}
}
}
}
... View more
11-02-2018
01:42 PM
|
0
|
0
|
1226
|
| 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 |
08-28-2025
11:22 AM
|