Difficulty viewing street names in satellite view on the openlayers map with mapbox tilelayer. The font is smaller than it was in the google maps and seems to blend in to the map, making it tough to read.
comparison of satellite view on Google map Vs. Openlayers/mapbox map
I poked around in Mapbox’s website and found a “satellite streets” option that looks much better than what we’re currently using. We should see what it would take to move to this version for our satellite basemap.
See “Satellite Streets” here: Mapbox Satellite: global base map & satellite imagery
Interactive demo here: Mapbox Satellite Streets
Here is my code that I used to setup layers:
hybridLayer: new TileLayer({
source: new XYZ({
url:
"https://api.mapbox.com/styles/v1/mapbox/satellite-streets-v10/tiles/{z}/{x}/{y}?access_token=" +
mapBoxAccessKey,
}),
visible: false,
}),
satelliteLayer: new TileLayer({
source: new XYZ({
url:
"https://api.mapbox.com/v4/mapbox.satellite/{z}/{x}/{y}.png?access_token=" +
mapBoxAccessKey,
}),
visible: false,
}),