|
POST
|
Hello - thanks for reporting this! It's actually a known limitation with our SimpleMarkerSymbol/SVG implementation not supporting outline styles. I will update the documentation to reflect this. As a workaround, you could convert the SVG to a CIMSymbol and then you should be able to add dashes to the outline. To do this, you could either use the CIM Symbol Builder or the convertToCIMSymbol method. Hope this helps!
... View more
02-18-2025
08:14 AM
|
1
|
0
|
378
|
|
POST
|
Hi @michaelkdev - thanks for bringing this to our attention! This appears to be a bug with labels and real world size visual variables. You'll notice if you remove the size VV from your "rendererComplex" - the labels will display as expected. We'll look into it.
... View more
02-06-2025
09:27 AM
|
1
|
1
|
873
|
|
POST
|
You need to use the attribute name `expand-tooltip` instead of the property name, like this <arcgis-expand position="top-right" expand-tooltip="My custom tooltip"> You can read more about Component attributes and properties on this guide page: https://developers.arcgis.com/javascript/latest/programming-patterns/#attributes-and-properties
... View more
02-06-2025
07:57 AM
|
1
|
0
|
521
|
|
POST
|
Hi @michaelkdev - we've made some improvements to the aliasing issue you were seeing for the version 4.32. Can you try this out against the /next development version of the API and let us know if this fixes things for you?
... View more
02-03-2025
10:10 AM
|
0
|
0
|
574
|
|
POST
|
Hi Marc - could you share a codepen or snippet that reproduces the issue you are running into? Here is an example that uses map components with the WMSLayer as the basemap. Hope this helps! https://codepen.io/annefitz/pen/yyBvZQv
... View more
01-09-2025
12:54 PM
|
0
|
0
|
428
|
|
POST
|
Yes, this is possible, it just requires a bit of Arcade. The first step is creating an AggregateField for each user ID, using an Arcade expression to return 1 if the feature matches the given user type, and 0 if not (this is essentially just going to count the number of users with a given user_id in each cluster): new AggregateField({
name: "SUM_USER_A",
onStatisticExpression: new ExpressionInfo({
title: "User A",
returnType: "number",
expression: "Number($feature.user_id == 'A')"
}),
statisticType: "sum"
}) Do this for each user type so that you have a SUM_USER_A, SUM_USER_B, SUM_USER_C, and so on... Then, set a cluster renderer using another Arcade expression to Count all the aggregate fields that do not equal zero, and voila! You have the # of user types in each cluster. var fields = [$feature.SUM_USER_A, $feature.SUM_USER_B, $feature.SUM_USER_C];
function isNotZero(value){
return value != 0;
}
Count(Filter(fields, isNotZero)) Here's an example where I did something similar with NYC's boroughs, where the clusters are colored based on the number of boroughs represented by each cluster: https://codepen.io/annefitz/pen/dPbZVpP?editors=1000
... View more
01-03-2025
12:42 PM
|
1
|
0
|
437
|
|
POST
|
Hi! Based on your code snippet above, it looks like you have a color stored as the attribute value. Instead of overriding the colorSubstitution value (which is not supported), try overriding the CIMPictureMarker tintColor property. Here's an example: https://codepen.io/annefitz/pen/wBwrooy Note that the primitiveName on the override must match the primitiveName on the symbol layer with the property you are trying to override.
... View more
12-30-2024
08:28 AM
|
0
|
0
|
412
|
|
POST
|
Ok, this seems like a bug - we'll take another look. Thanks for letting us know!
... View more
12-05-2024
08:20 AM
|
0
|
0
|
227
|
|
POST
|
Oh thanks for the clarification! Just tested this out though by performing a hitTest & applyEdits when the feature is clicked and both the background, text, and border colors all seem to be updating as expected. Here's my example (click on a feature to update the attributes & watch it change color): https://codepen.io/annefitz/pen/OPLyxRw
... View more
12-03-2024
10:52 AM
|
1
|
3
|
1411
|
|
POST
|
Yes, hex values should work! I just tried out your symbol with a client-side feature layer and the overrides appear to be working as expected.
https://codepen.io/annefitz/pen/wBwKgpM?editors=1000
Let me know if you see something different and these overrides are not working for you! Otherwise, I think there may be an issue elsewhere in your code and it might be worth reaching out to tech support for help.
... View more
12-03-2024
06:35 AM
|
0
|
1
|
1426
|
|
POST
|
Hi, sorry for the delayed response! Could you provide some more information on how the color attribute is stored in your layer? Is it a hex value or string rgb value?
... View more
12-02-2024
07:22 AM
|
0
|
3
|
1458
|
|
BLOG
|
Join us on Tuesday, December 3rd at 9am PST for a livestream discussing the exciting new features added to version 4.31 of the ArcGIS Maps SDK for JavaScript. Learn more about symbol animation, 3D icon rotation, new FeatureTable updates like exporting selected features to CSV, and much more! This will be an informal setting where the JavaScript SDK product team will demo new features and answer questions from the audience. We hope to see you there!
... View more
11-22-2024
01:30 PM
|
2
|
0
|
319
|
|
POST
|
Hi @JimCunningham3 - so sorry I missed your last message! This was indeed a bug, but we've fixed it for the upcoming release (version 4.31) of the SDK. Please let me know if you are still running into issues after updating to the latest version once it is released.
... View more
10-31-2024
12:50 PM
|
0
|
0
|
2378
|
|
POST
|
I believe we've fixed this bug for the upcoming release (version 4.31) coming soon! Can you try out the /next development version of the API and let me know if this fixes your issue?
<script src="https://js.arcgis.com/next/"></script>
... View more
10-30-2024
08:42 AM
|
0
|
1
|
1588
|
|
POST
|
Thanks for reporting this @michaelkdev - we'll take a look and see if there is anything we can do to mitigate this issue.
... View more
10-15-2024
10:32 AM
|
1
|
0
|
799
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 10-24-2025 07:03 AM | |
| 1 | 09-09-2025 09:52 AM | |
| 1 | 09-03-2025 01:48 PM | |
| 1 | 08-22-2025 11:12 AM | |
| 1 | 04-02-2025 03:48 PM |
| Online Status |
Offline
|
| Date Last Visited |
10-24-2025
10:53 AM
|