Golf Course Living with Everyday Convenience Freshly updated and perfectly positioned, this solid 3 bedroom home offers an ideal opportunity for first home buyers, downsizers, or savvy investors looking to secure a quality property in one of Gatton’s most convenient pockets. • Three bedrooms — comfortable, light filled spaces ideal for families or guests • One bathroom with a separate toilet for added practicality • Kitchen/dining combo — functional and welcoming, perfect for everyday meals • Spacious lounge room — a great central hub for relaxing or entertaining • Dedicated laundry with easy outdoor access • Outdoor entertaining area — enjoy alfresco dining or weekend BBQs • Fresh interior updates — new floor coverings and fresh paint throughout • North facing golf course views — backing directly onto the Gatton Jubilee Golf Course • Rear access • Minutes from schools, shops, medical services — everything you need close at hand This home delivers the rare combination of peaceful golf course living and walkable convenience. Step out your back door to uninterrupted views across the fairways, enjoy morning walks, or simply relax in a quiet, leafy setting. All while being just moments from: • Local schools • Gatton’s shopping precinct • Doctors and essential services • Parks, sporting facilities, and community amenities A solid, low maintenance home with modern updates, a functional layout, and a standout location. Whether you’re entering the market or expanding your investment portfolio, this property offers strong long term appeal and excellent lifestyle value. 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_6a5e4daa42cdd', { 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: #1e2318; 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([-27.56050510, 152.29034070], markerOptions); markerGroup.addLayer(marker); map.fitBounds(markerGroup.getBounds()); // Only set the default Zoom if there is only one marker map.setZoom(17);