픽업 & 배달 가능 일정
Contact WaveMAX Laundry
연락하기

질문이 있으신가요?
도와드리겠습니다

위치를 찾으시거나 프랜차이즈 사업 소유권을 알아보시는 경우, 저희 팀이 준비되어 있습니다.

매일 오전 7시부터 오후 10시까지
전국 75개 이상 지점
#1 세탁소 프랜차이즈
어떻게 도와드릴까요?

연락 웨이브맥스

찾으시는 것을 선택하시면 적합한 자료를 연결해 드립니다.

가장 가까운 WaveMAX 지점을 찾아드리거나, 아래 도시에 또는 우편번호를 입력하세요.

또는
1
2
3
4
5
투자 가능한 현금

당사의 최소 유동성 요건은 $500k입니다.

순자산

당사의 최소 순자산 요건은 $1M입니다.

관심도

어느 단계에 있는지 말씀해 주세요.

저희에 대해 어떻게 알게 되셨나요?

WaveMAX를 어떻게 알게 되셨는지 알려주시면 정말 기쁩니다!

' : ''; card.innerHTML = '
📍
' +'
' +'
'+loc.n+'
' +'
'+loc.a+'
'+phoneHtml+'
'+item.dist.toFixed(1)+'마일 떨어져 있음
' +'
' +'
' +'길 안내'+ (loc.c ? '연락' : '') +(loc.u ? '위치' : '') +'
'; results.appendChild(card); }); var all = document.createElement('div'); all.className = 'wmc-loc-all'; all.innerHTML = '모든 '+WMC_LOC.length+'개의 WaveMAX 위치 보기 →'; results.appendChild(all); } function wmcGeo() { var btn = document.getElementById('wmc-geo-btn'); var lbl = btn.querySelector('.wmc-geo-btn__lbl'); var status = document.getElementById('wmc-loc-status'); if (!navigator.geolocation) { status.textContent = 'Geolocation is not supported by your browser.'; status.style.display = 'block'; return; } btn.classList.add('loading'); btn.disabled = true; lbl.textContent = 'Detecting location...'; status.textContent = 'Finding nearest WaveMAX locations...'; status.style.display = 'block'; document.getElementById('wmc-loc-results').innerHTML = ''; navigator.geolocation.getCurrentPosition( function(pos) { btn.classList.remove('loading'); btn.disabled = false; lbl.textContent = 'Use My Current Location'; wmcShowLocs(pos.coords.latitude, pos.coords.longitude, 'your location'); }, function(err) { btn.classList.remove('loading'); btn.disabled = false; lbl.textContent = 'Use My Current Location'; status.textContent = err.code === 1 ? 'Location access was denied. Enter your city or zip below.' : 'Could not get your location. Enter your city or zip below.'; status.style.display = 'block'; }, {timeout:10000, maximumAge:300000} ); } function wmcZipSearch() { var query = document.getElementById('wmc-zip').value.trim(); var status = document.getElementById('wmc-loc-status'); if (!query) return; status.textContent = 'Searching for "'+query+'"...'; status.style.display = 'block'; document.getElementById('wmc-loc-results').innerHTML = ''; fetch('https://nominatim.openstreetmap.org/search?format=json&limit=1&countrycodes=us&q='+encodeURIComponent(query), {headers:{'Accept-Language':'en'}}) .then(function(r){ return r.json(); }) .then(function(data) { if (data && data.length > 0) { var lat = parseFloat(data[0].lat); var lng = parseFloat(data[0].lon); var name = data[0].display_name.split(',').slice(0,2).join(',').trim(); wmcShowLocs(lat, lng, name); } else { status.textContent = 'No results for "'+query+'". Try a different city or zip.'; status.style.display = 'block'; } }) .catch(function() { // Fallback: match in our own data var q = query.toLowerCase(); var match = WMC_LOC.find(function(l){ return l.a.toLowerCase().indexOf(q) > -1; }); if (match) { wmcShowLocs(match.lat, match.lng, query); } else { status.textContent = 'Search unavailable. Try the locations page.'; status.style.display = 'block'; document.getElementById('wmc-loc-results').innerHTML = '''; } }); } // ============================================================ // FORM: 제출 전에 마법사 데이터를 숨겨진 필드에 동기화 // ============================================================ var wfEl = document.getElementById('wmc-franchise-form'); if (wfEl) { wfEl.addEventListener('submit', function() { var notes = []; if (WMC.liq) { notes.push('현금: '+WMC.liq); document.getElementById('wmc-liq').value = WMC.liq; } if (WMC.nw) { notes.push('순자산: '+WMC.nw); document.getElementById('wmc-nw').value = WMC.nw; } if (WMC.int) { notes.push('이자: '+WMC.int); document.getElementById('wmc-int').value = WMC.int; } if (WMC.src) { notes.push('출처: '+WMC.src); document.getElementById('wmc-src').value = WMC.src; } document.getElementById('wmc-desc').value = notes.join(' | '); }); }