|
POST
|
Thanks! I'm able to reproduce, but only at large scales. Do you still see the tiling issue if you zoom out a bit? Anyways, we'll look into this! Thanks for reporting.
... View more
03-28-2023
12:38 PM
|
1
|
1
|
6190
|
|
POST
|
Hi @JamesIng - what version of the API are you using?
... View more
03-27-2023
01:43 PM
|
0
|
3
|
6228
|
|
POST
|
To update the symbology, you should be able to set a new renderer on the layer instead of having to call `refresh()`, as shown in the following code snippet. // clone renderer
let renderer = layer.renderer.clone();
// make updates
renderer.symbol = {
type: "simple-fill",
color: "red"
};
// apply renderer back to layer
layer.renderer = renderer; Here's an example: https://codepen.io/annefitz/pen/BaOGMOv?editors=1000
... View more
03-23-2023
08:28 AM
|
1
|
0
|
1026
|
|
POST
|
I see what you're talking about now - we'll take a look! Thanks for pointing this out.
... View more
03-17-2023
02:20 PM
|
0
|
1
|
6995
|
|
IDEA
|
Hi @RebeccaWatson1 - this is supported already, you can pull the baseLayers from the Basemap and use them in the Swipe widget. Here's an example https://codepen.io/annefitz/pen/KKxBKeG?editors=1000
... View more
03-17-2023
11:44 AM
|
0
|
0
|
1071
|
|
POST
|
Hi @BryanMc - I cannot reproduce the issue you are describing. I don't see transparency in the codepen you shared, as shown in the image below. If you are seeing something different than the screenshot below, please share some information about your browser / OS / graphics card and we can investigate further. Thanks!
... View more
03-17-2023
11:02 AM
|
0
|
1
|
7013
|
|
POST
|
Hi @ChrisSchmeissner - you can use the "valueExpression" property instead of "field" to base the rotation visual variable off of an Arcade expression: https://developers.arcgis.com/javascript/latest/api-reference/esri-renderers-visualVariables-RotationVariable.html#valueExpression
... View more
03-17-2023
10:52 AM
|
0
|
0
|
929
|
|
POST
|
That app appears to be working as expected for me, and I do not see the error. The symbols render as expected, as shown in the image below: I tested your app across different browsers and devices and still cannot reproduce this error. If you are still running into issues, I would recommend reaching out to Esri support.
... View more
03-16-2023
03:35 PM
|
0
|
3
|
2367
|
|
IDEA
|
This was supported in 2D at version 4.26 https://developers.arcgis.com/javascript/latest/4.26/ 3D support is coming soon.
... View more
03-15-2023
10:25 AM
|
0
|
0
|
3523
|
|
POST
|
This is currently a limitation - we are still working on the tooltip functionality and will add the ability to change the units at an upcoming release! Stay tuned.
... View more
03-15-2023
08:28 AM
|
1
|
2
|
1671
|
|
POST
|
Hi @GraceTortorici_ - we added support for tooltipOptions on the Editor widget at version 4.24, which will display area and length measurements in a tooltip when creating or editing a feature. To enable this, follow the code snippet shown below: const editor = new Editor({
view: view,
layerInfos: [pointInfos, lineInfos, polyInfos],
tooltipOptions: {
enabled: true
}
}); Here's an example: https://codepen.io/annefitz/pen/dyqmrLd?editors=1000
... View more
03-14-2023
01:27 PM
|
0
|
4
|
1754
|
|
POST
|
That's the Map Viewer Classic. Try opening the new Map Viewer using the "Open in Map Viewer" button at the top right in the classic viewer: The symbology in the new Map Viewer should match the symbology in the JavaScript SDK.
... View more
02-28-2023
08:32 AM
|
0
|
0
|
4106
|
|
POST
|
Hi @JulienHenchoz - are you using Map Viewer Classic or the new Map Viewer? The new Map Viewer should render consistently with the JavaScript SDK.
... View more
02-28-2023
08:16 AM
|
0
|
2
|
4113
|
|
POST
|
Hi Doug, Currently, you can only get the scale of the current map view using $view.scale in the Arcade Visualization profile. Could you provide us a little more information about why you want to access the view extent, and how it would be used in your Arcade expression? This will help us consider whether we should support this for a future release.
... View more
01-27-2023
11:50 AM
|
0
|
2
|
2461
|
|
POST
|
I spoke too soon - it does appear that the galleryTemplatesGroupQuery is returning more basemaps than what is actually in that group - I can dig into that and see if there might be a bug there. In the meantime, you can use the query property on PortalBasemapsSource to define the id of your group: const basemapGallery = new BasemapGallery({
view: view,
source: {
portal: "https://corr.maps.arcgis.com",
query: {
id: "d3cad8c2b40046928585d09b020e133c"
}
}
});
... View more
01-19-2023
09:20 AM
|
1
|
1
|
3045
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 3 weeks ago | |
| 1 | 4 weeks ago | |
| 1 | 03-04-2026 08:01 AM | |
| 2 | 03-03-2026 05:23 AM | |
| 2 | 03-03-2026 05:53 AM |
| Online Status |
Offline
|
| Date Last Visited |
2 weeks ago
|