Select to view content in your preferred language

While trying to add a layer on top of basemap the basemap labels are appearing on top of the custom layer.

189
1
a month ago
Raneemtest
New Contributor

The client is trying to cover a specific area of the basemap with a customized shapefile and customized labels. The code works fine on the website, and the area is covered as expected. However, when he tries to run the code on an iOS or Android device, the labels overlap, and the basemap labels appear on top. Do you have any sample code that you can share with me to test it with the client?

Tags (3)
0 Kudos
1 Reply
Ting
by Esri Contributor
Esri Contributor

Hi Raneem, see the attached project as a starting point. Please note that you'll need an ArcGIS Developers API key to run the app.

The observed behavior is expected. For the light gray basemap style, the light gray base layer tiles are in the basemap's baselayers array, while the labels are in the reference layers array. All the operational layers are inserted between the base layers and the reference layers, thus the labels in the reference layer is shown above the feature layer.

I'm currently asking our internal teams who created the content for basemap styles about why the labels are in a reference layer. Meanwhile, there are 3 possible solutions

- If the client can use the topographic basemap style, it has the labels in the base layer, so it will be covered by a feature layer (from shapefile)

- Or the client can create the basemap object themselves, i.e., 

 

let baseLayer = AGSArcGISVectorTiledLayer(url: URL(string: "https://basemaps-api.arcgis.com/arcgis/rest/services/styles/ArcGIS:LightGray:Base")!)
let labelsLayer = AGSArcGISVectorTiledLayer(url: URL(string: "https://basemaps-api.arcgis.com/arcgis/rest/services/styles/ArcGIS:LightGray:Labels")!)
let basemap = AGSBasemap(baseLayers: [baseLayer, labelsLayer], referenceLayers: nil)
map.basemap = basemap

 

 so they can control the order of the layers of the basemap more easily.

- Or they can manually move all the reference layers of a basemap into the base layers, such as

map.load { [weak self] error in
    guard let self else { return }
    let basemap = map.basemap
    for referenceLayer in basemap.referenceLayers {
        basemap.referenceLayers.remove(referenceLayer)
        basemap.baseLayers.add(referenceLayer)
    }
}

Please let me know if the client has follow up questions, or encourage them to ask on our forum directly! 🙂

0 Kudos