Step Back in Time Step back in time and embrace the effortless charm of this quintessential 1970s beach shack full of personality. An eclectic fibro retreat where colourful wallpaper, classic lino flooring, and nostalgic retro touches set the scene for relaxed coastal living in the heart of Point Lonsdale. Positioned to face true north, the home’s simple yet functional layout is bathed in natural light, and the bones provide the ideal foundation for a stylish renovation or inspired rebuild (S.T.C.A). Three bedrooms, a bathroom and an open plan living, dining and kitchen zone, all boxes ticked. The heart of the home enjoys all-day glow while the generous rear yard presents a blank canvas for creating your dream outdoor sanctuary tailored to suit your lifestyle, be it lush landscaping, an alfresco deck, or the perfect summer hangout. Located in an unbeatable central position just moments to the Front Beach, promenade, shopping village, and everything that defines Point Lonsdale’s laid-back lifestyle, this nostalgic beachsider is ready for its next chapter. Features Built In Robes 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_6a576ee897166', { 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.27741270, 144.61127730], markerOptions); markerGroup.addLayer(marker); map.fitBounds(markerGroup.getBounds()); // Only set the default Zoom if there is only one marker map.setZoom(17);