Swan Waters - Titled Land, Ready To Build On Located in a prime position on the stunning Bellarine Peninsula, Lot 6 provides a 503m2 blank canvas within such a picturesque location, you can be assured of a tranquil and peaceful lifestyle that is unmatched anywhere else. Offering a perfect opportunity for those who want to build their dream home or investment property on the coast. Whether you want a bespoke family home, a modern architectural masterpiece, or a charming coastal retreat, these allotments are the perfect starting point. Wake up every day to gentle sounds of the water and the stunning sight of the sunrise over the bay. You'll never tire of the breathtaking views that these allotments offer, and you'll be the envy of all your friends and family. Watch as the Q Train passes by, walk to the end of Murray Road to the local dog beach or take a short drive into the heart of Queenscliff or Point Lonsdale, this extraordinary location is a serene seaside dream waiting for you to enjoy. 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_6a576ec429cb7', { 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.26678384, 144.62384220], markerOptions); markerGroup.addLayer(marker); map.fitBounds(markerGroup.getBounds()); // Only set the default Zoom if there is only one marker map.setZoom(17);