Garden City, NY

Property Details

Garden City, NY

(Sold)

Description

5 Bedrooms, 4.5 bathrooms, 8,400 square foot lot size, 3,000+ Square feet of living space
A fully restored center hall colonial in the heart of Garden City. This house was once a 4 Bedroom 3.5 Bathroom house, and we transformed it into a 5 bedroom 4.5 bathroom house. Our goal was to keep the original beauty of this 1920’s home while putting on modern touches. We added an 800 Sq ft dormer to this property turning it into a 3,000+ square foot home.

Other Details

128 4th St in Garden City, our biggest project to date, and it is one that we were proud to be a part of. Our goal with this project was to do a full renovation but keep the home’s old charm. This 1920s home needed extensive renovation, and it was our biggest project to date. We kept the home’s old charm while making it look like a modern home. We were able to bring back the same hardwood floors that were originally laid down in the 1920s by sanding and refinishing them all. While this home looks brand new, it still has that old feel, which was the goal. This project has a special place in Legacy Home Development’s heart.

Inquire About This Property

function waitForPopupAndInitAutocomplete() { const observer = new MutationObserver(() => { const popup = document.querySelector('.pum-active'); // Adjust selector if needed if (popup) { console.log('✅ Popup opened:', popup); // Try finding the label const labels = Array.from(popup.querySelectorAll('label')); const targetLabel = labels.find(label => label.textContent.trim().toLowerCase().includes('property address') ); if (!targetLabel) { console.warn('❌ Label "Property Address" not found.'); return; } // Find the associated input using `for` attribute or proximity let addressInput = null; const forAttr = targetLabel.getAttribute('for'); if (forAttr) { addressInput = popup.querySelector(`#${forAttr}`); } else { addressInput = targetLabel.closest('div')?.querySelector('input'); } if (addressInput) { console.log('🏷️ Found input for label "Property Address":', addressInput); const autocomplete = new google.maps.places.Autocomplete(addressInput, { types: ['geocode'], componentRestrictions: { country: 'us' } }); console.log('📍 Google Places autocomplete initialized.'); observer.disconnect(); // Stop observing after success } else { console.warn('❌ Could not find associated input for "Property Address".'); } } }); observer.observe(document.body, { childList: true, subtree: true }); } waitForPopupAndInitAutocomplete();