Find an AdaptHealth location near you.
If you have an invoice, you can pay your bill here.
'); infowindow.open(map, marker); var iw_container = jQuery(".gm-style-iw").parent(); iw_container.stop().hide(); iw_container.fadeIn(300); }); /* marker.addListener('click', function() { infowindow.close(); }); */ google.maps.event.addListener(marker, 'click', function(){ }); } (function($){ $("#locationSelect").on("change",function(e){ e.preventDefault(); // get all locations state = $(this).val(); table_html = ''; for (i = 0; i < locations.length; i++) { if( locations[i][3] == state ) table_html += '
'; } $("#locations-table table tbody").html(table_html); // show table now $("#locations-table").show(); }); })( jQuery );
Enter Address/Zip Code
Default (A-Z)
'; } if(locations[i][8] == 'NULL'){ leftFax = ''; }else{ leftFax = '
Fax: '+locations[i][8]+'
'; } lat = parseFloat(locations[i][6]); lng = parseFloat(locations[i][7]); locations_data += '
'+locations[i][0]+'
'+locations[i][1]+'
'+locations[i][2]+', '+locations[i][3]+' '+locations[i][4]+'
'+leftPhone+leftFax+'
'; } const stateLabelValues = [ { label: 'Alabama', value: 'AL' }, { label: 'Alaska', value: 'AK' }, { label: 'American Samoa', value: 'AS' }, { label: 'Arizona', value: 'AZ' }, { label: 'Arkansas', value: 'AR' }, { label: 'California', value: 'CA' }, { label: 'Colorado', value: 'CO' }, { label: 'Connecticut', value: 'CT' }, { label: 'Delaware', value: 'DE' }, { label: 'District of Columbia', value: 'DC' }, { label: 'Florida', value: 'FL' }, { label: 'Georgia', value: 'GA' }, { label: 'Guam', value: 'GU' }, { label: 'Hawaii', value: 'HI' }, { label: 'Idaho', value: 'ID' }, { label: 'Illinois', value: 'IL' }, { label: 'Indiana', value: 'IN' }, { label: 'Iowa', value: 'IA' }, { label: 'Kansas', value: 'KS' }, { label: 'Kentucky', value: 'KY' }, { label: 'Louisiana', value: 'LA' }, { label: 'Maine', value: 'ME' }, { label: 'Maryland', value: 'MD' }, { label: 'Massachusetts', value: 'MA' }, { label: 'Michigan', value: 'MI' }, { label: 'Minnesota', value: 'MN' }, { label: 'Mississippi', value: 'MS' }, { label: 'Missouri', value: 'MO' }, { label: 'Montana', value: 'MT' }, { label: 'Nebraska', value: 'NE' }, { label: 'Nevada', value: 'NV' }, { label: 'New Hampshire', value: 'NH' }, { label: 'New Jersey', value: 'NJ' }, { label: 'New Mexico', value: 'NM' }, { label: 'New York', value: 'NY' }, { label: 'North Carolina', value: 'NC' }, { label: 'North Dakota', value: 'ND' }, { label: 'Ohio', value: 'OH' }, { label: 'Oklahoma', value: 'OK' }, { label: 'Oregon', value: 'OR' }, { label: 'Pennsylvania', value: 'PA' }, { label: 'Puerto Rico', value: 'PR' }, { label: 'Rhode Island', value: 'RI' }, { label: 'South Carolina', value: 'SC' }, { label: 'South Dakota', value: 'SD' }, { label: 'Tennessee', value: 'TN' }, { label: 'Texas', value: 'TX' }, { label: 'Utah', value: 'UT' }, { label: 'Vermont', value: 'VT' }, { label: 'Virgin Islands', value: 'VI' }, { label: 'Virginia', value: 'VA' }, { label: 'Washington', value: 'WA' }, { label: 'West Virginia', value: 'WV' }, { label: 'Wisconsin', value: 'WI' }, { label: 'Wyoming', value: 'WY' }, ]; jQuery(".map-locations").html(locations_data); (function($){ $("[name='map-company']").on("change",function(e){ e.preventDefault(); company_name = $(this).val(); console.log(company_name); // save lat and long lat = 39.5500507; long = -100.78206740000002; companies_list = ''; for (i = 0; i < locations.length; i++) { if(locations[i][5] == 'NULL'){ leftPhone = ''; }else{ leftPhone = '
Phone: '+locations[i][5]+'
'; } if(locations[i][8] == 'NULL'){ leftFax = ''; }else{ leftFax = '
Fax: '+locations[i][8]+'
'; } lat = parseFloat(locations[i][6]); lng = parseFloat(locations[i][7]); if( locations[i][0] == company_name || company_name == '' ){ companies_list += '
'+locations[i][0]+'
'+locations[i][1]+'
'+locations[i][2]+', '+locations[i][3]+' '+locations[i][4]+'
'+leftPhone+leftFax+'
'; lat = parseFloat(locations[i][6]); long = parseFloat(locations[i][7]); } } if( company_name == '' ){ lat = 39.5500507; long = -100.78206740000002; } console.log(companies_list); jQuery(".map-locations").html(companies_list); console.log(lat); console.log(long); // initialize map again var image = new google.maps.MarkerImage("/wp-content/uploads/2022/08/circle-new.png", null, null, null, new google.maps.Size(15,15)); map = new google.maps.Map(document.getElementById('map'), { center: {lat: lat, lng: long}, zoom: zoom, disableDefaultUI: true, zoomControl: true, }); var infowindow = new google.maps.InfoWindow({ maxWidth: 350, }); geocoder = new google.maps.Geocoder(); for (i = 0; i < locations.length; i++) { if( locations[i][0] == company_name || company_name == '' ) codeAddress(geocoder, map,locations[i],image,infowindow); } }); $(".geocode-me").on("submit",function(e){ e.preventDefault(); address = $("[name='map-search'").val(); radius = $("[name='map-radius'").val(); // show full list companies_list = ''; for (i = 0; i < locations.length; i++) { leftPhone = ''; if(locations[i][5] == 'NULL'){ leftPhone = ''; }else{ leftPhone = '
Phone: '+locations[i][5]+'
'; } if(locations[i][8] == 'NULL'){ leftFax = ''; }else{ leftFax = '
Fax: '+locations[i][8]+'
'; } lat = parseFloat(locations[i][6]); lng = parseFloat(locations[i][7]); companies_list += '
'+locations[i][0]+'
'+locations[i][1]+'
'+locations[i][2]+', '+locations[i][3]+' '+locations[i][4]+'
'+leftPhone+leftFax+'
'; } jQuery(".map-locations").html(companies_list); if( typeof circle !== 'undefined' && circle !== null ) circle.setMap(null); if( address == '' ){ map.setCenter({lat: 39.5500507, lng: -100.78206740000002}); map.setZoom(5); return ''; } geocode_string = address + ", USA"; geocoder = new google.maps.Geocoder(); geocoder.geocode( { 'address': geocode_string }, function(results, status) { if (status == 'OK') { console.log(results); console.log(results[0].geometry.location.lat()); var its_state = false; // if its a state, show all companies in that state if( typeof results[0].types[0] !== 'undefined' && results[0].types[0] == "administrative_area_level_1" ){ // its a state // get abbreviation for (i = 0; i < stateLabelValues.length; i++) { if( stateLabelValues[i]['label'].toLowerCase() == address.toLowerCase() ){ state_code = stateLabelValues[i]['value']; its_state = true; } if( stateLabelValues[i]['value'].toLowerCase() == address.toLowerCase() ){ state_code = stateLabelValues[i]['value']; its_state = true; } } } latitude = results[0].geometry.location.lat(); longitude = results[0].geometry.location.lng(); //map.setCenter(results[0].geometry.location); //map.setZoom(7); var image = new google.maps.MarkerImage("/wp-content/uploads/2022/08/circle-new.png", null, null, null, new google.maps.Size(15,15)); map = new google.maps.Map(document.getElementById('map'), { center: results[0].geometry.location, zoom: 7, disableDefaultUI: true, zoomControl: true, }); var infowindow = new google.maps.InfoWindow({ maxWidth: 350, }); geocoder = new google.maps.Geocoder(); companies_list = ''; distance = parseInt(radius) * 1609; var sorted_list = []; for (i = 0; i < locations.length; i++) { lat = parseFloat(locations[i][6]); lng = parseFloat(locations[i][7]); if(locations[i][5] == 'NULL'){ leftPhone = ''; }else{ leftPhone = '
Phone: '+locations[i][5]+'
'; } if(locations[i][8] == 'NULL'){ leftFax = ''; }else{ leftFax = '
Fax: '+locations[i][8]+'
'; } if( !its_state ){ company_location = { lat: lat, lng: lng }; difference = google.maps.geometry.spherical.computeDistanceBetween(company_location,results[0].geometry.location); if( parseInt(difference) <= distance ){ //companies_list += '
'+locations[i][0]+'
'+locations[i][1]+'
'+locations[i][2]+', '+locations[i][3]+' '+locations[i][4]+'
'+leftPhone+leftFax+'
'; codeAddress(geocoder, map,locations[i],image,infowindow); sorted_list.push({ distance: parseInt(difference), info: '
'+locations[i][0]+'
'+locations[i][1]+'
'+locations[i][2]+', '+locations[i][3]+' '+locations[i][4]+'
'+leftPhone+leftFax+'
' }); } }else{ if( locations[i][3] == state_code ){ //companies_list += '
'+locations[i][0]+'
'+locations[i][1]+'
'+locations[i][2]+', '+locations[i][3]+' '+locations[i][4]+'
'+leftPhone+leftFax+'
'; codeAddress(geocoder, map,locations[i],image,infowindow); sorted_list.push({ distance: parseInt(difference), info: '
'+locations[i][0]+'
'+locations[i][1]+'
'+locations[i][2]+', '+locations[i][3]+' '+locations[i][4]+'
'+leftPhone+leftFax+'
' }); } } } console.log(sorted_list); console.log(sorted_list.sort((a,b) => a.distance - b.distance )); sorted_list.forEach((element)=>{ console.log(element); companies_list += element.info; }) if( companies_list !== '' ){ jQuery(".map-locations").html(companies_list); }else{ jQuery(".map-locations").html('
No companies matching your postal code were found. Map shows all companies in the given radius so you can choose the one closest to you.
'); } } else { alert('We were not able to retrieve coordinates for this location. Pleaae try another.'); } }); }); $("[name='map-radius']").on("change",function(e){ e.preventDefault(); address = $("[name='map-search'").val(); radius = $("[name='map-radius'").val(); // show full list companies_list = ''; for (i = 0; i < locations.length; i++) { if(locations[i][5] == 'NULL'){ leftPhone = ''; }else{ leftPhone = '
Phone: '+locations[i][5]+'
'; } if(locations[i][8] == 'NULL'){ leftFax = ''; }else{ leftFax = '
Fax: '+locations[i][8]+'
'; } lat = parseFloat(locations[i][6]); lng = parseFloat(locations[i][7]); companies_list += '
'+locations[i][0]+'
'+locations[i][1]+'
'+locations[i][2]+', '+locations[i][3]+' '+locations[i][4]+'
'+leftPhone+leftFax+'
'; } jQuery(".map-locations").html(companies_list); if( typeof circle !== 'undefined' && circle !== null ) circle.setMap(null); if( address == '' ){ // update center map.setCenter({lat: 39.5500507, lng: -100.78206740000002}); map.setZoom(5); return ''; } geocoder = new google.maps.Geocoder(); geocode_string = address + ", USA"; geocoder.geocode( { 'address': geocode_string }, function(results, status) { if (status == 'OK') { console.log(results); var its_state = false; // if its a state, show all companies in that state if( typeof results[0].types[0] !== 'undefined' && results[0].types[0] == "administrative_area_level_1" ){ // its a state // get abbreviation for (i = 0; i < stateLabelValues.length; i++) { if( stateLabelValues[i]['label'].toLowerCase() == address.toLowerCase() ){ console.log(stateLabelValues[i]['value']); state_code = stateLabelValues[i]['value']; its_state = true; } if( stateLabelValues[i]['value'].toLowerCase() == address.toLowerCase() ){ state_code = stateLabelValues[i]['value']; its_state = true; } } } latitude = results[0].geometry.location.lat(); longitude = results[0].geometry.location.lng(); var image = new google.maps.MarkerImage("/wp-content/uploads/2022/08/circle-new.png", null, null, null, new google.maps.Size(15,15)); map = new google.maps.Map(document.getElementById('map'), { center: results[0].geometry.location, zoom: 7, disableDefaultUI: true, zoomControl: true, }); var infowindow = new google.maps.InfoWindow({ maxWidth: 350, }); companies_list = ''; distance = parseInt(radius) * 1609; var sorted_list = []; for (i = 0; i < locations.length; i++) { lat = parseFloat(locations[i][6]); lng = parseFloat(locations[i][7]); if( !its_state ){ company_location = { lat: lat, lng: lng }; difference = google.maps.geometry.spherical.computeDistanceBetween(company_location,results[0].geometry.location); if(locations[i][5] == 'NULL'){ leftPhone = ''; }else{ leftPhone = '
Phone: '+locations[i][5]+'
'; } if(locations[i][8] == 'NULL'){ leftFax = ''; }else{ leftFax = '
Fax: '+locations[i][8]+'
'; } if( parseInt(difference) <= distance ){ //companies_list += '
'+locations[i][0]+'
'+locations[i][1]+'
'+locations[i][2]+', '+locations[i][3]+' '+locations[i][4]+'
'+leftPhone+leftFax+'
'; codeAddress(geocoder, map,locations[i],image,infowindow); sorted_list.push({ distance: parseInt(difference), info: '
'+locations[i][0]+'
'+locations[i][1]+'
'+locations[i][2]+', '+locations[i][3]+' '+locations[i][4]+'
'+leftPhone+leftFax+'
' }); } }else{ if( locations[i][3] == state_code ){ //companies_list += '
'+locations[i][0]+'
'+locations[i][1]+'
'+locations[i][2]+', '+locations[i][3]+' '+locations[i][4]+'
'+leftPhone+leftFax+'
'; codeAddress(geocoder, map,locations[i],image,infowindow); sorted_list.push({ distance: parseInt(difference), info: '
'+locations[i][0]+'
'+locations[i][1]+'
'+locations[i][2]+', '+locations[i][3]+' '+locations[i][4]+'
'+leftPhone+leftFax+'
' }); } } } sorted_list.sort((a,b) => a.distance - b.distance ); sorted_list.forEach((element)=>{ console.log(element); companies_list += element.info; }); if( companies_list !== '' ){ jQuery(".map-locations").html(companies_list); }else{ jQuery(".map-locations").html('
No companies matching your postal code were found. Map shows all companies in the given radius so you can choose the one closest to you.
'); } } else { processing = false; alert('We were not able to retrieve coordinates for this location. Pleaae try another.'); } }); }); jQuery(document).on("click",".company-each-holder",function(e){ e.preventDefault(); if( typeof jQuery(this).attr("data-lat") !== 'undefined' ){ lat = parseFloat(jQuery(this).attr("data-lat")); lng = parseFloat(jQuery(this).attr("data-lng")); console.log(lat+" "+lng); console.log(map); map.setCenter({lat: lat, lng: lng}); map.setZoom(12); } }); })( jQuery );
FAQs
Who bought out AdaptHealth? ›
Since inception, AeroCare has achieved 20 years of consecutive revenue growth, driven by a combination of strong organic growth and targeted acquisitions. The combined company will operate under the name AdaptHealth, and Steve Griggs will serve as co-CEO with Luke McGee, CEO of AdaptHealth, to lead the company.
How many companies does AdaptHealth own? ›Medical ProductsCompany
AdaptHealth has acquired 8 companies, including 8 in the last 5 years. A total of 4 acquisitions came from private equity firms. AdaptHealth's largest acquisition to date was in 2020, when it acquired Aerocare Holdings for $2.0B.
AdaptHealth is a network of full-service medical equipment companies that use tailored products and services to empower patients to live their best lives – out of the hospital and in their homes.
How long has AdaptHealth been in business? ›Founded in 2012 and headquartered in Plymouth Meeting, PA, Adapt offers a full suite of medical products for both rental and sale, with a focus on respiratory and/or mobility equipment, including CPAP sleep equipment, oxygen equipment, wheelchairs, walkers, and hospital beds.
What company did Unitedhealthcare buy? ›UnitedHealth Group's $5.4 billion acquisition of LHC Group has officially closed. Home health provider LHC issued a filing with the Securities and Exchange Commission on Wednesday to mark the deal's closure.
How much debt does AdaptHealth have? ›How Much Debt Does AdaptHealth Carry? The chart below, which you can click on for greater detail, shows that AdaptHealth had US$2.19b in debt in December 2022; about the same as the year before.
What is the world's largest medical device company? ›1. Medtronic $31.7bn +8% Medtronic once again tops the list as the largest medical device company in the world. With a workforce of over 90,000, operating in 150 countries, Medtronic is at the forefront of medical technology.
Who are AdaptHealth competitors? ›The main competitors of AdaptHealth include Addus HomeCare (ADUS), Enhabit (EHAB), Amedisys (AMED), Biomea Fusion (BMEA), Replimune Group (REPL), Heska (HSKA), Summit Therapeutics (SMMT), Pliant Therapeutics (PLRX), IDEAYA Biosciences (IDYA), and Catalyst Pharmaceuticals (CPRX).
What companies are like AdaptHealth? ›AdaptHealth's competitors and similar companies include Regentys Corporation, EBT Medical, GAIA and UroMems.
Why is AdaptHealth stock dropping? ›Poorly received quarterly results and a big leadership change were the twin engines driving AdaptHealth's (AHCO -1.96%) share price down on Tuesday.
Is AdaptHealth a good stock to buy? ›
AdaptHealth's analyst rating consensus is a Moderate Buy. This is based on the ratings of 10 Wall Streets Analysts.
How big is AdaptHealth? ›AdaptHealth has 10,900 employees. View the comprehensive list of AdaptHealth employees, their locations, business contact details and key personnel.
Who is the CEO of AdaptHealth? ›Steve Griggs
Mr. Griggs founded AeroCare in 2000 and led the organization as CEO.
Their stock opened with $15.50 in its Jul 1, 2020 IPO. AdaptHealth is funded by 6 investors. Deerfield and One Equity Partners are the most recent investors.
Did AdaptHealth miss earnings? ›Adapthealth Corp (AHCO) missed earnings estimates for Q1 2023 this morning. Analyst expectations for Adapthealth Corp Cl. A earnings per share (EPS) were at $0.08, with the company missing those estimates with a reported EPS loss of $0.06 per share, leading to a negative surprise of $0.14 per share (-175%).
Is Humana buying UnitedHealthcare? ›United HealthCare and Humana, two of the nation's largest for-profit managed care companies, have agreed to a $5.5 billion merger. The resulting company will operate as United HealthCare in 48 states and Puerto Rico.
Does AARP own UnitedHealthcare? ›UnitedHealthcare Insurance Company (UnitedHealthcare) is the exclusive insurer of AARP Medicare Supplement insurance plans.
Who owns UnitedHealthcare insurance? ›UnitedHealthcare is the health benefits business of UnitedHealth Group, a health care and well-being company working to help build a modern, high-performing health system through improved access, affordability, outcomes and experiences.
What company owns the most US debt? ›The Federal Reserve, which purchases and sells Treasury securities as a means to influence federal interest rates and the nation's money supply, is the largest holder of such debt.
Are most doctors in debt? ›While 73 percent of medical school graduates from public institutions have debt at graduation, just 68 percent of medical students from private schools have debt. In total, 71 percent of all medical students have education-related debt after graduation.
Does the average American have $90460 in debt? ›
While the average American has $90,460 in debt, this includes all types of consumer debt products, from credit cards to personal loans, mortgages and student debt.
Who did Optum buy out? ›The UnitedHealth Group (NYSE: UNH) subsidiary Optum closed its $5.4 billion deal today to acquire LHC Group (NASDAQ: LHCG). LHC Group this morning notified the U.S. Securities and Exchange Commission (SEC) that the deal had been completed and that it would no longer be trading on the NASDAQ.
Who is the owner of Keene Medical Products? ›We are proud of our reputation and to have been awarded an HME Excellence Award for Best Respiratory Provider” remarked Keene owner, Kurt Filiault.
Who owns AeroCare Holdings? ›AdaptHealth Corp. Announces Acquisition of National HME Provider AeroCare Holdings Inc.
Did AdaptHealth buy AeroCare? ›AdaptHealth Corp. Closes Previously Announced Acquisition of AeroCare Holdings Inc. - AdaptHealth.
Are UnitedHealthcare and Optum the same company? ›About UnitedHealth Group
UnitedHealth Group has two distinct business platforms: Optum and UnitedHealthcare. This cohesive partnership offers an array of health services and health benefits.
Optum, Inc. is an American healthcare services provider with business interests encompassing technology and related services, pharmacy care services (including a pharmacy benefit manager) and various direct healthcare services. It has been a subsidiary of UnitedHealth Group since 2011.
What is Optum's new name? ›PrimeCare is now Optum. can be more personalized, more compassionate, and more convenient.
Who owns Capital Medical Supply? ›Richard Berry - Owner - Capital Medical Supply Inc.
Who is the CEO of Keene YMCA? ›Dan Smith - CEO - Keene Family YMCA | LinkedIn.
What is the alternative to AeroCare? ›
Who are AeroCare Direct 's competitors? Alternatives and possible competitors to AeroCare Direct may include National Institutes of Health , Echo Therapeutics , and Waypoint Orthopedics .
Is Verus Healthcare part of AdaptHealth? ›AdaptHealth, LLC completed the acquisition of Verus Healthcare, Inc.