|
POST
|
I answered question #2 for myself. I seems like there can be no spaces in the path to the image. Once I moved the images to a path with no spaces, they loaded into the viewer. I haven't seen this limitation in the documentation. Still looking for insight into question #1. Thanks!
... View more
01-31-2024
11:50 AM
|
0
|
3
|
3104
|
|
POST
|
Hello, I'm trying to get my feet wet with OI by adding some oblique drone photos to a an OI Dataset. The dataset appears to be created correctly and when I add images, they appear on the map and the fields are populated. When I use the Build OI Footprint tool, the footprints seem to be correct. Two things I can't figure out: I'm not able to toggle the "Footprints" and "Camera Locations" using the ribbon tools. They just appear as layers in the map. When I click explore images, no matter which image I try to view, I get the following error: If I temporarily host the images on a public web server, and update their location in the "Image Path" field, the images appear in the viewer. So, I assume this is related to storing the images locally. The documentation states "The images can be in local storage or network storage, or they can be in publicly accessible cloud storage. ". I'm not sure what I'm doing wrong? Thanks for your help! Jill
... View more
01-31-2024
11:38 AM
|
1
|
6
|
3113
|
|
POST
|
I see both use cases. It makes sense to allow the user to view a map in the unit standard of their locale no matter who authors it but adding an option to show both for a specific app would be a helpful addition.
... View more
01-26-2024
06:36 AM
|
0
|
0
|
1826
|
|
POST
|
I believe this depends on what Units are configured for your organization or your individual user settings. I don't see a way to require the units to show in a specific standard for an individual app. If I change the units in my user settings, all scale bars show in metric. Jill
... View more
01-25-2024
11:27 AM
|
1
|
2
|
1859
|
|
POST
|
Hi, This was a long time ago so I don't remember the details but did you try the solution that worked for me? I was trying try to access an encrypted web map ("https") from unsecured Web AppBuilder ("http"). Once I switched to running WAB from https://localhost the error resolved. Hope that helps.
... View more
01-17-2024
11:14 AM
|
0
|
0
|
2270
|
|
POST
|
Hi, I don't see an elegant way to do this in the search. I have not tested this but it looks like for each feature layer in your search results, you could retrieve the related items (https://developers.arcgis.com/python/api-reference/arcgis.gis.toc.html#arcgis.gis.Item.related_items) in the forward direction, using the Service2Data relationship type (you might need to play around with the parameters). If there aren't any related items, then it isn't a view. Does that get you what you need? Jill
... View more
01-16-2024
08:56 AM
|
0
|
0
|
1936
|
|
POST
|
Hi, I'm not sure if this is possible because the Visualization profile doesn't expose the layer as a profile variable, only the current feature and it does not include the Data Access bundle. https://developers.arcgis.com/arcade/profiles/visualization/ It looks like you could provide this info in a popup using var rec_count = Count(Filter($layer, "FIELD_NAME='"+$feature.FIELD_NAME+"'"))
return IIf(rec_count>1, true, false) If your data is relatively static, I would store this info in a new field. Jill
... View more
12-21-2023
12:14 PM
|
0
|
0
|
1393
|
|
POST
|
Thank you @victorCanut and @Clubdebambos That was exactly what I was looking for and I was not familiar with the CIM. FYI, if it could help someone else, to enable the "Allow assignment of unique numeric IDs..." option I used the following: map = aprx.createMap("MapName")
m_cim = map.getDefinition('V3')
m_cim.useServiceLayerIDs = True
map.setDefinition(m_cim) Thanks again! Jill
... View more
12-21-2023
07:52 AM
|
5
|
0
|
4986
|
|
POST
|
Hi, I don't think this is possible with out of the box AGOL. You could develop a widget using the JavaScript API that does this but I can't think of a way to do this in a Dashboard. Jill
... View more
12-19-2023
12:38 PM
|
0
|
0
|
882
|
|
POST
|
Hi, I'm using a python toolbox to process some data and create a map. I'll be using this map to overwrite an AGOL web layer. I want to make sure that the layer IDs will be the same as in the hosted feature layer. In ArcGIS Pro, I would click the "Allow assignment of unique numeric IDs..." property of the map and then edit the Layer ID property of each layer. I can see no way to accomplish this using arcpy. The map object doesn't seem to have an "Allow assignment" property and it is not a parameter of the createMap function I used to create the map. Layers also do not seem to have an ID property. Does anyone know how to do this without user interaction? Thanks! Jill
... View more
12-19-2023
12:01 PM
|
0
|
4
|
5099
|
|
POST
|
Hi Jeff, Not sure if I can see your vision exactly, maybe a screen shot could help. However, if you drag one of the gauges into the middle of the chart until the UI says "stack the items", then you'll get two tabs; one with a gauge and one with a chart. Then one by one shift-drag your other gauges over the first one to create a group within the tab. Is that what you're trying to accomplish? Jill
... View more
12-19-2023
11:49 AM
|
0
|
0
|
1889
|
|
POST
|
Hey @Clubdebambos , That worked perfectly. Thank you! Jill
... View more
12-18-2023
10:03 AM
|
1
|
0
|
2057
|
|
POST
|
Hello! I am using ArcGIS for Python to save some sub layers in a hosted feature service to a feature geodatabase. My code is as follows: feature_layer_item = gis.content.get("xxxxxxxxxxxxxxx")
layer = feature_layer_item.layers[0]
featureSet = layer.query()
featureSet.save(arcpy.env.workspace, "MyLayer") This works perfectly except when there are no features in the layer. If that's the case then the save function creates a table in the fgdb instead of an empty polygon feature class. If I add a bogus record to the layer and execute the same tool, a polygon feature class is created. Has anyone encountered this? I assume it's because the query returns an empty feature set. I have tried setting the spatial_reference and geometry_type on the feature set, which looks like it should be possible but no luck. Anybody have a workaround? Thanks! Jill
... View more
12-14-2023
09:08 AM
|
0
|
2
|
2108
|
|
POST
|
Hi @chapmunnhsc, Thanks for the reply. I'm in the same boat and cannot figure it out! I'm finding developing for this platform incredibly frustrating. If I could start over, I would not use it. I think I need to create an output data source that can be consumed by other widgets but can't figure out how to get it wired up. If I figure it out, I will post it here. Thanks! Jill
... View more
11-27-2023
08:25 AM
|
0
|
4
|
4088
|
|
POST
|
Hi, Has your account been assigned a role with the "Share with public" privilege enabled? Jill
... View more
11-06-2023
08:05 AM
|
0
|
0
|
5611
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 12-11-2018 10:05 AM | |
| 1 | 04-21-2023 11:03 AM | |
| 1 | 08-22-2024 12:12 PM | |
| 1 | 06-17-2022 08:38 AM | |
| 2 | 05-23-2023 07:45 AM |
| Online Status |
Offline
|
| Date Last Visited |
2 weeks ago
|