Charming Seaside Abode This idyllic beachside dwelling is in a prime position located just 350m from the pristine waters of Point Lonsdale’s Springs Beach and a short stroll to the heart of the shopping village. Situated on a generous 634m2 (approx.) parcel of land, this hidden gem offers a rare chance to renovate, extend or redevelop (S.T.C.A). Step inside and feel the warmth of classic 1960’s style with beautifully preserved rich hardwood floorboards, clean lines and a timeless mid-century aesthetic. This inviting home blends retro character with everyday comfort, offering light-filled spaces, generous proportions and a relaxed coastal feel. The home provides comfortable accommodation with three well-sized bedrooms and a fully appointed bathroom with WC, as well as a second WC off the laundry area for the ultimate convenience. The dining and living areas are surrounded by large windows inviting ample northern light and a delightful garden aspect, all to be enjoyed whilst unwinding at the end of a busy day or entertaining with friends and family over the holiday season. At the rear of the property, a sprawling back yard stretches out with endless possibilities – the perfect setting for kids to play, weekend barbeques or simply enjoying the outdoors. With its generous proportions and excellent access on both sides, this space also offers exciting potential for renovators, builders or those wanting room to grow. Whether you’re unwinding indoors or enjoying the expansive garden areas, you will experience the ultimate lifestyle in a coveted pocket of Point Lonsdale. Features Built In Robes Floorboards Outdoor Entertaining Split System Aircon Split System Heating Location .leaflet-pane, .leaflet-map-pane { z-index: 40; } .leaflet-top, .leaflet-bottom { z-index: 80; } // The default zoom control location is top-left, but the legacy React component had it top-right // There is no simple way to 'move' the default zoom control here, so initilizing map without it // and then adding new controls to top-right var map = L.map('map_6a576eddcbb59', { zoomControl: false }); map.addControl( L.control.zoom({position: 'topright'}) ) map.scrollWheelZoom.disable(); // Stadiamaps as the provider L.tileLayer('https://tiles.stadiamaps.com/tiles/alidade_smooth/{z}/{x}/{y}{r}.png', { maxZoom: 20, }).addTo(map); // Create a feature group to hold the markers var markerGroup = new L.FeatureGroup(); map.addLayer(markerGroup); // Custom icon that matches legacy React component and allows for colouring const markerHtmlStyles = `background-color: #fdb813; width: 3rem; height: 3rem; display: block; left: -1.5rem; top: -1.5rem; position: relative; border-radius: 3rem 3rem 0; transform: rotate(45deg); border: 1px solid #FFFFFF`; const icon = L.divIcon({ className: "my-custom-pin", iconAnchor: [0, 24], labelAnchor: [-6, 0], popupAnchor: [0, -36], html: `<span style="${markerHtmlStyles}" />` }); // add the markers var markerOptions = { icon: icon } var marker = L.marker([-38.27485545, 144.61781050], markerOptions); markerGroup.addLayer(marker); map.fitBounds(markerGroup.getBounds()); // Only set the default Zoom if there is only one marker map.setZoom(17);