|
POST
|
Which instant app are you using? There is an option to choose dual as the units for the Scalebar in most apps. We are working on a configuration option that allows you to define units for use in the app but it is not yet available.
... View more
08-05-2025
08:27 AM
|
0
|
1
|
495
|
|
IDEA
|
@HBrowning thank you for the feedback. It sounds like you are requesting an option for the layer list to add a toggle instead of an eyeball or checkbox is that correct? For the layer list we use a component from the ArcGIS Maps SDK for JavaScript and it currently only offers the two options (eyeball and checkbox). If they add additional configuration options we can look into exposing those via instant apps. https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-LayerList.html#visibilityAppearance
... View more
08-05-2025
08:25 AM
|
0
|
0
|
472
|
|
POST
|
Sorry for the delay in responding. It looks like an issue with the logic for related records and we'll get it fixed in the next release of online. In the meantime as a workaround you could write an arcade expression that shows the designated polling place related record content directly in the popup. In my testing this does not disappear after clicking the related record. Here's the arcade I used to test it out. var relatedRecords = FeatureSetByRelationshipName(
$feature,
"BND3_PollingPlace_ED_to_Locations"
);
var firstRelatedRecord = First(relatedRecords);
console(firstRelatedRecord)
var encodedAddress = UrlEncode((firstRelatedRecord.POLLING_PLACE_ADDRESS))
var baseUrl = `https://www.google.com/maps/search/?api=1&query=${encodedAddress}`;
var displayAddress = `${firstRelatedRecord.ADDRESS}<br>${firstRelatedRecord.City},${firstRelatedRecord.STATE}${firstRelatedRecord.ZIP}`
return { type: "text", text: `<b>${firstRelatedRecord.POLLING_PLACE_NAME}</b><br><br><a href=${baseUrl}> ${displayAddress}</a><br><br> <i>Click on address to open polling place in Google Maps</i>` };
... View more
08-01-2025
10:08 AM
|
1
|
5
|
868
|
|
IDEA
|
You can create an app (Experience Builder or Instant App) that has the time slider and add it as an item to your portfolio? The Slider and Media instant apps both have the time slider capability. Here's an example https://jsapi.maps.arcgis.com/apps/instant/portfolio/index.html?appid=b8e9fb7246b54ed09f320c1445c72a89
... View more
07-15-2025
07:32 AM
|
0
|
0
|
293
|
|
POST
|
You could choose the configuration option "Open as introduction window" to change it to open the info content as a floating popup window. This would make the function of the info button more apparent. And if you don't need users to be able to re-open the info on demand you could leave your app as-is and then use the Custom CSS option in the theming section to hide the info button. To do so use this css #infoButton{
display:none;}
... View more
07-14-2025
08:29 AM
|
0
|
0
|
550
|
|
POST
|
You should be able to style that section using the class (dist) that is applied. Here's an example: .dist{
background:magenta;}
}
... View more
07-10-2025
03:46 PM
|
0
|
1
|
842
|
|
POST
|
You should be able to update the background color for Nearby using the following css. calcite-accordion{
--calcite-accordion-background-color:yellow;
} And depending on how the app is configured you may be able to use just this option if all you want is the title area background to be a different color: .calcite-mode-light, calcite-accordion{
--calcite-block-header-background-color:magenta;
}
... View more
07-09-2025
10:18 AM
|
0
|
3
|
878
|
|
POST
|
Glad its working well for you. Thanks as always for the feedback which helps make our products better.
... View more
06-30-2025
08:33 AM
|
0
|
0
|
795
|
|
POST
|
The focus issue for the info button is fixed on arcgis.com now. If you refresh your app you should see the update. If not you may need to clear your cache. And here's the css I use in my test app to set the hover color for all the map buttons (including home and zoom) .calcite-mode-light {
--calcite-color-focus: magenta;
--calcite-icon-color: #333;
.esri-widget--button:hover {
--calcite-icon-color: #fff;
--calcite-color-border-3: blue;
--calcite-action-background-color-hover: blue;
}
}
... View more
06-27-2025
07:59 AM
|
0
|
0
|
1099
|
|
POST
|
Can you send me all the custom CSS you are currently using? I want to make a reproducible test case so we can help you get the hover colors working again.
... View more
06-26-2025
03:37 PM
|
0
|
2
|
1112
|
|
POST
|
Yes for some reason it only seems to be the original url that has issues. We'll continue digging into it on our end.
... View more
06-26-2025
12:30 PM
|
1
|
0
|
936
|
|
POST
|
@ArielLow2146 and also if I add a random url param. https://geo.maps.arcgis.com/apps/instant/lookup/index.html?appid=fd070b56c975456ea2a25f7e3f4289d1&share=false Can you maybe try toggling some setting on and off and then republishing the app?
... View more
06-26-2025
12:02 PM
|
0
|
1
|
943
|
|
POST
|
I can reproduce and I'm looking into it now. It looks like it does load if I access it with arcgis.com instead of the org url: https://www.arcgis.com/apps/instant/lookup/index.html?appid=fd070b56c975456ea2a25f7e3f4289d1 And when I access it via the org url I get unauthorized access to this service: details: {url: 'https://services.arcgis.com/uUvqNMGPm7axC2dD/arcgi…and_Legislative_Elected_Officials/FeatureServer/2', requestOptions: {…}, ssl: false, getAllHeaders: ƒ, getHeader: ƒ, …}
message: "Unauthorized access"
... View more
06-26-2025
11:02 AM
|
1
|
1
|
971
|
|
POST
|
Thank you for the detailed and helpful response we'll review this information. In my test app I still see the custom focus and icon colors. Here's the url to a sidebar app that should have red icon colors and pink outline focus. https://jsapi.maps.arcgis.com/apps/instant/sidebar/index.html?appid=95f26b9abb834827a168f628c08d9695
... View more
06-26-2025
10:58 AM
|
0
|
4
|
1132
|
|
POST
|
We have a fix for the focus issue for the info button and it will start working in Online within the next week. In records to the icon size I'm sorry for the confusion I didn't mean that the icon size was 24x24 rather the target (the button) is that size. We do plan to add support for additional customization capabilities especially for mobile and increasing button size or optionally adding in a text label in a future release of Online so we'd love to hear feedback about specific things you've had to modify via HTML and CSS so we can provide configuration options to make this easier.
... View more
06-26-2025
08:31 AM
|
0
|
1
|
1148
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 03-31-2026 08:27 AM | |
| 1 | 03-26-2026 09:07 AM | |
| 1 | 03-26-2026 10:11 AM | |
| 1 | 03-24-2026 02:23 PM | |
| 1 | 03-17-2026 02:50 PM |
| Online Status |
Offline
|
| Date Last Visited |
Wednesday
|