|
POST
|
Hi there, Have you seen this post https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/simplemarkersymbol-outline-not-rendering-correctly/m-p/1586428/highlight/true#M86532?
... View more
02-21-2025
07:13 AM
|
0
|
0
|
341
|
|
POST
|
Hi there, We addressed this issue in our upcoming release (version 4.32). You test the fix in next (4.32) version. Here your codepen updated: https://codepen.io/U_B_U/pen/YPKBGVj?editors=1000 Thank you for reporting this issue, -Undral
... View more
01-28-2025
12:49 PM
|
0
|
1
|
797
|
|
POST
|
Hi there, This issue will be fixed in our next version (version 4.32).
... View more
01-16-2025
07:28 AM
|
0
|
0
|
1345
|
|
POST
|
Hi there, It appears that the computeHistograms method isn't gathering all the necessary settings from the layer when it's autocast (i.e., when an object is passed directly to the method). To resolve this, please create a new ImageHistogramParameters instance, rather than relying on autocasting. You can do this with the following code: const params = new ImageHistogramParameters({
geometry: view.extent,
pixelSize: pixelSize
});
... View more
01-13-2025
01:22 PM
|
0
|
0
|
1385
|
|
POST
|
Hi there, This is expected behavior. When calling setStyleLayer, even if it modifies an existing layer—or adds a new one—the layer may have a different query or layout. As a result, we need to access the PBF (protocol buffer) and reprocess the features to ensure they align with the updated configuration. We fetch pbf for visible tiles.
... View more
01-07-2025
01:07 PM
|
1
|
0
|
762
|
|
POST
|
Hi there, I do see the issue. We will investigate it. I will update you here once we install a fix for this. Thank you bringing it to our attention. -Undral
... View more
01-07-2025
09:29 AM
|
0
|
0
|
901
|
|
POST
|
Hi there, I noticed that in your app, you're calling the LayerView.highlight() method inside a forEach loop, which is unintentionally overriding your highlightHandle. This happens because if multiple graphics are returned from the hitTest, the highlightHandle will end up referencing only the last graphic in the list. To fix this, I made some updates to your codepen. Instead of highlighting each graphic individually inside the loop, I now map all the graphics from the hitTest() and pass them together to the highlight() method. This ensures that the highlightHandle will reference all the highlighted graphics, not just the last one. Hope this makes sense.
... View more
01-06-2025
12:29 PM
|
1
|
1
|
563
|
|
POST
|
Hi there, There are couple of issues in the app you provided. 1. Geometries of features added to the StreamLayer must be in the spatial reference of the view, because the layer's spatialReference is always set to the spatial reference of the view. To avoid overhead, the stream layer does not do any additional processing or reprojecting on features as they arrive. This behavior is documented here. So you either need to use a basemap in WGS84 or your features need to have geometries in Web Mercator. 2. StreamLayer.sendMessageToClient() states that when sending features message then your features have to be esri JSON feature object. Based on this, I updated your codepen: https://codepen.io/U_B_U/pen/QwLqrpd?editors=1000
... View more
12-31-2024
03:13 PM
|
1
|
0
|
431
|
|
POST
|
Hi there, You can use the queryFeatureCount() method to get the count of all features in the layer. This codepen shows how it can be done - https://codepen.io/U_B_U/pen/bNboMwp?editors=100
... View more
12-31-2024
01:15 PM
|
1
|
0
|
403
|
|
POST
|
Hi there, When you apply a definitionExpression to a layer, it filters out any features that do not meet the specified criteria. This means that those features are excluded from processing. For example, the server will only return features that match the expression when you set a FeatureLayer.definitionExpression. This behavior is consistent across all feature-based layers. If you need to filter data without excluding it from FeatureTable, you can use client-side filtering by setting the LayerView's filter property. This approach allows you to filter the data on the client side without impacting the availability of features in the FeatureTable. This codepen shows this workflow: https://codepen.io/U_B_U/pen/dPbvxQR?editors=1000 Let me know if you need further clarification!
... View more
12-19-2024
02:40 PM
|
0
|
2
|
985
|
|
POST
|
Hi there, Can you please try with the version 4.31? There were some issues with updating clusters that have since been addressed. Thanks
... View more
12-12-2024
11:12 AM
|
1
|
1
|
497
|
|
POST
|
Hi there,
You could query for all attachments. The attachments query returns an object containing AttachmentInfos grouped by the source feature objectIds. Then use the objectsIds to highlight the features.
Here is a simple codepen app showing the concept.
https://codepen.io/U_B_U/pen/qEWbPgj?editors=1000
... View more
12-05-2024
07:47 AM
|
1
|
1
|
709
|
|
POST
|
Hi there,
I recommend using StreamLayer, especially since you mentioned that your data is updated frequently. StreamLayer is specifically designed for handling high-frequency data updates. You can integrate it with a custom websocket, or use the client-side StreamLayer for seamless integration depending on your needs. You can find an example of the custom websocket implementation here, and a sample for the client-side StreamLayer here.
This sample shows how to add 100,000 features to a cllient-side FeatureLayer without blocking the UI. However, please note that client-side FeatureLayers are not optimized for handling data that updates at a high frequency.
Additionally, I recommend reviewing the Visualization Guide Docs, which offer specific guidance on how to visualize high-density data effectively.
... View more
12-03-2024
08:26 AM
|
0
|
7
|
1833
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 11-17-2025 03:29 PM | |
| 1 | 07-09-2025 08:48 AM | |
| 2 | 07-08-2025 08:09 AM | |
| 2 | 07-07-2025 03:57 PM | |
| 1 | 06-11-2025 03:25 PM |
| Online Status |
Offline
|
| Date Last Visited |
12-01-2025
08:03 AM
|