A Hidden Pocket of Historic Queenscliff Situated in a hidden pocket, resides this conveniently located home just moments from all that Queenscliff has to offer. Step inside and immediately fall in love with the light-filled sunroom, the perfect place to entertain guests all year round. The kitchen and meals quarter adjoin the living room, complemented by an incredible spiral staircase leading to the second storey. Completing the ground floor is an expansive bedroom/sitting room with a bathroom, separate WC, and built-in robes, along with a home office at the rear of the property. Upstairs is a second bedroom with its own ensuite, offering a private retreat for reading, watching TV, or simply enjoying the views. Both bedrooms are generously sized, allowing flexibility for multi-use and ensuring plenty of storage space. The two bathrooms, one on each level, are spacious and cleverly positioned. Outside, you'll find a carport that provides secure off-street parking for your vehicle, as well as a laundry and separate workshop at the rear. Fully fenced with a private courtyard ticks the final boxes for this remarkable home. A stone's throw from the steam train station, pier, beach, boat harbour, cafes, galleries, and shops, 10 Little Hesse Street is the perfect base from which to explore it all. Don't miss your chance to secure your slice of Queenscliff paradise. Features Air Conditioning Broadband Built In Robes Fully Fenced Gas Hot Water Service Split System Aircon Study Workshop 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_6a576ece558ba', { 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.26597627, 144.66254237], markerOptions); markerGroup.addLayer(marker); map.fitBounds(markerGroup.getBounds()); // Only set the default Zoom if there is only one marker map.setZoom(17);