You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
attribution: 'Map tiles by <a href="http://stamen.com">Stamen Design</a>, under <a href="http://creativecommons.org/licenses/by/3.0">CC BY 3.0</a>. Data by <a href="http://openstreetmap.org">OpenStreetMap</a>, under <a href="http://www.openstreetmap.org/copyright">ODbL</a>.',
127
+
minZoom: 1,
128
+
maxZoom: 16
129
+
});
130
+
131
+
// Handle tile loading errors with fallbacks
132
+
var fallbackTriggered = false;
133
+
tileLayer.on('tileerror', function(e) {
134
+
if (!fallbackTriggered) {
135
+
fallbackTriggered = true;
136
+
console.warn('Stamen tiles unavailable, using alternative watercolor-style tiles');
137
+
map.removeLayer(tileLayer);
138
+
139
+
// Fallback: Use CartoDB Positron (clean alternative)
0 commit comments