|
POST
|
@x_d I think this documentation from Qt will help you, https://doc.qt.io/qt-5/qtqml-javascript-dynamicobjectcreation.html Erwin.
... View more
03-24-2021
03:14 PM
|
0
|
0
|
797
|
|
POST
|
@KevinCheriyan I think this is related to this Qt bug, https://bugreports.qt.io/browse/QTBUG-78468 Since this is working on out-of-the-box AppStudio Player 4.4, it is worth trying building your custom AppStudio Player using Cloud Make 4.4? Because this is what we are building out of the box AppStudio Player with. Erwin.
... View more
03-24-2021
03:12 PM
|
1
|
2
|
1624
|
|
POST
|
@x_d Can you try changing the FileFolder section of the code? FileInfo {
id: destData
path: "~"
} I think it is related of this change, https://community.esri.com/t5/arcgis-appstudio-blog/appstudio-and-android-10-scoped-storage-changes/ba-p/896653 Thank you, Erwin
... View more
03-24-2021
03:09 PM
|
0
|
0
|
1122
|
|
BLOG
|
AppFramework DeepLearning Plugin is released as a beta feature in AppStudio 5.2, see the API Reference. ========================== TensorFlow is an open-source deep learning framework that provides powerful state-of-the-art offline capabilities. It provides low-level interfaces for defining tensors and derives inferences. It is highly reliable and provides scalability of computation across machines and large datasets. ArcGIS AppStudio uses TensorFlow Lite for its machine learning capability. TensorFlow Lite is a C++ library that is optimized to be used for mobile and IoT devices. In ArcGIS AppStudio, it is supported on all platforms (iOS, Android, Windows, MacOS, and Linux). It is compatible with tflite model file and only supports supervised learning. You can perform Image Classification which allows you to identify the main characteristics of an image to determine a class, and Object Detection which displays bounding boxes around multiple features in an image or video output. Both of these will work offline as long as we have the model file stored in the device. Starting at ArcGIS AppStudio 4.4, we introduced the TensorFlow plugin in AppFramework that provides a mechanism to work with a machine learning model. Currently, it is available only as a beta feature and it is subjected to change. AppFramework TensorFlow plugin introduces two components, ImageAnalyzer for static image analysis and ImageAnalysisFilter for real-time video analysis filtering. import ArcGIS.AppFramework.DeepLearning 1.0
...
ImageAnalyzer {
id: imageAnalyzer
debug: true
modelSource: "model/model.tflite"
classNames: "model/labels.txt"
minimumScore: minimumScoreValue
onFinished: {
console.log("Results:", JSON.stringify(results, undefined, 2));
resultsView.model = results;
resultsListView.model = results;
}
onError: {
console.error("Error:", message);
}
} In the code sample above, you can see that we have an import statement for TensorFlow from AppFramework.Labs, and then we have the ImageAnalyzer component. ImageAnalyzer component requires only three inputs, modelSource. It is pointing to the tflite model file. classNames. It is pointing to a text file that contains the classes where the model will verify against the classes and then will reflect in the output. minumumScore. This is an optional property to set the minimum score of the result. Here is the demo of how the app looks like, Please refer to the sample "Deep Learning" in AppStudio Desktop and Player to see how it works and please refer to this documentation on how to train a TensorFlow model using ArcGIS API for Python using ArcGIS Notebook. Learn more about AppStudio: New to AppStudio? Check out this website to learn more about what ArcGIS AppStudio can do to you and your organization. Check out our recent workshop recordings to get started with creating native apps using AppStudio. Let us know about your creations built using AppStudio to be featured in AppStudio Showcase Gallery. Provide your ideas and suggestions to us on ArcGIS Ideas site. Follow us on Twitter @ArcGISAppStudio to keep up-to-date on the latest information. The AppStudio team periodically hosts workshops and webinars; please sign up for the AppStudio newsletter if you are interested in information regarding AppStudio events.
... View more
03-17-2021
08:53 AM
|
1
|
0
|
3321
|
|
POST
|
@x_d There is a chance that the website is not allowing upload image operation from "webview" or iframe environment. Can you try using BrowserView? This is a little bit different than webview, it is using native browser. We have a sample in AppStudio Desktop, where you can simply change the URL to test. Erwin.
... View more
03-11-2021
06:45 PM
|
0
|
2
|
1438
|
|
POST
|
@GarrettRSmith QuickReport support offline workflow by including the MMPK in the settings. Do you the MMPK included but it is not loading? or are you trying to use the app offline without MMPK? Erwin
... View more
03-05-2021
11:14 AM
|
0
|
1
|
2379
|
|
POST
|
@GarrettRSmith This is weird, it looks correct. Has this ever worked before and then suddenly stopped working? Have you tried adding new report with an attachment? If you can submit a new report without an attachment, it might be related to this issue where there is no globalID in the feature layer. See this post on how to change the code, https://community.esri.com/t5/arcgis-appstudio-questions/quickreport-template-not-attaching-files/td-p/874847 I hope this is helpful, Erwin.
... View more
03-05-2021
11:04 AM
|
0
|
1
|
4821
|
|
POST
|
@x_d Have you considered a BusyIndicator from QML? It is widely used in our templates, sample and apps. Erwin
... View more
03-05-2021
10:59 AM
|
1
|
0
|
1407
|
|
POST
|
@Anonymous User White screen normally is normally a sign in the QML. Did you make sure to test your app in the latest version of AppStudio Desktop AppRun or AppStudio Player, it is currently version 4.4. Because there is a chance that you are testing your code in the older version of Appstudio Desktop AppRun and AppStudio Player but when you do Cloud Make, it is always hitting the latest production version of 4.4. Can you test your app in the latest version of AppStudio Player to make sure there is no error message? Erwin.
... View more
03-05-2021
10:58 AM
|
1
|
1
|
1657
|
|
POST
|
@EricAtkinson1 No, you would not be able to load Google Map App inside the AppStudio Player, however I think you can open a WebView of that would open the Google Map URL with the destination pre-configured in the URL.
... View more
03-05-2021
10:55 AM
|
0
|
0
|
2223
|
|
POST
|
@EricAtkinson1 Can you first try that the clientid and clientsecret are working on the Nearby sample? Erwin
... View more
02-23-2021
10:48 AM
|
0
|
2
|
2292
|
|
BLOG
|
Hello AppStudio Developers, The next release of ArcGIS AppStudio is version 5.0, and as always, the AppStudio team wants to make sure this is a stable and quality release for our users. This release includes some major underlying changes to AppStudio, the most significant is support for Qt 5.15 and ArcGIS Runtime SDK for Qt 100.10, including the new and better Qt toolkit for the ArcGIS Runtime SDK. There is a possibility that this update will introduce breaking changes for your current AppStudio apps. We have released an early (beta) version of AppStudio 5.0 on the Esri Early Adopter Community website (EAC). We ask that you test your current AppStudio apps with the beta version of 5.0 so the development team can identify and address any issues you find. Please, let us know what you encounter by submitting an issue on the EAC website. For your reference, please look at this blog post from ArcGIS Runtime SDK for Qt team on QML API breaking changes with Qt 5.15. Thank you, ArcGIS AppStudio Team.
... View more
02-19-2021
11:02 AM
|
0
|
0
|
1711
|
|
POST
|
Eric, The API Key is supported in ArcGIS Runtime SDK 100.10 which included in the AppStudio 5.0 Beta, that is available to download from Early Adopter Community. It is planned to be released in March/April 2021. For the current production of AppStudio 4.4, you can still use Client ID and Client Secret, you can see this on one of our samples, Nearby sample, Views/RouteView.qml line 289. see attached code. Thank you, Erwin
... View more
02-16-2021
05:23 PM
|
0
|
0
|
2323
|
|
POST
|
@rsharma It sounds like you are describing "Background Location" functionality, is it correct? https://doc.arcgis.com/en/appstudio/extend-apps/capabilities.htm (see Background Location section.) Erwin
... View more
02-16-2021
05:04 PM
|
0
|
0
|
1025
|
|
POST
|
@rsharma That is weird, when you create a build which platform are you testing this on? I have a feeling it might a path-related issue of where you store the files. If you are testing on Android, make sure you are using the path highlighted in this blog, https://community.esri.com/t5/arcgis-appstudio-blog/appstudio-and-android-10-scoped-storage-changes/ba-p/896653 Thank you, Erwin.
... View more
02-16-2021
05:01 PM
|
0
|
0
|
634
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 07-07-2020 01:26 PM | |
| 1 | 10-27-2020 10:33 AM | |
| 1 | 12-06-2021 10:36 AM | |
| 1 | 10-01-2021 12:53 PM | |
| 1 | 08-24-2021 06:15 PM |
| Online Status |
Offline
|
| Date Last Visited |
12-08-2021
03:08 PM
|