|
POST
|
Ok I think I found the issue. It looks like if you have a map image layer then there will be situations where the layers are duplicated. But as a workaround, I ran a quick test and it looks like you can remove the map image layer from the legend in the Map Viewer to remove the duplicates. To do this select the main layer - in this example its called "AssessmentDistricts" then use the three dots to select "Show Properties" which will open the properties panel then you can unselect "Show in map legend". Let me know if this workaround works for you.
... View more
08-06-2025
09:54 AM
|
0
|
0
|
2423
|
|
POST
|
Are the app or map public? If so can you share the link I'd be happy to take a look.
... View more
08-06-2025
09:05 AM
|
0
|
0
|
2428
|
|
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
|
673
|
|
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
|
599
|
|
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
|
1190
|
|
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
|
384
|
|
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
|
691
|
|
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
|
983
|
|
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
|
1019
|
|
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
|
998
|
|
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
|
1498
|
|
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
|
1511
|
|
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
|
1221
|
|
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
|
1228
|
|
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
|
1256
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | Wednesday | |
| 2 | yesterday | |
| 1 | Thursday | |
| 1 | Wednesday | |
| 1 | 2 weeks ago |
| Online Status |
Online
|
| Date Last Visited |
3 hours ago
|