Modern Family Home Or Smart Investment Opportunity Discover comfortable modern living in one of Aberglasslyn’s premier streets. With a thoughtful layout, this home blends style, practicality, and convenience — An excellent choice for families, newcomers to the market, or investors seeking a reliable return. Step inside to a functional and inviting layout featuring open-plan living and dining, a modern kitchen, and split-system air conditioning in both the lounge and bedroom to keep you comfortable all year round. Property features: - 3 spacious bedrooms, all with built-in robes - Modern kitchen with stainless steel appliances, stone benchtops and generous storage - Open-plan living and dining area that easily flows to the outdoors - Bathroom with separate bath, shower and separate toilet - Single lock-up garage with remote entry and direct entry into the home Set within a vibrant and fast-growing community, this property is conveniently located close to Aberglasslyn Shopping Village, Maitland Hospital, and provides straightforward access to the Hunter Expressway. Whether you're securing your first home or adding to your investment portfolio, this property offers low-maintenance living, modern appeal, and strong rental potential. Currently rented at $550 per week Council Rates: Approx $530 p/q Water Rates: Approx $260 p/q Disclaimer: We have been furnished with the above information; however, Linder Group gives no guarantees or undertakings concerning the accuracy, completeness or up-to-date nature of the information provided. All interested parties are responsible for their own independent enquiries in order to determine whether this information is in fact accurate. Features Built In Robes 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_6a5ed63ea9903', { 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: #ed3237; 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([-32.69150650, 151.53671810], markerOptions); markerGroup.addLayer(marker); map.fitBounds(markerGroup.getBounds()); // Only set the default Zoom if there is only one marker map.setZoom(17);