`;
marker.bindPopup(popupContent);
}
});
// Adjust map view to fit all markers
var bounds = new L.LatLngBounds(resorts.map(function (resort) {
return [resort.lat, resort.lng];
}));
map.fitBounds(bounds);
// Revert the icon back to the map icon
$('#map-view-tab i').removeClass('spinner-border spinner-border-sm').addClass('bi bi-map');
} else {
console.log("No resorts found or error in response.");
// Revert the icon back to the map icon even in case of error
$('#map-view-tab i').removeClass('spinner-border spinner-border-sm').addClass('bi bi-map');
}
},
error: function () {
console.log("Error loading resorts.");
// Revert the icon back to the map icon in case of an error
$('#map-view-tab i').removeClass('spinner-border spinner-border-sm').addClass('bi bi-map');
}
});
}
}
});
});