New Carpet / Paint - Boutique Local Builder with an Eye for Detail A comfortable home, this single storey floor plan provides a range of creature comforts in a modern setting, only 100m from the local primary schools, new village cinema, infamous Peaches and 1km from the township of Torquay. What YOU'LL LOVE: - Quality inclusions with precision craftsmanship - A well rounded floor plan with an edgy, ultra-modern feel - 3 bedrooms all with BIR's (master with ensuite) - Split system heating/cooling - New carpet and painted t/out - Single lock up garage, plenty of storage - Professionally landscaped allotment; there's nothing left to do except to move in and enjoy What the VENDOR LOVES: "Riding our bikes for a coffee and dropping into the local shops. We love being in a court with a close knit community of families and retirees like us, there is always someone to have a chat with." Features Built In Robes Courtyard Dishwasher Fully Fenced Remote Garage Split System Aircon Location +− Leaflet .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_6a59ac1bef1b7', { 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: #00437c; 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.32118930, 144.31334080], markerOptions); markerGroup.addLayer(marker); map.fitBounds(markerGroup.getBounds()); // Only set the default Zoom if there is only one marker map.setZoom(17);