|
POST
|
Hey there, You create a create a div with absolute position and set the top and left corners to the event's x and y. Something like this: https://codepen.io/U_B_U/pen/yLxbZjz?editors=1000
... View more
03-03-2023
12:26 PM
|
0
|
2
|
2452
|
|
POST
|
Hi there, This is what I see. Are you hosting the image on a different server than your app? If so you need to make sure that the server is CORS enabled. If it is on the same server then you need to make sure that the file can be accessed via HTTPS. I hosted the COG with your goal_translate options on my GitHub and here is a codepen that shows the image in the right place: https://codepen.io/U_B_U/pen/wvEgmjN?editors=1000
... View more
02-28-2023
09:29 AM
|
1
|
1
|
4263
|
|
POST
|
Hi there, Several things going on in your codepen. First, your polygon geometry does not intersect with the points. You have the x and ys reversed. If you update that then the layer.queryFeatures will return the correct results. However the layerView will still return empty array because you are running the layerView query when the app loads. In this case you have to wait until the layerView is done updating. I updated your codepen to reflect the changes I mentioned above: https://codepen.io/U_B_U/pen/GRXrKJq?editors=0011
... View more
02-27-2023
02:27 PM
|
1
|
2
|
2718
|
|
POST
|
For webmaps you need to use the viewPoint property on https://developers.arcgis.com/javascript/latest/api-reference/esri-WebMap.html#initialViewProperties. The Viewpoint - has scale and targetGeometry which are used to set the scale, center or extent of the MapView.
... View more
02-27-2023
09:18 AM
|
0
|
0
|
1966
|
|
POST
|
Hi there, I tested the jp2 image you provided and is working without any issues using goal_translate you provided. Please set the `TILED=YES` option when generating the COG. gdal_translate MSAVIC_2022-12-17.jp2 msavic_cog.tif -co "TILED=YES" In any case, I was able to add and view the cog you created without any issues.
... View more
02-27-2023
07:45 AM
|
1
|
1
|
4292
|
|
POST
|
HI there, Just want to let you know we added support for noData pixel Mask. Here is your codepen updated: https://codepen.io/U_B_U/pen/rNZMMvQ?editors=1000
... View more
02-24-2023
10:04 AM
|
0
|
0
|
1465
|
|
POST
|
Hi there, You can get the fullExtent of the layer once the layer is loaded. // Get the fullExtent of the layer when layer is loaded
view.whenLayerView(layer).then(()=>{
console.log(layer.fullExtent);
view.goTo(layer.fullExtent);
}); Hope this helps
... View more
02-23-2023
08:35 AM
|
1
|
1
|
2001
|
|
POST
|
Hi there, So I created this simple codepen based on your description. Hopefully this will be helpful. In this codepen, I am comparing an attribute of a polygon feature with an attribute of a point feature. If they match, I toggle the point feature visibility. https://codepen.io/U_B_U/pen/mdGEBGj?editors=1000
... View more
02-23-2023
08:05 AM
|
0
|
0
|
1764
|
|
POST
|
Hi there, We fixed the issue with customParameters at version 4.26. You will be able to test the fix on our next version next Tuesday.
... View more
02-16-2023
01:41 PM
|
0
|
0
|
2207
|
|
POST
|
You cannot change the symbols of features in a FeatureLayer. The symbol changes happen through the layer's renderer. Be sure to check out the Styles and data visualization doc to learn more info.
... View more
02-16-2023
07:26 AM
|
0
|
0
|
781
|
|
POST
|
Hi there, At 4.25, we added the check so that users would get a warning message if the container doesn't exist. We revisited our implementation so that the error will be thrown only if the named element does not exist. You now will be able to add a map to different elements. You can test the fix in our next release: https://codepen.io/U_B_U/pen/bGxNgEM?editors=1000
... View more
02-15-2023
10:25 AM
|
0
|
1
|
6303
|
|
POST
|
Hi there, ApplyEdits is not meant to be used for near realtime updates. Although, the app could be crashing for other reasons. I can't be sure. In any case, have you tried using StreamLayer for your use case? The stream layer can consume a service from a custom web socket. Seems like this option could work for you. At 4.26, we are also introducing client-side StreamLayer where you can stream features to the layer on the client-side. You can test this new capability using our next version and you can find more info here.
... View more
02-15-2023
09:02 AM
|
0
|
0
|
1427
|
|
POST
|
Hi there, This issue is fixed and the fix will be installed for 4.26 version. You can test the fix by using our next version which this app already points to: https://codesandbox.io/s/jovial-browser-hfu2ng?file=/index.html
... View more
02-12-2023
01:31 PM
|
2
|
0
|
3767
|
|
POST
|
You can use FeatureLayerView.filter if you do not want to show your older features. FeatureEffects are useful if you want to display display features that are included in the criteria differently than those that are not included in the criteria. If you for some reason must use featureEffect then use can use opacity effect and make the features completely transparent. The document explains how to use the effects. This sample shows how use FeatureLayerView.filter to show only features that meet the criteria: https://developers.arcgis.com/javascript/latest/sample-code/sandbox/?sample=featurefilter-attributes
... View more
02-09-2023
01:20 PM
|
0
|
1
|
2076
|
| 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
|