|
POST
|
We've installed a fix for the blurriness that will be released at version 4.28. You can test it out on our development version of the API, https://js.arcgis.com/next. Please let us know if you are still running into issues!
... View more
08-31-2023
05:32 PM
|
0
|
0
|
4695
|
|
POST
|
Thanks for the additional info @AndrewTaylor0942 ! I can see there is some blurriness -- we will take a look! In the meantime, you can try converting your complex SVGs to CIM symbols using the CIM Symbol Builder. Here's a blog that walks you through how to do this: https://www.esri.com/arcgis-blog/products/js-api-arcgis/developers/upload-symbols-from-svg-in-the-updated-cim-symbol-builder/ Let me know if that works for you or if you have any questions! 🙂
... View more
08-21-2023
10:21 AM
|
0
|
0
|
4752
|
|
POST
|
Hi @AndrewTaylor0942 - can you share a codepen or something reproducing the issue? I tested out your SVG using a SimpleMarkerSymbol and do not notice any blurriness. Here's an example: https://codepen.io/annefitz/pen/poQYvwJ?editors=1000
... View more
08-03-2023
04:36 PM
|
0
|
1
|
4800
|
|
IDEA
|
07-21-2023
09:19 AM
|
0
|
0
|
1329
|
|
POST
|
Hi @PrashantR - this is currently a limitation with our current FeatureLayer implementation, the symbol text will always render on top. GraphicsLayer is a great alternative, especially if you are only rendering a few manually defined graphics, like in your code example above.
... View more
07-20-2023
02:16 PM
|
0
|
0
|
3451
|
|
POST
|
This is not currently supported. I'd suggest submitting this as an enhancement request through Esri support or posting to ArcGIS Ideas. Thanks!
... View more
07-20-2023
02:09 PM
|
1
|
0
|
1020
|
|
POST
|
Sorry to hear that! I would recommend reaching out to Esri support for assistance with why that option is not appearing. Another route you could take is to define the symbology manually on your layer. You create a multi-layer symbol in the JavaScript SDK using the CIMSymbol class. Here's an example: https://developers.arcgis.com/javascript/latest/sample-code/cim-lines-and-polygons/
... View more
06-30-2023
08:57 AM
|
0
|
0
|
4501
|
|
BLOG
|
Thank you to everyone who joined us live!! In case you missed it, the recording is available here: https://www.youtube.com/live/bMP0mhF4KKI?feature=share Stay tuned for the next one! 🙌
... View more
06-27-2023
10:53 AM
|
2
|
0
|
550
|
|
POST
|
I'd also recommend looking at this Adjust marker placement in polygon symbols sample, specifically the initializeWebStyles function on line 271. This demonstrates how you can use esri/request to fetch the Web Style JSON, and use that to find the name and image for each symbol in the style. Hope this helps!
... View more
06-26-2023
08:56 AM
|
2
|
0
|
2003
|
|
POST
|
This might just be a layer publishing issue. If using ArcGIS Pro 3.1, make sure that "Use symbol types compatible with all clients" is not checked when publishing your layer. This will allow for multi-layer symbology. If that checkbox is checked, then the symbology gets downgraded, which could potentially be why you are just seeing the hatch fill and not the solid fill behind it. If this doesn't solve it, then I'd take Kristian's advice and reach out support. Thanks!
... View more
06-23-2023
02:06 PM
|
0
|
3
|
4537
|
|
POST
|
Hi @BryanMc - thanks for pointing this out! It does seem like a bug - we'll take a look for the upcoming release.
... View more
06-14-2023
10:58 AM
|
1
|
0
|
2332
|
|
BLOG
|
Join us on Tuesday, June 27th at 9am PDT for a livestream discussing the exciting new features added to version 4.27 of the ArcGIS Maps SDK for JavaScript. Learn about editing related records, new widgets, 3D enhancements, and more! This will be an informal setting for the JavaScript Maps SDK product team to demo new features and answer questions from the audience. We hope to see you there! Livestream link: https://www.youtube.com/watch?v=bMP0mhF4KKI RSVP on LinkedIn to receive updates and reminders as we get closer to the event!
... View more
06-12-2023
05:03 PM
|
6
|
3
|
1132
|
|
IDEA
|
This has been implemented for the upcoming June 2023 release of ArcGIS Online. Thanks for your feedback!
... View more
05-31-2023
03:55 PM
|
0
|
0
|
1362
|
|
POST
|
We've installed a fix for the upcoming 4.27 release (expected to go out in June). You can test out this fix in the development version of the API at https://js.arcgis.com/next Let us know if you are still running into any issues @LeoDeng !
... View more
05-15-2023
03:38 PM
|
1
|
1
|
7401
|
|
POST
|
You can use the filterFunction on PortalBasemapsSource to filter basemaps in the BasemapGallery. Starting at version 4.27 (planned release in June), you will be able to pass in an asynchronous filter function, allowing you to load the basemap before filtering, like this: const basemapGallery = new BasemapGallery({
view: view,
source: {
portal: "https://arcgis.com",
// async filterFunction supported starting at v4.27
filterFunction: async (item, index, basemaps) => {
let bool = true;
await item.load().then((loadedBasemap) => {
// filter out the Oceans basemap
if (loadedBasemap.title == "Oceans") {
bool = false;
}
})
return bool;
}
}
}); Here's an example using the development (/next) version of the API: https://codepen.io/annefitz/pen/VwEZNEP
... View more
05-12-2023
01:44 PM
|
0
|
0
|
1374
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 3 weeks ago | |
| 1 | 3 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
|