Frontage to Fairway This prime allotment offers the perfect canvas for your dream home, with a superior front-row seat to the rolling greens of Lonsdale Links. Imagine the convenience of direct access to the golf course – simply step out of your front door, hop in your buggy, and head straight to the first hole. Embrace the ultimate combination of tranquillity, convenience, and coastal luxury. Take a simple drive around this highly sought-after pocket of town to appreciate being surrounded by established high quality builds that add immense value and appeal to your future investment. Ready for immediate construction upon design approval, your dream home is impending reality. The generous 14m frontage by 32m depth (approx.) makes for an ideal base to design a home that takes full advantage of a prime west-facing orientation with a home bathed in northern sun. Beyond the Golf Course, a family-friendly coastal lifestyle is right at your fingertips. The Point Lonsdale Back Beach is just a short walk away, and a leisurely bike ride will take you to the Front Beach, Shopping Village, and Lighthouse. 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_6a576ed139b21', { 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.27980627, 144.60482369], markerOptions); markerGroup.addLayer(marker); map.fitBounds(markerGroup.getBounds()); // Only set the default Zoom if there is only one marker map.setZoom(17);