‘Abaleen’ Positioned within Queenscliff’s most desirable precinct, ‘Abaleen’ is a beautiful double-fronted Victorian home just a short stroll from shops, cafes, and the stunning coastline. Features you will love: Original heritage details including soaring ceilings, ornate cornices, archways, and cast-iron fireplaces. Three generous bedrooms, central bathroom, and additional separate WC. Light-filled extension comprising an open-plan kitchen, dining, and living area with prime sunlit aspect. Modern kitchen with quality appliances and concealed European laundry. Reverse cycle air conditioning and gas heating for year-round comfort. Sunny north-facing deck with undercover BBQ area – ideal for outdoor entertaining. Secure off-street parking for two vehicles, accessed via rear laneway. Peaceful garden surrounds. This charming home offers an ideal lifestyle for retirees seeking independent living without compromise, as a few flat steps will bring you to the vibrant Hesse Street shopping precinct, renowned for its cafes, restaurants, and boutiques. The Queenscliff Ferry Terminal, beautiful beaches, parks, and coastal trails are also nearby. Features Air Conditioning Broadband Courtyard Deck Dishwasher Floorboards Fully Fenced Gas Heating Gas Hot Water Service Open Fire Place Outdoor Entertaining Reverse Cycle Aircon Secure Parking Shed 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_6a576edae3d74', { 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.26614830, 144.65853120], markerOptions); markerGroup.addLayer(marker); map.fitBounds(markerGroup.getBounds()); // Only set the default Zoom if there is only one marker map.setZoom(17);