POST
|
We have an organizational AGOL account with more than sufficient credits. In AGOL, in the Geocoding section of Utility services, it shows the ArcGIS World Geocoding Service. However, when we go to geocode in ArcGIS Pro, the only Input Locator available is the Esri World Geocoder. If we use it, we get zero matches. If we try to rematch, we get a "Geocoding result not stored. Ensure you are signed in to ArcGIS Online and have geocoding privilege." After much tinkering, ArcGIS World Geocoding Service now shows, but it still does not work. This is preventing us from doing a very basic task. Interestingly, I have access to other organizational accounts and have not encountered any problems there (and this is not a problem that existed prior). NOTE: As working through this, I tried it on another computer with a different Pro version and it worked. I think it may be a 3.5.1 issue. I am still checking, but I would appreciate any feedback in the meantime. Second Edit: While it works on 3.4.2, it is not solely a 3.5.1 issue on second though because when I log into a different organization, it works on 3.5.1.
... View more
06-12-2025
12:15 PM
|
1
|
0
|
293
|
POST
|
Thank you. There is a long, convoluted story that involves multiple different enterprise servers we manage (which due to various reasons are at different versions). After some updates here and there, I finally got things to work as they were supposed to. The server above is one I was using for testing, but now that I have a production server's settings right, all is good. I appreciate your reply. My issues here were more than likely the web adaptor.
... View more
02-04-2025
07:40 AM
|
0
|
0
|
364
|
POST
|
I have successfully published a feature layer with branch versioning (see screenshot below): However, if I go to the Portal to access the web layer, I get the following error: Similarly, if I try to add it to Pro, I receive an error that no resource could be found at the address. This happens immediately after I get the message that it was published successfully.
... View more
02-03-2025
08:53 AM
|
0
|
2
|
405
|
POST
|
I apologize, I just saw this (over a year late). Do you still need this?
... View more
12-10-2024
10:02 AM
|
0
|
0
|
1227
|
POST
|
Excellent. I will give it a shot and see how it works on my end. Greatly appreciated. Todd
... View more
11-21-2024
07:06 AM
|
0
|
0
|
534
|
POST
|
Several years ago, I (with help from this fine community) developed a simple app that, when a user searched for a location (address, XY, etc.) using the search widget, a featurelayer was also queried and a pop-up would provide information from that feature layer. Example: an individual would enter an address and the search widget would query a state house district layer, resulting in a pop-up with info. about the district in which the address occurs (code snippet below to show what was done). searchWidget.on('select-result', function(evt){
let query = hsb.createQuery();
query.geometry = evt.result.feature.geometry;
query.spatialRelationship = 'within';
query.outFields = ['*'];
query.returnGeometry = true;
query.outSpatialReference = view.spatialReference;
query.maxAllowableOffset = 0;
hsb.queryFeatures(query).then(function(result){
view.popup.open({
features: result.features,
location: result.features[0].geometry.centroid
});
});
}); We now have a need to do this for taxable jurisdictions. However, a single location can fall within multiple taxable jurisdictions (e.g. county, municipality, etc.), necessitating querying multiple layers and, ideally, returning a single pop-up. The quickest, easiest solution would be to union the various layers and then query against it, but these data are dynamic, so being able to query each layer individually and returning the results at once is a better solution. Anyone have any examples of something comparable I could use as a potential guide?
... View more
11-15-2024
09:27 AM
|
0
|
2
|
593
|
POST
|
I believe this is it. I changed the URLs and it is working now. Thanks.
... View more
11-14-2024
12:18 PM
|
1
|
0
|
1880
|
POST
|
Please try now, I didn't realize I hadn't shared it.
... View more
11-13-2024
01:18 PM
|
1
|
4
|
1928
|
POST
|
Here is a link to the one previously working. The space between the state name and population is where the image used to be: https://experience.arcgis.com/experience/c58da91cd8c940bd98c80cd55435b7db/?draft=true
... View more
11-13-2024
06:40 AM
|
0
|
6
|
1945
|
POST
|
I am trying to add dynamic images based on a URL to my app. I have done this before and it worked marvelously, but it is not working now on a new Experience or with the older ones that were formally working. The short version is this. I add an image, connect to data, specify the data source, select Dynamic, and then select the field with the image URL. I also have view for empty selection set, etc. It is not working and, I wish to repeat, it has worked in the past. Is this a glitch with Experience Builder or has some subtle change been made since last I did this?
... View more
11-12-2024
08:15 PM
|
0
|
9
|
2048
|
POST
|
We recently updated our GIS stacks which necessitated upgrading the Postgres versions, as well. We followed the guidelines to do a pg_dump and pg_restore and read the documentation that stated that OIDs are not supported with newer versions of Postgres. However, when we try to do anything in the database, we are unable to. For instance, if we try to add a new feature class, we receive a an ERROR 160332: The table does not have an OID Field. Well, we know this. It also prohibits us from taking maps that use the database as a datastore offline and so on and so forth. Is there a fix to this?
... View more
06-17-2024
02:50 PM
|
0
|
0
|
715
|
POST
|
It was a registry key issue. It has been fixed. Thank you for your assistance, much appreciated.
... View more
06-13-2024
03:07 PM
|
0
|
0
|
1577
|
POST
|
Thank you. I am not sure how I missed that post because I did search for similar. Anyway, that said, this worked. However, there is a big caveat. When I did this, I lost all of my portals and had to re-add them. In the grand scheme of things, this was a minor hassle because I am now able to log in to each of them. Thanks again. Todd
... View more
06-13-2024
03:06 PM
|
1
|
0
|
1577
|
POST
|
I recently encountered a sign-in problem with 3.3. I posted about it here. I uninstalled 3.3 and reverted to 3.2.2. However, I decided to upgrade again for a different reason and have immediately encountered a similar, but slightly different problem. I am currently logged in to my organizational AGOL account--so things are working there. However, if I try to log into any of the portals we manage (which are quite a few) or even another organizational account, I get the following. I am at an impasse because if I need to publish to or access data from other Portals, I am effectively locked out. I do not have this issue on earlier versions of ArcGIS Pro, so there is nothing wrong with the portals or webadaptors or anything along those lines. It is 3.3.
... View more
06-12-2024
11:47 AM
|
0
|
4
|
1687
|
POST
|
Though far from ideal, I did a complete uninstall of 3.3 and reinstalled 3.2 plus the patch. I am back to 3.2.2, where I will remain for a while, and everything appears to be running properly.
... View more
05-23-2024
12:08 PM
|
0
|
0
|
2629
|
Title | Kudos | Posted |
---|---|---|
1 | 06-12-2025 12:15 PM | |
1 | 11-14-2024 12:18 PM | |
1 | 11-13-2024 01:18 PM | |
1 | 06-13-2024 03:06 PM | |
1 | 05-12-2022 06:53 AM |
Online Status |
Offline
|
Date Last Visited |
06-13-2025
12:44 PM
|