IDEA
|
@RyanBohan we made a few updates to the export options including: Pre-populate the title with the app name If a feature is selected then auto enable the "Include selected features' option.
... View more
06-28-2024
03:14 PM
|
0
|
0
|
259
|
IDEA
|
@James_Shreeve we added additional sketch tools to Lookup in the latest release of ArcGIS Online. They seemed to fit the Lookup use case of selecting zones or features within a zone and it may fit your use case? https://jsapi.maps.arcgis.com/apps/instant/lookup/index.html?appid=159cd1e42d0a458b965e159c60aa695b
... View more
06-28-2024
02:58 PM
|
0
|
0
|
458
|
POST
|
I setup a test app to see if I could repro the issue but no luck. In this app the draw a polygon search is working. If your app is public can you share the link? If not can you describe your data a bit more and let me know how you've configured the app? Attached is a screenshot of the relevant portion of my test app config https://jsapi.maps.arcgis.com/apps/instant/lookup/index.html?appid=159cd1e42d0a458b965e159c60aa695b
... View more
06-28-2024
01:01 PM
|
1
|
3
|
463
|
POST
|
We have a fix going out either tonight or Monday that will remove the objectid from the related records item. We also added a URL parameter that will open the related record without having to click if there is only one related record for the selected feature. I've attached an image showing how this will look. It does not have an option to zoom to that feature but we'll get that added for the Fall release of ArcGIS Online and make this a configurable option. In the meantime if you'd like this behavior in your app you can either append the url parameter to your app like this: https://sjcfl.maps.arcgis.com/apps/instant/lookup/index.html?appid=75876d896b0042758c6d268647f12343&openRelatedRecords=true Or if you'd rather not append it as a URL you can use a tool like AGO Assistant to edit the apps data to set this option. I'm including steps on how to do this here but if you haven't use AGO Assistant before I highly recommend practicing with a copy of your app before you try to edit the original. You can quickly create a copy of your app using the My Apps tab in the Instant App Gallery Find your app in the gallery and click the Copy App button to make a copy. In the copy of the app try out these steps after the update is made to ArcGIS Online. 1. Log in to AGO Assistant https://assistant.esri-ps.com/ 2. In your content find the app and the app name and choose View Item JSON from the side menu that appears. 3. In the Item JSON page click the Data tab then Edit JSON 4. In the values section add openRelatedRecords:true, here’s an example of how it’ll look. Click Save and test your app {
"source": "f6a143fb90c44d7b860f623f1a23c322",
"folderId": "root",
"values": {
"webmap": "050f311bbe4141fb858a0eed1540d363",
"type": "webmap",
"datePublished": 1719520472275,
"openRelatedRecords":true,
"fullAppSettings": false
}
}
... View more
06-28-2024
10:01 AM
|
0
|
1
|
641
|
POST
|
Yes it does look like its release related. We'll work on getting in a fix.
... View more
06-27-2024
07:37 PM
|
0
|
1
|
398
|
POST
|
@BobCarberry3 Looking into this now I'll keep you posted.
... View more
06-27-2024
03:20 PM
|
0
|
0
|
666
|
POST
|
We made some changes to the way related records are handled in Zone Lookup for the release that goes live tonight. Can you test your app tomorrow morning. If you still see issues with the way related records display can. you share a link to your app if its public?
... View more
06-26-2024
06:55 PM
|
0
|
0
|
331
|
POST
|
@ArmstKP As Sarah pointed out we do have plans to enhance the configuration experience to let you modify the default text. We wanted to wait until we had a system in place to allow translation of those strings into multiple languages in place. We now have the ability to translate user defined strings in the app and will work on exposing these as configuration options later this year. In the meantime there is a "hacky" way that you can change the text you asked about if all you want to do is change it for one language. Custom CSS can be used to hide the existing text and use a CSS pseudo element to add in new text. Steps: 1. Configure your Sidebar App 2. Use the "Search settings" option to search the configuration for "Custom CSS" and click Edit 3. Paste the following CSS into the Custom CSS text area after replacing the "Your custom text goes here" with the text you'd prefer. #popupPanel .esri-widget__content--empty:after {
content: "Your custom text goes here";
}
.esri-widget__heading{
display:none;}
... View more
06-25-2024
01:27 PM
|
1
|
1
|
245
|
POST
|
Can you provide an example of a search term that returns three duplicate results? I am testing and don’t see that behavior in my demo app. Also if I look at the web map in the ArcGIS Online Map Viewer it matches the app and looks like the image on the right. I do not see the map symbology looking like your image on the left in either the app or the map viewer.
... View more
06-12-2024
09:36 AM
|
0
|
0
|
535
|
POST
|
It looks like your public app (the old one) is using a configurable app named Information Lookup. Zone Lookup is an updated replacement app for that older app. You'll need to configure it to have the behavior you would like. Based on your description I think you only want one layer to show so you'll want to go into the Zone Lookup configuration experience and in the Zone Lookup section choose Options then "For a zone" and select the layer that you'd like to be in the results.
... View more
06-11-2024
09:28 AM
|
0
|
2
|
553
|
POST
|
Is it possible to share the map/app either the old version or new so I can take a look?
... View more
06-10-2024
11:17 AM
|
0
|
1
|
574
|
POST
|
Looks like this is happening due to the Map Area configuration being enabled. I have an update for this that we'll work on getting out for the next release.
... View more
05-29-2024
10:03 AM
|
2
|
0
|
305
|
POST
|
We've done some work for the upcoming release to better support chart content in the exported PDF. So this experience should be improved in the upcoming release of ArcGIS Online. If your web map is public can you share the link? Its always nice to have additional test cases to ensure the updated export is working with a wide variety of charts.
... View more
05-28-2024
04:53 PM
|
0
|
3
|
516
|
POST
|
This is happening because the input field for the search widget has a font size of less than 16px. On the iPhone in that scenario the phone thinks the text is too small to read and zooms into that field. We have a fix for this in the next release of ArcGIS Online but you can fix it in your app now using the Custom CSS configuration option. You can find this setting in the Theme section and you can use this CSS to increase the font size. .esri-search__form .esri-input[type=text] {
font-size: 16px;
}
... View more
05-24-2024
11:46 AM
|
1
|
1
|
493
|
Title | Kudos | Posted |
---|---|---|
2 | Friday | |
1 | a week ago | |
1 | a week ago | |
1 | 09-24-2024 02:37 PM | |
2 | 09-24-2024 09:12 AM |
Online Status |
Offline
|
Date Last Visited |
Friday
|