|
POST
|
Paul, Sorry if it was not clear. Yes, you don't have to do anything different, the Cloud Make at AppStudio 4.2 (and above) service will convert the launch screen graphics to a Storyboard for iOS build. This will reduce the ipa app size for iOS, for example, ArcGIS QuickCapture has seen size reduction from 74Mb to 48 Mb, What is new in ArcGIS QuickCapture 1.4 Thanks, Erwin.
... View more
03-31-2020
02:21 PM
|
1
|
0
|
1811
|
|
POST
|
This sample shows you how to create and use the TPK file, which can be generated from ArcGis Pro, Generate offline map with local basemap | ArcGIS for Developers and here is the doc for TiledLayer, ArcGISTiledLayer QML Type | ArcGIS for Developers So it looks like you are having an issue creating the tpk or vtpk file from ArcGIS Pro to be used as Runtime content, correct?
... View more
03-31-2020
12:59 PM
|
0
|
5
|
2916
|
|
POST
|
Tim, In AppStudio, we are using ArcGIS Runtime SDK for Qt for all of the mapping capabilities. I think what you are looking to do is very similar to the "On Demand" offline workflow, where you can define an area of a map and control the map content to be taken offline, including the basemap. Please take a look at this documentation regarding Take a map offline - on-demand—ArcGIS Runtime SDK for Qt | ArcGIS for Developers Thank you, Erwin.
... View more
03-31-2020
12:36 PM
|
0
|
7
|
2916
|
|
POST
|
Paul, This was added in AppStudio 4.2 release on February 2020, please see this blog, What’s New in AppStudio for ArcGIS 4.2 (February 2020) Thank you, Erwin
... View more
03-31-2020
12:19 PM
|
0
|
2
|
1811
|
|
POST
|
I am glad to head that. For tiledbasemap.arcgis.com you need to use ArcGIS Online credentials, but if you want to use other premium tiled services from your Portal, then you would use that Portal credentials.
... View more
03-31-2020
09:38 AM
|
0
|
2
|
2181
|
|
POST
|
Brent, I just tested the workflow you described above using this service as basemap, https://tiledbasemaps.arcgis.com/arcgis/rest/services/Elevation/World_Hillshade/MapServer, and yes I can reproduce the same issue you described. This is expected since this service is not a public layer, you need to login using ArcGIS account to access it, and Quick Report only supports public webmap as outlined in the setting page. We can make this work, by adding custom code to the source code of Quick Report template to include the credential to access the webmap as outlined in this doc, Access the ArcGIS platform—ArcGIS Runtime SDK for Qt | ArcGIS for Developers. We can add it in QuickReport/pages/RefineLocationPage.qml around line ~247 I tested this and I was able to load the webmap that contains the service from tiledbasemap.arcgis.com as basemap. Thank you, Erwin.
... View more
03-30-2020
01:39 PM
|
1
|
4
|
2181
|
|
POST
|
Hello Tim, This is possible, but not using the Launch Image feature in the App Setting, this would need to be done as a custom QML component or page solution to play video on the first page. This is a sample using Video QML component, Video QML Type | Qt Multimedia 5.14.1 Thank you, Erwin.
... View more
03-30-2020
10:43 AM
|
0
|
0
|
888
|
|
POST
|
Based on the license agreement, if your data (maps) are not public, you need to login using named-users. We have OAuth Biometric Authentication and Portal User Info samples that show you how to OAuth login workflow and accessing the user info and a private map in ArcGIS Online. Quoting from this doc, Limitations of App Login | ArcGIS for Developers Although you cannot use an AppID with private content, if your goal is to distribute or sell an app to organizations without ArcGIS Online (no named users), it is not against the license agreement to use your own login to the app, given that the content has been shared publicly.
... View more
03-24-2020
01:14 PM
|
0
|
4
|
4535
|
|
POST
|
Brent, From that information you provided, everything looks fine. Maybe it is better if you can work with Esri Technical Support regarding this issue, they can help you troubleshoot this issue. Erwin.
... View more
03-23-2020
11:53 AM
|
0
|
1
|
2253
|
|
POST
|
Matt, Oh, the Content-Type. I am glad it worked out for you. See this doc, Work with networking services—AppStudio for ArcGIS | Documentation 1. You should be able to do it inside the NetworkRequest. NetworkRequest {
...
Component.onCompleted: { req.headers["Content-Type"] = "application/json"; } ... } 2. I don't have access to the Udemy, but I think that's a javascript function, correct? You can use XMLHttpRequest by Javascript in AppStudio, XMLHttpRequest - Web APIs | MDN , which is pretty much the same. Thank you, Erwin
... View more
03-23-2020
11:45 AM
|
0
|
1
|
1711
|
|
POST
|
Matt, We should be able to use any web debugging proxy application installed on your machine while running the app in the AppRun. For example on my mac, I can run the app in the AppRun, and have Charles running, and then we can see all the network traffics that go out with all the details. I think it is the same as Fiddler for a Windows machine. Thank you, Erwin
... View more
03-20-2020
02:52 PM
|
1
|
0
|
1711
|
|
POST
|
Hello Garrett, It sounds like from two main functionalities that you have outlined, it would be a combination of our Map Viewer template and Quick Report template, or they could also be separate apps to minimize customization work that you need to do. Our templates are easily configurable, so there is no need to have developer skills to configure them, please take a look at this case study by one person GIS department with no developer skill that can produce an app in both Apple AppStore and Google Play Store, Clean Up San Juan | AppStudio for ArcGIS Case Study | Esri. This case study is fairly similar to your scenario, where they are using our Quick Report template to do a data collection app, and then simply use Operations Dashboard for ArcGIS to show the features and status on the map. This is the video on how to configure the Quick Report template, and this is the video on how to configure the Map Viewer template. Although, if there are few missing functionalities in our templates, you would need to open the source code of the templates and code them. With that being said, it is doable, we have a lot of samples and tutorials, and feel free to send us your questions. I hope this is helpful, Erwin
... View more
03-20-2020
02:36 PM
|
0
|
0
|
1665
|
|
POST
|
Hello Pratik, I am sharing a simple app to show you how the login and user registration workflow in an AppStudio app, reading and writing SQLite database to save user information, see attached for source code. This is based on this blog post and then converted into AppStudio apps. Also, we have another sample that shows you how to handle social media login, for example Google and Facebook logins, see attached for source code. Apart from having the source code of the above two apps attached in this post, they are also shared publicly and available to be tested in AppStudio Player by searching in Public apps. And lastly, we also have a lot of individual samples such as SQL, Secure Storage and Biometric Authentication available in AppStudio Desktop and Player that you can use to enhance the login experience. I hope this is useful, Erwin.
... View more
03-20-2020
01:20 PM
|
1
|
6
|
4535
|
|
POST
|
I see, is there any way for you to share the feature layers to us privately? so that we can troubleshoot further. Please email it to [email protected]
... View more
03-17-2020
11:00 AM
|
0
|
0
|
2253
|
|
POST
|
Brent, That is weird and based on the JSON you provided the feature layer support esriGeometryMultipoint. Just to make sure that you enter the feature layer field correctly in the setting, do you have the feature service and the layer name separated as shown below? Thank you, Erwin
... View more
03-17-2020
09:58 AM
|
0
|
2
|
2253
|
| 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
|