|
IDEA
|
Android Adaptive Icon is not currently supported in AppStudio 4.2. As a result, the icon of my generated app will look strange on my Pixel 4 device --- basically the square icon will be displayed as a shrunk square image in a circle with white background. if it's adaptive icon, the original icon will be masked with a circle, and look much nicer. Please support this native Android feature in AppStudio, this will not only benefit one particular device, it will benefit other devices with different launchers as well. Adaptive icons | Android Developers
... View more
09-07-2020
01:15 AM
|
0
|
0
|
1824
|
|
POST
|
I am using Experience Builder Online version. I find the performance of the hosted web application is very poor. (not sure if the Experience builder or the hosting website is to blame ) : I have a very simple webapp with only one map widget and two web maps, but it takes 14 seconds to load on my phone. My phone is Pixel 4XL, which is not a low-specs phone. When I load the same webapp on my desktop, it is not much better in regard to the performance either... Do you have the same issue? Are there any templates tailored for mobile phone? I had very high expectation for this product : mobile friendly (mobile first concept in the design), ArcGIS JavaScript API 4.x suppport, much better documentation than Web Appbuilder and so on ... not to mention better performance.
... View more
08-09-2020
05:18 PM
|
3
|
0
|
912
|
|
POST
|
Thanks. Clustering function works great using the latest JavaScript API, hope this will come to the native applications eventually.
... View more
08-03-2020
05:15 PM
|
0
|
0
|
1307
|
|
POST
|
Has anyone used Android Adaptive Icon for the app generated by appstudio? My app icon looks strange (the icon shrinks to a square and put into a circle on my pixel 4) , this is due to the launcher of my phone uses a circle mask on the icon for each app. Android Adaptive Icon should solve the problem, and I kinda of know how to generated the adaptive icon in Android Studio, but don't know how to use them to replace the icon in my app generated by appstudio. If you can share your experience that will be greatly appreciated. Thanks.
... View more
08-02-2020
11:32 PM
|
0
|
2
|
990
|
|
POST
|
Hi, I am trying to make the Web Map example in AppStudio (that's where I use the Qt QML API) working for the a webmap with a clustering point layer in it. I have enabled the popup for the clustering layer and configured the clustering-popup. it works fine in the map viewer and other applications in AGOL, but it doesn't work in this example. Does Qt runtime for ArcGIS support clustering popup at all? or it is just this example. Thanks.
... View more
06-30-2020
07:14 PM
|
0
|
3
|
1398
|
|
POST
|
I am trying to make the Web Map example working for the a webmap with a clustering point layer in it. I have enabled the popup for the clustering layer and configured the clustering-popup. it works fine in the map viewer and other applications in AGOL, but it doesn't work in this example. Does Qt runtime for ArcGIS support clustering popup at all? or it is just this example. Thanks.
... View more
06-30-2020
07:10 PM
|
0
|
1
|
742
|
|
POST
|
BUG-000129661: Querying a feature layer from a referenced feature service with a geometry filter returns an incomplete results using the ArcGIS API for Python
... View more
03-25-2020
05:53 PM
|
1
|
0
|
8388
|
|
POST
|
Thanks John Yaist, I've been talking with ESRI local support and just urged them to escalate it to ESRI US.
... View more
03-11-2020
04:05 PM
|
0
|
0
|
4620
|
|
POST
|
Thanks. I've contacted ESRI local support for this issue to be escalated.
... View more
03-11-2020
03:41 PM
|
2
|
0
|
9556
|
|
POST
|
Answered in the ArcGIS server community, please see the correct answer there. https://community.esri.com/message/914835-re-pagination-issue-resultrecordcount-and-resultoffset?commentID=914835#commen…
... View more
03-10-2020
10:52 PM
|
0
|
0
|
1669
|
|
POST
|
Hi John Yaist This is very likely an ArcGIS Python API bug. In the API source code for the query function (layer.py, Line 650), it does not test the exceededTransferLimit property in the response, the code assumes the query always return the specified number of records when possible. This is not the case for spatial filter.... exceededTransferLimit was introduced in ArcGIS Server 10.3.1, please see the details in the following link In some cases when using the resultOffset and resultRecordCount parameters, the exceededTransferLimit property may be included in the query results even though the value specified in the resultRecordCount has not been exceeded. This is due to internal spatial index filtering of the query results. For this reason, you should always rely on the exceededTransferLimit property to determine if you should page through results rather than relying on the number of results returned from each page. In some extreme cases, zero results can be returned but the exceededTransferLimit property will be returned. In these cases, you should continue paging through your results until exceededTransferLimit is no longer returned. Query (Feature Service/Layer)—ArcGIS REST API: Services Directory | ArcGIS for Developers Hope this makes sense. Regards Simo
... View more
03-10-2020
09:35 PM
|
1
|
2
|
4620
|
|
POST
|
Hi Tanu, Thanks for your answer to the question. If this is an expected behavior, I am just curious why the hosted service in AGOL and ArcGIS portal do not have this issue, as we all know behind the scenes, the same ArcGIS server is doing the heavy lifting. More importantly, this expected ArcGIS server behaviour is causing issue in the APIs (at least I have personally experienced the issue in ArcGIS Python API). I dived into the API source code and found, the code checks for the number of records returned, if it is less than the resultRecordCount or the MaxRecordCount (whichever is less) it will assume all the records has been retrieved and stop querying the service. Many thanks Simo
... View more
03-10-2020
05:36 PM
|
1
|
2
|
9556
|
|
POST
|
I applied a geometry filter in the query to a ArcGIS Server Map Service (query enabled), when the ResultOffset is set to 0 and resultRecordCount is set to 500, it only returns 36 records If I remove these parameters in the query, it returns all the features intersects with the geometry: This only happens to the ArcGIS Server Service, if the service is hosted in the ArcGIS Enterprise Portal, it works OK. Any idea what's happening? Thanks you in advance. please note that I posted the same question in the ArcGIS REST API Community a couple of days ago, but I am thinking it might also be a ArcGIS Server topic, as this happens on a ArcGIS Server Map/ Feature Service, but it works fine for a hosted service (I know the service is hosted on a federated server...), I am wondering it might have something to do with my ArcGIS Server settings. if it is true.
... View more
03-09-2020
10:24 PM
|
1
|
7
|
9747
|
|
POST
|
I have the similar issue. I found the problem is at the REST API level when querying a ArcGIS Server Map/Feature Service with a spatial filter. If the resultOffset and resultRecordCount are not set, it returns all the matching records, if they are set the query returns wrong number of records. for example, if the resultRecordCount is set to 500, it only returns 36 records with exceededTransferLimit=True. This issue should affect all the other APIs that wraps the REST API, such as Javascript API, Python API, ArcGIS Runtime SDKs...
... View more
03-09-2020
04:16 PM
|
2
|
0
|
5350
|
|
POST
|
This is an ArcGIS Map Service which allows query. I am applying a geometry filter in the query, when I set ResultOffset =0 and resultRecordCount=500, it only returns 36 records If I remove these parameters in the query, it returns all the features intersects with the geometry: This only happens to the ArcGIS Server Service, if the service is hosted in the ArcGIS Enterprise Portal, it works OK. Any idea what's happening? Thanks.
... View more
03-05-2020
10:55 PM
|
0
|
1
|
1734
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 02-28-2019 05:13 PM | |
| 1 | 02-25-2019 04:54 PM | |
| 1 | 03-05-2019 02:08 PM | |
| 1 | 03-12-2019 10:20 PM | |
| 1 | 11-27-2024 04:36 AM |
| Online Status |
Offline
|
| Date Last Visited |
01-17-2025
07:39 AM
|