Amongst the Moonahs Enveloped by the untamed beauty of Moonah trees, just a short stroll from the rolling greens of Lonsdale Links and the crashing waves at the Back Beach, this striking O’Dowd residence delivers a refined take on low-maintenance coastal living. Finished with a robust palette to stand the test of time, it blends effortlessly into its natural surroundings while offering lasting durability in a seaside setting. Inside, a warm, textural interior unfolds with polished concrete floors underfoot, leading to a sunlit open plan living, dining, and kitchen zone. Windows frame the outdoors and draw in natural light, while large sliding doors open to a north-facing deck, perfectly oriented for enjoying the afternoon sun. Accommodation includes three generous bedrooms, with the master suite privately positioned on the ground floor and complete with its own ensuite. Upstairs, two additional bedrooms are serviced by a central bathroom. Each bedroom is fitted with built-in robes, ceiling fans, and hydronic heating, while both bathrooms are finished with floor-to-ceiling tiles and walk-in showers. A solar system ensures reduced electricity costs and a lower carbon footprint, whilst a secure garage provides convenient off-street parking and additional storage, enhancing the home’s practical appeal, and allowing you to enjoy a lifestyle defined by location. This is a home that places the best of Point Lonsdale at your doorstep. Note: Images have been virtually staged. Furniture shown does not exist at the property. Features Air Conditioning Broadband Built In Robes Deck Dishwasher Fully Fenced Gas Hot Water Service Hydronic Heating Outdoor Entertaining Remote Garage Reverse Cycle Aircon Secure Parking Solar Panels Split System Aircon Water Tank 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_6a58c07d7fc79', { 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.28398920, 144.60459940], markerOptions); markerGroup.addLayer(marker); map.fitBounds(markerGroup.getBounds()); // Only set the default Zoom if there is only one marker map.setZoom(17);