POST
|
Hi @Wimvan_Dijk - this is an API error. We have a fix that will be released with version 4.34 next month. If you want to test out the fix ahead of the release, you can do so on our development version of the CDN: https://js.arcgis.com/next https://js.arcgis.com/next/map-components/ Note that as of 4.33, there is a new CDN endpoint for components where the version number comes before the component package for consistency with the core API CDN! See https://developers.arcgis.com/javascript/latest/release-notes/#new-cdn-endpoint-for-components for more info.
... View more
6 hours ago
|
1
|
0
|
16
|
POST
|
Hi - one thing that might be worth trying is capitalizing the `TintColor` property in your script. I believe all the property names should be capitalized in order for the primitive overrides to be applied correctly. More info on working with overrides in dictionaries: https://github.com/Esri/dictionary-renderer-toolkit/blob/master/docs/working-with-overrides.md
... View more
Wednesday
|
1
|
0
|
120
|
POST
|
You have a couple options here: 1) symbolService.generateSymbol(): this method converts SVG -> CIM using the REST API symbol service. 2) Publish the symbols you need as WebStyleSymbols! These are CIM symbols under the hood, but allow for easy reference to the symbol by its name. Check out this blog for more info on creating and publishing web styles. Hope this helps!
... View more
2 weeks ago
|
0
|
0
|
155
|
POST
|
@michaelkdev - The original issue you reported with the labels not displaying when a real world size visual variable is used will be fixed in the upcoming 4.34 release. Thank you!
... View more
3 weeks ago
|
1
|
0
|
51
|
POST
|
Hi @KeithAddison1 - this is possible with a CIMSymbol. See an example here: https://codepen.io/annefitz/pen/QwbVwba?editors=1000
... View more
06-17-2025
11:00 AM
|
0
|
0
|
342
|
POST
|
The sublayers property supports autocasting, so it should still work if you set it from an array. As of version 4.32, autocasting is now supported in TypeScript applications.
... View more
05-14-2025
01:58 PM
|
0
|
0
|
352
|
POST
|
When setting the `sublayers` property directly in the WMSLayer's constructor, this will override the properties returned from the service's GetCapabilities response, which is why the LegendURL gets stripped. To maintain all the sublayer's properties from the service, we would recommend setting the sublayers property after the layer has loaded. For example: const layer = new WMSLayer({
url: // url to the service
});
await layer.load();
// filter by a given sublayer
const sublayer = layer.findSublayerByName("My Sublayer");
if (sublayer) {
layer.sublayers = [sublayer];
}
map.add(layer); You'll see this pattern promoted throughout the SDK documentation, for instance in the API reference and sample.
... View more
05-14-2025
10:36 AM
|
0
|
2
|
364
|
POST
|
We've installed a fix for this for version 4.33, which is planned for release in June. Paging will be disabled when the maxPageCount is set to 0 or 1. You can test out this fix on the /next version of the SDK: https://js.arcgis.com/next Let us know if you have any feedback - thanks!
... View more
04-02-2025
03:48 PM
|
1
|
1
|
660
|
POST
|
Hi @mikkokärkkäinen - thanks for bringing this to our attention! We'll investigate disabling paging when the maxPageCount is 0 or 1.
... View more
03-25-2025
09:26 AM
|
2
|
0
|
680
|
POST
|
Hi, instead of setting your apiKey globally (on esriConfig), you can set it directly on the basemap style or basemap layer used, so it will only be applied to requests to those services. If using one of the basemap styles from the Basemap Style Service, set the API key here: https://developers.arcgis.com/javascript/latest/api-reference/esri-support-BasemapStyle.html#apiKey Otherwise, you can set the api key on the layer before adding it to the basemap, for example: https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-VectorTileLayer.html#apiKey If neither of these fit your use case, please let me know more details about the basemap you're bringing in so I can better assist you!
... View more
03-25-2025
08:23 AM
|
0
|
0
|
351
|
POST
|
Hi @michaelkdev - it looks like your codepen is no longer using any visual variables? This is why the issue may appear to be fixed. There's still more work to do on this on our end 🙂
... View more
02-24-2025
08:08 AM
|
1
|
0
|
367
|
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
|
278
|
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
|
457
|
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
|
414
|
Title | Kudos | Posted |
---|---|---|
1 | 6 hours ago | |
1 | Wednesday | |
1 | 3 weeks ago | |
1 | 04-02-2025 03:48 PM | |
2 | 03-25-2025 09:26 AM |
Online Status |
Online
|
Date Last Visited |
6 hours ago
|