Museums

Historic Trading Post C.F.A.O. Compagnie Française de L'Afrique Occidentale

8JM8+9CH, Albadarr, Gambia
🇬🇲 The Gambia
13.3334393, -16.3838964
Back to Museums list
Radius:
Sort:
2 hotels within 20 km

Location & Nearby Hotels

Location
Hotels

Hotels Near Historic Trading Post C.F.A.O. Compagnie Française de L'Afrique Occidentale

Las cabañas del Nota
9.8 km

Las cabañas del Nota

Bintang — Foni Berefet
Situated in Brefet, Las cabañas del Nota offers a barbecue and sun terrace. Free private parking is available on site. Bed linen is available. Guests can enjoy the on-site bar and restaurant. Banjul Airport is 31 km from the property.
From 90 EUR
Booking
AbCa's Creek Lodge
20 km

AbCa's Creek Lodge

Banjul — Vanaf Brikama Volgt u Mandinaba-Road Tot Killy.
Offering a restaurant, AbCa's Creek Lodge is located in the inlands about 85 km from the coast. The accommodation will provide you with a balcony. Private bathroom also comes with a shower. You can enjoy river view and garden view from the room.
From 29 EUR
Booking
// Back to top window.addEventListener('scroll', function () { document.getElementById('backToTop').style.display = window.scrollY > 300 ? 'flex' : 'none'; }); // ============================ // MAP INITIALIZATION // ============================ const placeLat = 13.3334393; const placeLng = -16.3838964; const placeName = "Historic Trading Post C.F.A.O. Compagnie Fran\u00c3\u00a7aise de L'Afrique Occidentale"; const placeAddress = "8JM8+9CH, Albadarr, Gambia"; const catIcon = 'fa-museum'; const hotels = [{"name":"Las caba\u00c3\u00b1as del Nota","city":"Bintang","lat":13.245081,"lng":-16.388746,"distance":9.8,"class":0,"minrate":90,"currency":"EUR","photo":"http:\/\/aff.bstatic.com\/images\/hotel\/max500\/663\/66382037.jpg","url":"http:\/\/www.booking.com\/hotel\/gm\/las-cabanas-del-nota.html"},{"name":"AbCa's Creek Lodge","city":"Banjul","lat":13.235304,"lng":-16.229187,"distance":20,"class":0,"minrate":29,"currency":"EUR","photo":"http:\/\/aff.bstatic.com\/images\/hotel\/max500\/393\/39339847.jpg","url":"http:\/\/www.booking.com\/hotel\/gm\/abca-39-s-creek-lodge.html"}]; const map = L.map('placeMap').setView([placeLat, placeLng], 13); L.tileLayer('https://{s}.basemaps.cartocdn.com/rastertiles/voyager/{z}/{x}/{y}{r}.png', { attribution: '© OSM © CARTO', maxZoom: 19 }).addTo(map); // Place marker (red, larger) const placeIcon = L.divIcon({ className: 'place-marker', html: `
`, iconSize: [38, 38], iconAnchor: [19, 19], popupAnchor: [0, -22] }); L.marker([placeLat, placeLng], { icon: placeIcon, zIndexOffset: 1000 }) .addTo(map) .bindPopup(`

${placeName}

${placeAddress}

`) .openPopup(); // Hotel markers (blue, smaller) const hotelIcon = L.divIcon({ className: 'hotel-marker', html: '
', iconSize: [26, 26], iconAnchor: [13, 13], popupAnchor: [0, -16] }); const bounds = L.latLngBounds([[placeLat, placeLng]]); hotels.forEach(h => { if (isNaN(h.lat) || isNaN(h.lng) || h.lat === 0 || h.lng === 0) return; const stars = h.class >= 1 && h.class <= 5 ? '⭐'.repeat(h.class) : ''; const price = h.minrate > 0 ? `
From ${h.minrate} ${h.currency}
` : ''; const photo = h.photo ? `` : ''; L.marker([h.lat, h.lng], { icon: hotelIcon }) .addTo(map) .bindPopup(`
${photo}

${h.name}

${stars ? `
${stars}
` : ''}
${h.distance} km away
${price} ${h.url ? `View on Booking →` : ''}
`); bounds.extend([h.lat, h.lng]); }); // Fit bounds if (hotels.length > 0) { map.fitBounds(bounds, { padding: [40, 40], maxZoom: 14 }); }