|
POST
|
Hello SherbazHashmi1, Which basemap have you used? I have recently configured my maps to go offline in Collector (in ArcGIS Enterprise). Only with ESRI ArcGIS Online basemaps (registered on our GIS Enterprise) was I able to go offline. The process is described here: https://enterprise.arcgis.com/en/portal/latest/use/take-maps-offline.htm# Look through 'Use an Esri basemap offline' section. The error message that you are getting implies that you might be already using basemaps from AGOL. To not get asked the password, when you registered these baseamp on your Portal, add the login details to be saved with the item (step 7 in 'Use an Esri basemap offline' section). I hope this help, though it is a bit hard to help without knowing all the details.
... View more
05-12-2021
05:51 PM
|
0
|
0
|
842
|
|
POST
|
Some points are on top of each on my map. When the point is clicked, the poup shows info for one of the points. To see the other points, you need to scroll, which some users miss. Is there a way, when the point is clicked, to either show the summary for all points at that location? Or somehow combine the info to include all points in one popup? The attached image is the summary, which I get if I click on the menu in the popup. That would be ideal to have to start with, but it is not default.
... View more
11-16-2020
03:36 PM
|
0
|
1
|
1283
|
|
POST
|
Thank you Joshua Bixby, your code worked a trick and I got exactly what I needed. Is there a documentation on that somewhere? would be great to see what else I can do. Thanks again!
... View more
07-27-2020
09:17 PM
|
0
|
1
|
5171
|
|
POST
|
Thank you Arne Gelfert. Unfortunately we don't have access to the actual machine. It is run for us by ESRI.
... View more
07-27-2020
09:16 PM
|
0
|
0
|
5171
|
|
POST
|
Is there a way to programically (probably python?) to get the path property of a service published to an ArcGIS Server? I found this piece of python: for dir in [None] + SD.folders: for srv in SD.list(folder=dir): print(str(srv.properties)) It gets properties of the services (seems to be the same as you can get by going to the rest end point), but none of these properties is the original mxd path..
... View more
07-21-2020
11:14 PM
|
1
|
6
|
5270
|
|
POST
|
Resolved my onw question by looking into print(object.__dict__) For anyone interested here is my code: from arcgis.gis import GIS import datetime # login to your gis gis = GIS("yourlink", "username", "password", proxy_host = "if you using one", proxy_port = 8080) search_result = gis.content.search(query = '*', item_type="Feature Service",max_items=10000) # list to record items list_of_items = list() # as I am adding all in a table after, I need headings list_of_items.append(['title', 'id', 'views', 'created', 'owner', 'size', 'access', 'url', 'source url']) for i in search_result: # using try as sometimes it goes upset and won't work... try: # not all items have sourceUrl. For exmaple, hosted items don't have it. if hasattr(i, 'sourceUrl'): source = i.sourceUrl unix_date =i.created # unix ms second date/time normal_date = datetime.datetime.fromtimestamp(unix_date / 1e3) # adding properties of one item as a list list_of_items.append([i.title, i.itemid, i.numViews, normal_date, i.owner, i.size, i.access, i.url, i.sourceUrl]) except: continue
... View more
05-21-2020
03:29 AM
|
0
|
0
|
2621
|
|
POST
|
Has anyone tried to find Rest Endpoint for an ArcGIS Online item with ArcGIS API for Python (I am using Jupyter Notebooks). I am going through different parts of the API and don't see anything related to items' data source or rest endpoint. It is easy enough if done manually for one item at a time: But I need to go through all of our content and find all registered items, which were published on our ArcGIS Server and then registers on AGOL.
... View more
05-17-2020
01:50 PM
|
0
|
3
|
2720
|
|
POST
|
Hello Robert, Thank you so much for your help. I have updated my code as per your instructions and it works now.
... View more
01-01-2020
09:18 PM
|
0
|
0
|
2612
|
|
POST
|
I'd like to change color of the popup title depending on the value in the field. There are four possible values. Here is my code related to this popup: // setting up popup template let template = { title: title(), content: [ { type : "fields", fieldInfos: [ { fieldName: "CurrentWarning", label:"Current Warning", }, { fieldName: "Location", label:"Location", }, { fieldName: "MediaMessage", label:"Media Message", }, { fieldName: "ResponseDate", label:"Response Date", }, { fieldName: "VehiclesOnScene", label:"Vehicles on Scene", }, { fieldName: "VehiclesOnRoute", label:"Vehicles on Route", }, { fieldName: "LastUpdate", label:"Last Update", } ] }] }; Then feature layer gets the popupTemplate setup: var featureLayer = new FeatureLayer({ url: "http://services1.arcgis.com/....../arcgis/rest/services/......./0", popupTemplate: template }); map.add(featureLayer); And last part, definition for title() function: function title() { if ( {CurrentWarning} == "Emergency Warning"){ return "<font color='#FF0000'>{CurrentWarning} - {Location}" } else if ({CurrentWarning} == "Advice"){ return "<font color='#FFFF00'>{CurrentWarning} - {Location}" } else if ({CurrentWarning} == "Watch and Act"){ return "<font color='#ff6600'>{CurrentWarning} - {Location}" } else { console.log({CurrentWarning} ) return "<font color= '#008000'>{CurrentWarning} - {Location}" } } What happens is that {CurrentWarning} in the title function is not defined I tried passing the value through the function: ...... title: title("{CurrentWarning}"), ....... function title(warning) { ....... } That did not work. And I also tried to use quotes around CurrentWarning, same outcome. How do I get the different color for the title depending on the value of this field? Thanks!
... View more
12-23-2019
07:20 PM
|
0
|
2
|
2952
|
|
POST
|
Hello All, I have installed ArcGIS Enterprise 10.7.1 on my pc (windows) as a part of my developer subscription. I have used ArcGIS Enterprise Builder. All was great up until I step 5, Configuring Web Adaptors. It requires https, for which I need ssl certificate. First of all, I don't have one and I thought I can get away without it as everything is installed on my pc (single machine). As it is just for testing, I don't think our IT department with assist with the certificate. Is there a way around it? I found few articles from ESRI describing exactly my error, 'Create a domain certificate and enable HTTPS' from here Plan a base deployment. But it is just on my PC and I am not sure how to create certificate myself (if it is possible).
... View more
11-05-2019
08:50 PM
|
0
|
4
|
3489
|
|
POST
|
Hi Katie, I applied patch to my computer and published but that did not help. I did not apply patch to the server. The change of symbology in webmap fixes the problem. So I decided not to republish and do anything on the server. I just slightly increased/decreased size of one symbol for each of my layers with this issues and saved them.
... View more
09-16-2019
06:26 PM
|
0
|
1
|
3429
|
|
POST
|
My problem was resolved. Our feature service had time query. We publish to ArcGIS service first, then register the service on ArcGIS online. In this combination time queries are not supported for offline use with Collector.
... View more
09-07-2019
11:20 PM
|
1
|
0
|
1708
|
|
POST
|
I have prepared my maps for offline usage as per instructions. There is user tracking and in the new Collector I can see the "Add Offline Area" text. However when I try to download the map, I get the error message: The operation could not be completed. Failed to create replica. Any ideas on how to fix it? !
... View more
09-04-2019
12:35 AM
|
1
|
3
|
2100
|
|
POST
|
Strange behavior of the point layers in Collector map... It worked fine last month and without any changes (that I can think of) it started to have issues. The classic Collector has no issues and all layers are displayed as expected. The issue is that symbols of some point layers disappear as per attached screenshot. Even more strangely, on rare occasion, both layers have their symbols. Then the next minute, both layers won't have any symbols. And mostly, one of them is missing the symbols. I republished the services few times, checked logs, checked web maps. Web map on ArcGIS Online is fine and all symbols are there. When publishing, there are not warnings or errors. I published from our server version of ArcMap 10.4 and also from my desktop 10.7.1 - the outcome is the same. Out of things to try at this stage and thinking that with this problem, we can't roll out out this application. The layers are point feature layers, published to ArcGIS server 10.4 and the registered on AGOL.
... View more
07-29-2019
06:16 PM
|
2
|
4
|
3940
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 10-11-2021 12:18 PM | |
| 1 | 10-05-2021 08:43 PM | |
| 2 | 08-01-2023 05:14 PM | |
| 2 | 07-04-2019 12:05 AM | |
| 1 | 05-26-2022 12:08 AM |
| Online Status |
Offline
|
| Date Last Visited |
09-16-2025
08:50 PM
|