I've been working with Mapbox GL JS and working with adding data layers over the base map. For some reason, I keep getting a 404 error on a requested tile even though the data overlay shows up as expected. I've checked and double checked to make sure that I got the source id and source layer references correct, using this as a reference point.
This is the snippet I'm having issues with.
map.addSource('neighborhoods', {
type: 'vector',
url: 'mapbox://shortdiv.cj4u72j500fu72qplj0xcusp3-738n8'
})
map.addLayer({
'id': 'neighborhood-bounds',
'source': 'neighborhoods',
'source-layer': 'chicago_neighborhoods',
'type': 'line',
'paint': {
"line-color": "#ad0403",
"line-width": 2
}
});