Mid-Century Charm with Stunning Water Views Situated on an elevated corner allotment with panoramic views of Swan Bay, this meticulously maintained mid-century dwelling offers a beautiful bay frontage lifestyle, with seemingly endless potential. The classic home is superbly presented and provides the comfort required to enjoy the stunning views as a permanent or holiday abode. Accommodation includes three large bedrooms (two with water views) and convenient access to a central bathroom and additional WC. The functional kitchen overlooks the sun-filled dining and living areas with high ceilings and picture windows. Outside, the generous and very versatile corner allotment includes a garage, workshop and sun catching garden. Steps from the water’s edge, a scenic stroll along Swan Bay to Queenscliff Harbour and a short walk to the shops, Santa Casa beach, plus the cafes, art galleries and restaurants of Hesse Street. Enormous future development potential to renovate, extend or build multiple dwellings (S.T.C.A) with breath taking forever Swan Bay views. Features Balcony Built In Robes Courtyard Dishwasher Gas Heating Gas Hot Water Service Outdoor Entertaining Reverse Cycle Aircon Secure Parking Shed Split System Aircon 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_6a576ed03c714', { 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.26999550, 144.65640100], markerOptions); markerGroup.addLayer(marker); map.fitBounds(markerGroup.getBounds()); // Only set the default Zoom if there is only one marker map.setZoom(17);