Your stay with your family or partner in a lodge in Lozère: it’s like being on safari!

 

The lodges at Le Pré Morjal campsite offer a unique experience combining the charm of camping with the comfort of modern accommodation. Designed for vacationers looking for a stay in the heart of nature, they allow you to fully enjoy Lozère while benefiting from ready-to-live-in, spacious, and functional accommodation.

Located in Ispagnac, at the entrance to the Gorges du Tarn and at the gateway to the Cévennes National Park, the lodges blend into a preserved natural environment. They are the ideal solution for a lodge vacation combining a change of scenery, peace and quiet, and comfort within a 3-star campground.

Your lodge stay

/* --- TIMELINE (5s total au lieu de 4s) --- 0–20% : dessin du cercle 20–35% : apparition des rayons 35–80% : rotation (plus lente) 80–100% : disparition douce (reset) */ /* CERCLE */ #sun-circle { stroke-dasharray: 100; animation: circleDraw 5s ease-in-out infinite; } @keyframes circleDraw { 0% { stroke-dashoffset: 100; opacity: 1; } 20% { stroke-dashoffset: 0; opacity: 1; } 80% { stroke-dashoffset: 0; opacity: 1; } 100% { stroke-dashoffset: 100; opacity: 0; } } /* RAYONS */ .ray { transform-origin: 20px 20px; animation: raysAnim 5s ease-in-out infinite; } @keyframes raysAnim { 0% { opacity: 0; transform: scale(0.9); } 20% { opacity: 0; transform: scale(0.9); } 35% { opacity: 1; transform: scale(1); } 80% { opacity: 1; transform: scale(1); } 100% { opacity: 0; transform: scale(0.9); } } /* ROTATION LENTE & FLUIDE */ #sun { transform-origin: 20px 20px; animation: spin 5s linear infinite; } @keyframes spin { 0% { transform: rotate(0deg); } 35% { transform: rotate(0deg); } 80% { transform: rotate(150deg); } /* rotation plus lente */ 100% { transform: rotate(360deg); } /* reset à la fin */ }

People per lodge

separate bedrooms

type: Glamping and Premium

Lodge at Le Pré Morjal campsite in Ispagnac, Lozère
Lodge area on the campground with access to the outdoor pool
Interior of a lodge with bedroom, storage space, and kitchen for a camping trip in Ispagnac

Lodge

Lodge rental: the glamping experience in the heart of Lozère

Designed to accommodate up to 5 people, the campsite’s luxury lodges are perfect for sports enthusiasts and nature lovers. They feature two separate bedrooms, a comfortable living room, and an outdoor terrace, ideal for sharing meals or enjoying summer evenings.

The lodges‘ “modern safari” style creates a warm and exotic atmosphere, while retaining practical amenities for a comfortable stay. These accommodations are an ideal alternative to mobile homes or chalets for those looking for a lodge on a campsite, close to nature.

Bathroom in the lodge, accommodation at the 3-star Le Pré Morjal campsite
Comfortable room in the premium lodge at Le Pré Morjal campsite
Water point and kitchen area of a lodge, camping accommodation in Ispagnac
Lodge with terrace for rent in Ispagnac, Lozère
Bathroom in the lodge, accommodation at the 3-star Le Pré Morjal campsite
Lodge with terrace for rent in Ispagnac, Lozère
Comfortable room in the premium lodge at Le Pré Morjal campsite
Water point and kitchen area of a lodge, camping accommodation in Ispagnac

Book your lodge for 4 or 5 people

Comfort, amenities, and services included for your stay

The lodges at Le Pré Morjal campsite are designed to offer the perfect balance between independence, simplicity, and comfort in a preserved natural setting. The private terrace plays a central role in the lodge experience: it becomes an additional living space, ideal for outdoor meals, relaxation, or summer evenings in the shade and tranquility.

In addition to accommodation, staying in a lodge gives you access to all the campsite‘s facilities and services, designed to make your vacation easier and more enjoyable:

 

  • Heated outdoor pool, perfect for cooling off in summer
  • Free-access recreational areas: playground, ping-pong table, bocce court
  • Indoor playroom for children and adults
  • Les Cayrelles restaurant and pizzeria, popular for its pizzas and friendly atmosphere
  • Heated sanitary facilities, regularly maintained
  • Free Wi-Fi
  • Family activities and shared meals offered during the season

Book your Glamping or Premium Lodge

/* --- TIMELINE (5s total au lieu de 4s) --- 0–20% : dessin du cercle 20–35% : apparition des rayons 35–80% : rotation (plus lente) 80–100% : disparition douce (reset) */ /* CERCLE */ #sun-circle { stroke-dasharray: 100; animation: circleDraw 5s ease-in-out infinite; } @keyframes circleDraw { 0% { stroke-dashoffset: 100; opacity: 1; } 20% { stroke-dashoffset: 0; opacity: 1; } 80% { stroke-dashoffset: 0; opacity: 1; } 100% { stroke-dashoffset: 100; opacity: 0; } } /* RAYONS */ .ray { transform-origin: 20px 20px; animation: raysAnim 5s ease-in-out infinite; } @keyframes raysAnim { 0% { opacity: 0; transform: scale(0.9); } 20% { opacity: 0; transform: scale(0.9); } 35% { opacity: 1; transform: scale(1); } 80% { opacity: 1; transform: scale(1); } 100% { opacity: 0; transform: scale(0.9); } } /* ROTATION LENTE & FLUIDE */ #sun { transform-origin: 20px 20px; animation: spin 5s linear infinite; } @keyframes spin { 0% { transform: rotate(0deg); } 35% { transform: rotate(0deg); } 80% { transform: rotate(150deg); } /* rotation plus lente */ 100% { transform: rotate(360deg); } /* reset à la fin */ }
#tent-container{ width: 100%; max-width: 900px; /* ton format desktop */ height: 600px; margin: 0 auto; position: relative; overflow: hidden; } #tent-container canvas{ display:block; width:100% !important; height:100% !important; } @media (max-width: 600px){ #tent-container{ height: 360px; } } (function () { const container = document.getElementById("tent-container"); if (!container || !window.THREE) return; const scene = new THREE.Scene(); const camera = new THREE.PerspectiveCamera(45, 1, 0.1, 2000); const renderer = new THREE.WebGLRenderer({ antialias: true, alpha: true }); renderer.setPixelRatio(Math.min(window.devicePixelRatio || 1, 2)); container.appendChild(renderer.domElement); /* ---------- STYLE ---------- */ const lineColor = 0x7C2C4F; const THICKNESS = 0.01; const thickMat = new THREE.MeshBasicMaterial({ color: lineColor }); const up = new THREE.Vector3(0, 1, 0); /* ---------- GROUPE ---------- */ const group = new THREE.Group(); scene.add(group); group.scale.set(1, 1, 1); group.position.y = 1; /* ---------- OUTILS : TRAITS ÉPAIS ---------- */ function addThickSegment(a, b, radius = THICKNESS) { const dir = new THREE.Vector3().subVectors(b, a); const len = dir.length(); if (len < 1e-6) return; const mid = new THREE.Vector3().addVectors(a, b).multiplyScalar(0.5); const geom = new THREE.CylinderGeometry(radius, radius, len, 10, 1, true); const mesh = new THREE.Mesh(geom, thickMat); mesh.quaternion.setFromUnitVectors(up, dir.normalize()); mesh.position.copy(mid); group.add(mesh); } function addSegmentsFromPairs(pointsPairs) { for (let i = 0; i base de C1) ---------- */ { const z = zFront + 0.001; const top = new THREE.Vector3(0, apexY, z); const bottom = new THREE.Vector3(0, cubeCenterY - cubeHeight / 2, z); addThickSegment(top, bottom); } /* ---------- TRIANGLE AU SOL ---------- */ { const hw = tentWidth / 2; const hd = DEPTH / 2; const cubeBottomY = cubeCenterY - cubeHeight / 2; const GROUND_TRI_W = 1.3; const GROUND_TRI_D = 0.75; const P0 = new THREE.Vector3(hw, cubeBottomY, hd); const P1 = new THREE.Vector3(hw - GROUND_TRI_W, cubeBottomY, hd); const P2 = new THREE.Vector3(hw, cubeBottomY, hd + GROUND_TRI_D); addSegmentsFromPairs([ P1, P2, P2, P0 ]); } /* ---------- petits traits côté gauche ---------- */ { const hw = tentWidth / 2; const hd = DEPTH / 2; const cubeBottomY = cubeCenterY - cubeHeight / 2; const xEdge = -hw; const STROKES_COUNT = 6; const MARGIN_Z = 0.18; const STROKE_DX = 0.20; const STROKE_DY = 0.55; const zStart = -hd + MARGIN_Z; const zEnd = hd - MARGIN_Z; for (let i = 0; i < STROKES_COUNT; i++) { const t = (STROKES_COUNT === 1) ? 0.5 : i / (STROKES_COUNT - 1); const z = zStart + (zEnd - zStart) * t; const p0 = new THREE.Vector3(xEdge, cubeBottomY, z); const p1 = new THREE.Vector3(xEdge - STROKE_DX, cubeBottomY + STROKE_DY, z); addThickSegment(p0, p1); } } /* ---------- petits traits côté droit ---------- */ { const hw = tentWidth / 2; const hd = DEPTH / 2; const cubeBottomY = cubeCenterY - cubeHeight / 2; const xEdge = hw; const STROKES_COUNT = 6; const MARGIN_Z = 0.18; const STROKE_DX = 0.20; const STROKE_DY = 0.55; const zStart = -hd + MARGIN_Z; const zEnd = hd - MARGIN_Z; for (let i = 0; i plus grand visuellement } const ro = new ResizeObserver(resize); ro.observe(container); resize(); /* ---------- ANIMATION ---------- */ function animate() { requestAnimationFrame(animate); group.rotation.y += 0.01; // caméra stable + fit camera.position.set(orbitRadius * 0.72, orbitRadius * 0.32, orbitRadius * 0.95); camera.lookAt(target); renderer.render(scene, camera); } animate(); })();

Lozère

Why rent a lodge at Le Pré Morjal campground?

When you choose to rent a lodge at Camping Le Pré Morjal, you are opting for accommodation that combines:

  • the pleasure of a stay surrounded by nature,
  • the comfort of a premium lodge,
  • the friendly atmosphere of a family campsite in Lozère,
  • A prime location for exploring the Gorges du Tarn, the Cévennes, hiking trails, rivers, and traditional villages.

The lodges are particularly appealing to vacationers looking for an authentic and relaxing glamping experience, while enjoying the facilities and services of a 3-star campground in Ispagnac.

Our restaurant/pizzeria

/* --- TIMELINE (5s total au lieu de 4s) --- 0–20% : dessin du cercle 20–35% : apparition des rayons 35–80% : rotation (plus lente) 80–100% : disparition douce (reset) */ /* CERCLE */ #sun-circle { stroke-dasharray: 100; animation: circleDraw 5s ease-in-out infinite; } @keyframes circleDraw { 0% { stroke-dashoffset: 100; opacity: 1; } 20% { stroke-dashoffset: 0; opacity: 1; } 80% { stroke-dashoffset: 0; opacity: 1; } 100% { stroke-dashoffset: 100; opacity: 0; } } /* RAYONS */ .ray { transform-origin: 20px 20px; animation: raysAnim 5s ease-in-out infinite; } @keyframes raysAnim { 0% { opacity: 0; transform: scale(0.9); } 20% { opacity: 0; transform: scale(0.9); } 35% { opacity: 1; transform: scale(1); } 80% { opacity: 1; transform: scale(1); } 100% { opacity: 0; transform: scale(0.9); } } /* ROTATION LENTE & FLUIDE */ #sun { transform-origin: 20px 20px; animation: spin 5s linear infinite; } @keyframes spin { 0% { transform: rotate(0deg); } 35% { transform: rotate(0deg); } 80% { transform: rotate(150deg); } /* rotation plus lente */ 100% { transform: rotate(360deg); } /* reset à la fin */ }
Family on the terrace of their lodge at Le Pré Morjal campground in Ispagnac

Map

Find your accommodation using the campsite map

Map of the 3-star Pré Morjal campsite in Ispagnac

Choosing the right lodge for your vacation in Ispagnac

Les lodges disposent-ils d’une cuisine équipée ?

Oui, les lodges du Camping Le Pré Morjal disposent d’un coin cuisine fonctionnel comprenant l’essentiel pour préparer les repas sur place : espace cuisine, équipements pratiques et point d’eau froide (pour les lodges standards, et eau chaude pour les Premium).

Lodge that can accommodate 5 people at Le Pré Morjal campground

Peut-on louer du linge de lit ou des serviettes pour un séjour en lodge ?

Oui, le camping Le Pré Morjal propose des options de location de linge pour les séjours en lodge. Vous pouvez ainsi louer le linge de lit et les serviettes, afin de voyager plus léger et de profiter pleinement de vos vacances en toute sérénité.

Entrance to a lodge at Le Pré Morjal campsite in Ispagnac, Lozère

Les animaux sont-ils acceptés dans les lodges ?

Oui, les animaux de compagnie sont acceptés au camping Le Pré Morjal, y compris dans les lodges, à condition qu’ils soient parfaitement maîtrisés et ne déambulent pas librement dans le camping.

All lodges available at Le Pré Morjal campground near the Gorges du Tarn