|
POST
|
Did you try omitting the quotation marks around TES*?
... View more
05-03-2024
01:51 AM
|
0
|
2
|
1133
|
|
POST
|
Hi, I recently had similar issues when querying our Portal. I watched the network tab in devtools, when applying the filter in the Portal ui, what gave me the correct syntax the Portal and agol use the SDK too. Maybe this could Help you.
... View more
04-16-2024
01:05 PM
|
0
|
0
|
356
|
|
POST
|
Hi, there's a new property for that since 4.29: https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-LayerList.html#visibilityAppearance before that version we used !important in css: .esri-icon-non-visible::before {
content: "\e610" !important;
}
.esri-icon-visible::before {
content: "\e611" !important;
}
... View more
03-14-2024
12:59 AM
|
2
|
1
|
2370
|
|
POST
|
Hi I'm running some tests with the new SDK Version 4.29.7. There's a new property "dragEnabled" in LayerList Widget, which enables the dragging functionality for the ListItems. Dragging works fine on desktop with mouse, but on touch displays the widget crashs, when dragging an expandable layer You can reproduce this in the official sample: https://developers.arcgis.com/javascript/latest/sample-code/sandbox/?sample=widgets-layerlist (just add dragEnabled: true to the properties at new LayerList)
... View more
03-13-2024
07:18 AM
|
0
|
1
|
686
|
|
DOC
|
Hi @Jianxia, your wrote there will be a June Update, where those advanced options in print widget will be included in EB AGOL version. Can you give us a date for this update? Or did I misunderstand something? Andre
... View more
07-20-2022
06:40 AM
|
0
|
0
|
16599
|
|
POST
|
Solved the problem with the help of this post https://community.esri.com/thread/260581-are-wfastcgi-python-api-compatible#comment-956114 Problem was with NTFS-Permissions.
... View more
10-19-2020
03:44 AM
|
0
|
0
|
2298
|
|
POST
|
Hi, I set up FastCGI in IIS and got the HelloWorld.py working properly. I also cloned conda env with Python-Package-Manager inside ArcGIS Pro for installing further 3rd party packages like pyodbc, etc. Inside my Flask.app I can't import arcpy, though all necessary paths are listed in sys.path. Everything I get is 500 Internal Server Error, nothing else. I think I have to activate the conda environment, right? I can successfully import arcpy within a standalone script and run it in VS Code Terminal. There, it seems to activate the conda environment BEFORE running the script. I see <PYTHONPATH>/activate.bat in the Terminal. It also works per cmd. So my question is, how do I activate the conda env before running the flask script? Is there another way to use arcpy from arcgis pro with flask? Any help is appreciated. Andre
... View more
10-07-2020
06:25 AM
|
0
|
1
|
2330
|
|
POST
|
Thanks a lot Panagiotis. That did the thing. The Directions Widget seems to need the traffic service too.
... View more
12-04-2017
12:21 AM
|
0
|
0
|
1400
|
|
POST
|
Hi, I simply put this example Directions | ArcGIS API for JavaScript 3.22 into my website and installed the php-proxy from Github, so that everyone can use the premium route service using our credits. The proxy works fine with app login (client_id and secret), however a OAuth login div appears. I can hit abort and the Directions Widget works as it should. How can I prevent the login screen? I would appreciate any hint.
... View more
12-03-2017
11:24 PM
|
0
|
2
|
1668
|
|
POST
|
Hi Annina, I couldn't solve the problem yet. Using the ESRI Basemap + Polygons (AGS secured Mapservice) worked for us (don't know why). Beside that your configuration seems to be different to this. Perhaps creating an item for the mapservice, not featureservice, in AGOL can help you. Andre
... View more
12-05-2016
01:21 AM
|
0
|
1
|
1646
|
|
POST
|
editing related tables (collector can do that) and editing time in datefields (webmap can do that) would be very helpful
... View more
06-07-2016
12:47 AM
|
0
|
1
|
1384
|
|
POST
|
Hi. Maybe you should give this a try: Add your secured services to your arcgis online account as element and save the credentials within. Then add those layers to your webmap.
... View more
12-03-2015
11:40 PM
|
0
|
1
|
1081
|
|
POST
|
I don't know exactly if that's the crux, but it worked for me. Which version of ArcGIS / Python do you use?
... View more
12-03-2015
11:32 PM
|
0
|
1
|
3079
|
|
POST
|
thanks, you are right del statements are needless when using with statement
... View more
12-03-2015
06:38 AM
|
0
|
0
|
3079
|
|
POST
|
hi, I just solved the problem by using the with statement before calling the function insertRows: def insertRows(workspace, fields, data):
#edit.startOperation()
with arcpy.da.InsertCursor(workspace, fields) as cursor:
for row in data:
cursor.insertRow(row)
del row
del cursor
#edit.stopOperation()
with arcpy.da.Editor(GDB) as edit:
insertRows(GDB + os.sep + "fc1", fields_fc1, data_fc1)
insertRows(GDB + os.sep + "table1", fields_table1, data_table1)
insertRows(GDB + os.sep + "table2", fields_table2, data_table2) it seems, that the construct with startEditing/startOperation is only working up to 1000 records. Thanks for your help anyway
... View more
12-02-2015
07:44 AM
|
1
|
5
|
3079
|
| Title | Kudos | Posted |
|---|---|---|
| 2 | 02-26-2025 07:07 AM | |
| 1 | 01-20-2025 02:32 AM | |
| 1 | 06-05-2024 11:28 PM | |
| 1 | 05-22-2024 10:27 PM | |
| 2 | 03-14-2024 12:59 AM |
| Online Status |
Offline
|
| Date Last Visited |
Friday
|