Hi, i'm trying to add some symbols(picture/simple marker) on the map and wants to make their opacity=1.
For some reason the Basemap elements (roads and buildings) shows behind those symbols.
I've tried some solutions like:
graphicsLayer.opacity = 1;
but still the same problem.
Its happens only when i'm using a PortalItem as my basemap:
let portalItem = new PortalItem({
id: "4f2e99ba65e34bb8af49733d9778fb8e",
});
let basemap = new Basemap({
portalItem: portalItem,
});
var map = new Map({
basemap: basemap,
});Is anyone can help me with that?
Also If there's any other correct way to use that basemap i'd like to know.
thanks.