Skip to content

New legislation will bring more hospital construction to Central Florida and more competition

CEO Jeff Villanueva (4th from left) is joined by other AdventHealth professionals, elected officials and community leaders, for the groundbreaking ceremony for a standalone emergency room center in Lake Nona, Wednesday, June 5, 2019. The 19,000 square-foot facility is slated to open in 2020.  (Joe Burbank/Orlando Sentinel)  3081931
Joe Burbank/Orlando Sentinel
CEO Jeff Villanueva (4th from left) is joined by other AdventHealth professionals, elected officials and community leaders, for the groundbreaking ceremony for a standalone emergency room center in Lake Nona, Wednesday, June 5, 2019. The 19,000 square-foot facility is slated to open in 2020. (Joe Burbank/Orlando Sentinel) 3081931
PUBLISHED: | UPDATED:

Ten years ago, there was no such thing as Free Standing Emergency Department in Central Florida. Now the there’s over a dozen of them open or in development, representing over $200 million in investment by the region’s three largest hospital companies.

And the healthcare building boon is just getting started. The Florida Legislature’s passage this year of House Bill 21 will accelerate construction of new hospitals in Central Florida and could bring new players into what’s now an open market to compete for a share of the state’s fastest growing economy.

The law, which goes into effect July 1, eliminates the requirement for hospitals to apply to the state Agency for Healthcare Administration for Certificates of Need (CON) to build new acute care facilities or add specialized services, such as organ transplant programs. The region’s two largest hospital companies, Orlando Health and AdventHealth, told GrowthSpotter the rule change doesn’t necessarily alter their long term expansion plans, but it does kick them into high gear.

Because it operates across multiple states, AdventHealth already has experience in markets that don’t require CONs. Daryl Tol, Advent’s Central Florida CEO, said the CON process could add months, or even years, and hundreds of thousands of dollars to the cost of new acute care facilities. Meanwhile, healthcare providers would land-bank sites for future growth or plant stakes in the ground with new Free Standing Emergency Departments (FSED) throughout the region.

Daryl Tol, CEO of AdventHealth Central Florida, said the hospital company will grow aggressively now that Certificates of Need are are thing of the past.
Daryl Tol, CEO of AdventHealth Central Florida, said the hospital company will grow aggressively now that Certificates of Need are are thing of the past.

“In non-CON states, you don’t have that threshold, so it’s much more aggressive,” Tol said. “Think of our free standing emergency room dynamic in Central Florida right now. That becomes, in some ways, the acute care dynamic without CON. You have large and small things going everywhere, so we’re used to that.”

Orlando Health has new campuses planned in Lake Mary, Randal Park and Reunion. The repeal of CON doesn’t change those plans, according to Erick Hawkins, senior vice president for strategic management.

“We believe, however, that it will allow us to bring to market some of those assets sooner, because there won’t be the process of applying. And then, in some cases, the legal challenges that are put forth,” Hawkins said. “So for us, we’re excited to be able to get the Orlando Health value proposition out to the consumer sooner through not having to have that extra step.”

Scroll over a point on the map to find out what’s coming near you.

#map{width:100%; height:360px; }

#info{
display: block;
z-index:8;
position: absolute;
top:10;
margin-left: 0px;
margin-bottom:30px;
border: none;
font-size: 12px;
text-align: left;
padding:5px;
background: #fff;
font:bold 12px/20px ‘Helvetica Neue’, Arial, Helvetica, sans-serif;
}
#one{z-index:10;}
#legend{background:#FFFFFF; padding-right:4px;z-index:11; }
.legendrow{float:left;z-index:12;}
.dot{width:10px;height:10px;border-radius:5px;float:left;margin:5px;z-index:13 !important}
.red{background:red;}
.blue{background:#00B5CC}
.gold{background:#FBB81E}

https://api.tiles.mapbox.com/mapbox-gl-js/v1.0.0/mapbox-gl.js
https://api.mapbox.com/mapbox-gl-js/plugins/mapbox-gl-geocoder/v4.3.0/mapbox-gl-geocoder.min.js

mapboxgl.accessToken = ‘pk.eyJ1IjoiYWRlbGFpZGUtYyIsImEiOiJjajdzNDhrNXMyd3cxMnlwazNudWRlYXVwIn0.QL_0lssVW4DeUcFiG0-wkQ’;

var map = new mapboxgl.Map({
container: ‘map’,
style: ‘mapbox://styles/adelaide-c/cj9ohl1za0j3k2snxhtrq9kv2′,
center: [-81.3825533,28.5360228],
zoom: 8
});

var geocode = new MapboxGeocoder({
accessToken: mapboxgl.accessToken,
bbox: [-81.936858,27.948755,-80.936,29.077150],
mapboxgl: mapboxgl,
zoom:10,
placeholder:’Look up an address’
});
map.addControl(geocode, ‘bottom-right’)

var nav = new mapboxgl.NavigationControl();
map.addControl(nav, ‘bottom-right’);
var bigsize = 150;
var size = 75;

var emergencyroom = {
width: size,
height: size,
data: new Uint8Array(size * size * 4),

onAdd: function() {
var canvas = document.createElement(‘canvas’);
canvas.width = this.width;
canvas.height = this.height;
this.context = canvas.getContext(‘2d’);
},
render: function() {
var duration = 2000;
var t = (performance.now() % duration) / duration;

var radius = size / 5 * 0.3;
var outerRadius = size / 10 * 0.7 * t + radius;
var context = this.context;

context.clearRect(0, 0, this.width, this.height);
context.beginPath();
context.arc(this.width / 2, this.height / 2, outerRadius, 0, Math.PI * 2);
context.fillStyle = ‘rgba(252,184,30,1)’;
context.fill();

// draw inner circle
context.beginPath();
context.arc(this.width / 2, this.height / 2, radius, 0, Math.PI * 2);
context.fillStyle = ‘rgba(252,184,30,1)’;
context.strokeStyle = ‘white’;
context.lineWidth = 2 + 4 * (1 – t);
context.fill();
context.stroke();

// update this image’s data with data from the canvas
this.data = context.getImageData(0, 0, this.width, this.height).data;

// keep the map repainting
map.triggerRepaint();

// return `true` to let the map know that the image was updated
return true;
}
};

var hospitals = {
width: size,
height: size,
data: new Uint8Array(size * size * 4),

onAdd: function() {
var canvas = document.createElement(‘canvas’);
canvas.width = this.width;
canvas.height = this.height;
this.context = canvas.getContext(‘2d’);
},
render: function() {
var duration = 2000;
var t = (performance.now() % duration) / duration;

var radius = size / 5 * 0.3;
var outerRadius = size / 10 * 0.7 * t + radius;
var context = this.context;

context.clearRect(0, 0, this.width, this.height);
context.beginPath();
context.arc(this.width / 2, this.height / 2, outerRadius, 0, Math.PI * 2);
context.fillStyle = ‘rgba(0,181,204,1)’;
context.fill();

// draw inner circle
context.beginPath();
context.arc(this.width / 2, this.height / 2, radius, 0, Math.PI * 2);
context.fillStyle = ‘rgba(0,181,204,1)’;
context.strokeStyle = ‘white’;
context.lineWidth = 2 + 4 * (1 – t);
context.fill();
context.stroke();

// update this image’s data with data from the canvas
this.data = context.getImageData(0, 0, this.width, this.height).data;

// keep the map repainting
map.triggerRepaint();

// return `true` to let the map know that the image was updated
return true;
}
};

var newhealthcare = {
width: bigsize,
height: bigsize,
data: new Uint8Array(bigsize * bigsize * 4),

onAdd: function() {
var canvas = document.createElement(‘canvas’);
canvas.width = this.width;
canvas.height = this.height;
this.context = canvas.getContext(‘2d’);
},
render: function() {
var duration = 2000;
var t = (performance.now() % duration) / duration;

var radius = bigsize / 5 * 0.3;
var outerRadius = bigsize / 10 * 0.7 * t + radius;
var context = this.context;

context.clearRect(0, 0, this.width, this.height);
context.beginPath();
context.arc(this.width / 2, this.height / 2, outerRadius, 0, Math.PI * 2);
context.fillStyle = ‘rgba(255,100,100,1)’;
context.fill();

// draw inner circle
context.beginPath();
context.arc(this.width / 2, this.height / 2, radius, 0, Math.PI * 2);
context.fillStyle = ‘rgba(255,100,100,1)’;
context.strokeStyle = ‘white’;
context.lineWidth = 2 + 4 * (1 – t);
context.fill();
context.stroke();

// update this image’s data with data from the canvas
this.data = context.getImageData(0, 0, this.width, this.height).data;

// keep the map repainting
map.triggerRepaint();

// return `true` to let the map know that the image was updated
return true;
}
};

map.on(‘load’, function () {

map.addImage(‘pulsing-dot-red’, newhealthcare, { pixelRatio: 2 });
map.addLayer({
“id”: “red”,
“type”: “symbol”,
“source”: {
“type”: “geojson”,
“data”: {
“type”: “FeatureCollection”,
“features”: [
{“type”:”Feature”,
“properties”:{“name”:”Orlando Health Emergency Room–Lake Mary”,”address”:”412 Rinehart Road, Lake Mary”,”date”:”Coming soon”}, “geometry”:{“type”:”Point”,”coordinates”:[-81.347823,28.768099]}
},
{“type”:”Feature”,
“properties”:{“name”:”Orlando Health Emergency Room–Randal Park”,”address”:”Randal Park Blvd, Orlando”,”date”:”Coming soon”}, “geometry”:{“type”:”Point”,”coordinates”:[-81.234814,28.428929]}
},
{“type”:”Feature”,
“properties”:{“name”:”Orlando Health”,”address”:”5401 Effie Dr, Apopka”,”date”:”Coming soon”}, “geometry”:{“type”:”Point”,”coordinates”:[-81.566464,28.762151]}
},
{“type”:”Feature”,
“properties”:{“name”:”AdventHealth Kissimmee”,”address”:”2488 E Irlo Bronson Hwy, Kissimmee”,”date”:”Coming soon”}, “geometry”:{“type”:”Point”,”coordinates”:[-81.343242,28.277941]}
},
{“type”:”Feature”,
“properties”:{“name”:”AdventHealth Lake Nona”,”address”:”10093 Lake Nona Blvd, Orlando”,”date”:”Coming soon”}, “geometry”:{“type”:”Point”,”coordinates”:[-81.245198,28.404305]}
},
{“type”:”Feature”,
“properties”:{“name”:”AdventHealth Waterford Lakes”,”address”:”13691 E Colonial Dr, Orlando”,”date”:”Coming soon”}, “geometry”:{“type”:”Point”,”coordinates”:[-81.183083,28.565720]}
},
{“type”:”Feature”,
“properties”:{“name”:”AdventHealth Oviedo”,”address”:”8100 Red Bug Lake Road, Oviedo”,”date”:”Coming soon”}, “geometry”:{“type”:”Point”,”coordinates”:[-81.238883,28.657259]}
},
{“type”:”Feature”,
“properties”:{“name”:”Florida Health Colonial”,”address”:”15645 E Colonial Dr, Orlando”,”date”:”Coming soon”}, “geometry”:{“type”:”Point”,”coordinates”:[-81.151394,28.565768]}
},
{“type”:”Feature”,
“properties”:{“name”:”HCA ChampionsGate”,”address”:”Champions Gate Blvd, Davenport”,”date”:”Coming soon”}, “geometry”:{“type”:”Point”,”coordinates”:[-81.623777,28.256489]}
},
{“type”:”Feature”,
“properties”:{“name”:”Orlando Health–Reunion Village”,”address”:”8011 Osceola Polk Line Road, Davenport”,”date”:”Coming soon”}, “geometry”:{“type”:”Point”,”coordinates”:[-81.607638,28.260723]}
},
{“type”:”Feature”,
“properties”:{“name”:”HCA ChampionsGate”,”address”:”Champions Gate Blvd, Davenport”,”date”:”Coming soon”}, “geometry”:{“type”:”Point”,”coordinates”:[-81.623777,28.256489]}
},
{“type”:”Feature”,
“properties”:{“name”:”Orlando Health–Reunion Village”,”address”:”8011 Osceola Polk Line Road, Davenport”,”date”:”Coming soon”}, “geometry”:{“type”:”Point”,”coordinates”:[-81.607638,28.260723]}
},
{“type”:”Feature”,
“properties”:{“name”:”Advent Health”,”address”:”Palm Pkwy at Darryl Carter Pkwy, Orlando”,”date”:”Coming soon”}, “geometry”:{“type”:”Point”,”coordinates”:[-81.490242,28.398339]}
},
{“type”:”Feature”,
“properties”:{“name”:”UCF Lake Nona Medical Center”,”address”:”6680 Lake Nona Blvd, Orlando”,”date”:”Coming soon”}, “geometry”:{“type”:”Point”,”coordinates”:[-81.287677,28.368570]}
},
{“type”:”Feature”,
“properties”:{“name”:”Osceola Regional Medical Center–Millenia ER”,”address”:”4056 Millenia Blvd, Orlando”,”date”:”Coming soon”}, “geometry”:{“type”:”Point”,”coordinates”:[-81.427800,28.491006]}
},
{“type”:”Feature”,
“properties”:{“name”:”AdventHealth–ER and Medical Office”,”address”:”14138 Florida 50, Clermont”,”date”:”Coming soon”}, “geometry”:{“type”:”Point”,”coordinates”:[-81.721195,28.546155]}
}
]
}
},
“layout”: {
“icon-image”: “pulsing-dot-red”,
“icon-allow-overlap”: true
}
});

map.addImage(“pulsing-dot-gold”, hospitals, { pixelRatio: 2 });
map.addLayer({
“id”: “gold”,
“type”: “symbol”,
“source”: {
“type”: “geojson”,
“data”: {
“type”: “FeatureCollection”,
“features”: [
{“type”:”Feature”,
“properties”:{“name”:”AdventHealth Celebration”,”address”:”400 Celebration Pl, Celebration”,”date”:”7/1/2019″},”geometry”:{“type”:”Point”,”coordinates”:[-81.541086,28.328439]}
},
{“type”:”Feature”,
“properties”:{“name”:”AdventHealth East Orlando”,”address”:”7727 Lake Underhill Road, Orlando”,”date”:”7/1/2019″},”geometry”:{“type”:”Point”,”coordinates”:[-81.281509,28.539831]}
},
{“type”:”Feature”,
“properties”:{“name”:”AdventHealth Kissimmee”,”address”:”2450 N Orange Blossom Trail, Kissimmee”,”date”:”7/1/2019″},”geometry”:{“type”:”Point”,”coordinates”:[-81.405488,28.316355]}
},
{“type”:”Feature”,
“properties”:{“name”:”AdventHealth Orlando”,”address”:”601 E Rollins St, Orlando”,”date”:”5/13/2019″},”geometry”:{“type”:”Point”,”coordinates”:[-81.370064,28.575788]}
},
{“type”:”Feature”,
“properties”:{“name”:”AdventHealth Waterman”,”address”:”1000 Waterman Way, Tavares”,”date”:”5/2/2019″},”geometry”:{“type”:”Point”,”coordinates”:[-81.710784,28.82354]}
},
{“type”:”Feature”,
“properties”:{“name”:”AdventHealth Winter Park”,”address”:”200 N Lakemont Ave, Winter Park”,”date”:”7/1/2019″},”geometry”:{“type”:”Point”,”coordinates”:[-81.326014,28.597472]}
},
{“type”:”Feature”,
“properties”:{“name”:”Arnold Palmer and Winnie Palmer hospitals”,”address”:”92 W Miller St, Orlando”,”date”:”7/1/2019″},”geometry”:{“type”:”Point”,”coordinates”:[-81.37912,28.523624]}
},
{“type”:”Feature”,
“properties”:{“name”:”Aspire Health Partners”,”address”:”1800 Mercy Dr, Orlando”,”date”:”6/25/2017″},”geometry”:{“type”:”Point”,”coordinates”:[-81.434,28.567103]}
},
{“type”:”Feature”,
“properties”:{“name”:”Bartow Regional Medical Center”,”address”:”2200 Osprey Blvd, Bartow”,”date”:”1/1/2018″},”geometry”:{“type”:”Point”,”coordinates”:[-81.844087,27.918645]}
},
{“type”:”Feature”,
“properties”:{“name”:”Blackberry Center”,”address”:”91 Beehive Cir, Saint Cloud”,”date”:”8/23/2018″},”geometry”:{“type”:”Point”,”coordinates”:[-81.314348,28.260426]}
},
{“type”:”Feature”,
“properties”:{“name”:”Central Florida Behavioral Hospital”,”address”:”6601 Central Florida Pkwy, Orlando”,”date”:”9/5/2018″},”geometry”:{“type”:”Point”,”coordinates”:[-81.469841,28.408949]}
},
{“type”:”Feature”,
“properties”:{“name”:”Central Florida Regional Hospital”,”address”:”1401 W Seminole Blvd, Sanford”,”date”:”6/1/2019″},”geometry”:{“type”:”Point”,”coordinates”:[-81.283669,28.814032]}
},
{“type”:”Feature”,
“properties”:{“name”:”Encompass Health Rehabilitation Hospital of Altamonte Springs”,”address”:”831 S State Rd 434, Altamonte Springs”,”date”:”10/26/2018″},”geometry”:{“type”:”Point”,”coordinates”:[-81.418851,28.678784]}
},
{“type”:”Feature”,
“properties”:{“name”:”Health Central”,”address”:”10000 W Colonial Dr, Ocoee”,”date”:”9/28/2018″},”geometry”:{“type”:”Point”,”coordinates”:[-81.527775,28.549135]}
},
{“type”:”Feature”,
“properties”:{“name”:”Heart of Florida Regional Medical Center”,”address”:”40100 US Hwy 27 N, Davenport”,”date”:”3/8/2019″},”geometry”:{“type”:”Point”,”coordinates”:[-81.641467,28.181412]}
},
{“type”:”Feature”,
“properties”:{“name”:”La Amistad Residential Treatment Center”,”address”:”1650 Park Ave N, Maitland”,”date”:”8/17/2018″},”geometry”:{“type”:”Point”,”coordinates”:[-81.364984,28.613256]}
},
{“type”:”Feature”,
“properties”:{“name”:”Lake Wales Medical Center”,”address”:”410 S 11Th St, Lake Wales”,”date”:”12/1/2018″},”geometry”:{“type”:”Point”,”coordinates”:[-81.565978,27.896147]}
},
{“type”:”Feature”,
“properties”:{“name”:”Lakeland Regional Medical Center”,”address”:”1324 Lakeland Hills Blvd, Lakeland”,”date”:”10/1/2018″},”geometry”:{“type”:”Point”,”coordinates”:[-81.954104,28.061048]}
},
{“type”:”Feature”,
“properties”:{“name”:”Leesburg Regional Medical Center”,”address”:”600 E Dixie Ave, Leesburg”,”date”:”7/1/2019″},”geometry”:{“type”:”Point”,”coordinates”:[-81.867406,28.806414]}
},
{“type”:”Feature”,
“properties”:{“name”:”Lifestream Behavioral Center”,”address”:”2020 Tally Road, Leesburg”,”date”:”7/1/2019″},”geometry”:{“type”:”Point”,”coordinates”:[-81.895258,28.836555]}
},
{“type”:”Feature”,
“properties”:{“name”:”LRMC Senior Behavioral Health Center”,”address”:”700 N Palmetto St, Leesburg”,”date”:”7/1/2019″},”geometry”:{“type”:”Point”,”coordinates”:[-81.874655,28.818235]}
},
{“type”:”Feature”,
“properties”:{“name”:”Nemours Children’s Hospital”,”address”:”13535 Nemours Pkwy, Orlando”,”date”:”5/15/2019″},”geometry”:{“type”:”Point”,”coordinates”:[-81.273242,28.376614]}
},
{“type”:”Feature”,
“properties”:{“name”:”Orlando Health Dr P Phillips Hospital”,”address”:”9400 Turkey Lake Road, Orlando”,”date”:”7/1/2019″},”geometry”:{“type”:”Point”,”coordinates”:[-81.47706,28.428486]}
},
{“type”:”Feature”,
“properties”:{“name”:”Orlando Health Orlando Regional Medical Center”,”address”:”52 W Underwood St, Orlando”,”date”:”7/1/2019″},”geometry”:{“type”:”Point”,”coordinates”:[-81.378044,28.526737]}
},
{“type”:”Feature”,
“properties”:{“name”:”Orlando Health South Seminole Hospital”,”address”:”555 W State Road 434, Longwood”,”date”:”7/1/2019″},”geometry”:{“type”:”Point”,”coordinates”:[-81.353633,28.699024]}
},
{“type”:”Feature”,
“properties”:{“name”:”Osceola Regional Medical Center”,”address”:”700 W Oak St, Kissimmee”,”date”:”3/31/2018″},”geometry”:{“type”:”Point”,”coordinates”:[-81.409301,28.299709]}
},
{“type”:”Feature”,
“properties”:{“name”:”Oviedo Medical Center”,”address”:”8300 Red Bug Lake Road, Oviedo”,”date”:”5/7/2019″},”geometry”:{“type”:”Point”,”coordinates”:[-81.227449,28.65793]}
},
{“type”:”Feature”,
“properties”:{“name”:”Poinciana Medical Center”,”address”:”325 Cypress Pkwy, Kissimmee”,”date”:”7/31/2017″},”geometry”:{“type”:”Point”,”coordinates”:[-81.477468,28.144871]}
},
{“type”:”Feature”,
“properties”:{“name”:”Select Specialty Hospital–Orlando (North Campus)”,”address”:”2250 Bedford Road, Orlando”,”date”:”6/12/2019″},”geometry”:{“type”:”Point”,”coordinates”:[-81.370437,28.572369]}
},
{“type”:”Feature”,
“properties”:{“name”:”Select Specialty Hospital–Orlando (South Campus)”,”address”:”5579 S Orange Ave, Orlando”,”date”:”6/12/2019″},”geometry”:{“type”:”Point”,”coordinates”:[-81.368767,28.477463]}
},
{“type”:”Feature”,
“properties”:{“name”:”AdventHealth Altamonte Springs”,”address”:”601 E Altamonte Dr, Altamonte Springs”,”date”:”7/1/19″},”geometry”:{“type”:”Point”,”coordinates”:[-81.370243,28.665387]}
},
{“type”:”Feature”,
“properties”:{“name”:”AdventHealth Apopka”,”address”:”2100 Ocoee Apopka Road, Apopka”,”date”:”7/1/19″},”geometry”:{“type”:”Point”,”coordinates”:[-81.538669,28.64956]}
},
{“type”:”Feature”,
“properties”:{“name”:”South Lake Hospital”,”address”:”1900 Don Wickham Dr, Clermont”,”date”:”9/18/18″},”geometry”:{“type”:”Point”,”coordinates”:[-81.722825,28.552896]}
},
{“type”:”Feature”,
“properties”:{“name”:”St Cloud Regional Medical Center”,”address”:”2906 17th St, Saint Cloud”,”date”:”4/15/19″},”geometry”:{“type”:”Point”,”coordinates”:[-81.302872,28.243535]}
},
{“type”:”Feature”,
“properties”:{“name”:”University Behavioral Center”,”address”:”2500 Discovery Dr, Orlando”,”date”:”9/1/18″},”geometry”:{“type”:”Point”,”coordinates”:[-81.191783,28.581845]}
},
{“type”:”Feature”,
“properties”:{“name”:”Winter Haven Hospital”,”address”:”200 Ave F NE, Winter Haven”,”date”:”2/13/19″},”geometry”:{“type”:”Point”,”coordinates”:[-81.711071,28.06374]}
},
{“type”:”Feature”,
“properties”:{“name”:”Winter Haven Women’s Hospital”,”address”:”101 Ave O SE, Winter Haven”,”date”:”8/30/17″},”geometry”:{“type”:”Point”,”coordinates”:[-81.762456,27.987284]}
}
]
}
},
“layout”: {
“icon-image”: “pulsing-dot-gold”,
“icon-allow-overlap”: true
}
});

map.addImage(“pulsing-dot-blue”, emergencyroom, { pixelRatio: 2 });
map.addLayer({
“id”: “blue”,
“type”: “symbol”,
“source”: {
“type”: “geojson”,
“data”: {
“type”: “FeatureCollection”,
“features”: [
{“type”:”Feature”,
“properties”:{“name”:”AdventHealth Lake Mary ER”,”address”:”950 Rinehart Road, Lake Mary”,”date”:”5/31/16″},”geometry”:{“type”:”Point”,”coordinates”:[-81.34821,28.783722]}
},
{“type”:”Feature”,
“properties”:{“name”:”AdventHealth Winter Garden ER”,”address”:”2000 Fowler Grove Blvd, Winter Garden”,”date”:”2/15/16″},”geometry”:{“type”:”Point”,”coordinates”:[-81.58927,28.524945]}
},
{“type”:”Feature”,
“properties”:{“name”:”Heathrow ER”,”address”:”4525 International Parkway, Sanford”,”date”:”2/12/19″},”geometry”:{“type”:”Point”,”coordinates”:[-81.346257,28.801913]}
},
{“type”:”Feature”,
“properties”:{“name”:”Orlando Health Emergency Room–Horizon West”,”address”:”17000 Porter Road, Winter Garden”,”date”:”9/28/18″},”geometry”:{“type”:”Point”,”coordinates”:[-81.632599,28.458459]}
},
{“type”:”Feature”,
“properties”:{“name”:”Heart of Florida Regional Medical Center Four Corners ER”,”address”:”17430 Bali Blvd, Winter Garden”,”date”:”3/8/19″},”geometry”:{“type”:”Point”,”coordinates”:[-81.649219,28.347768]}
},
{“type”:”Feature”,
“properties”:{“name”:”Orlando Health Emergency Room–Osceola”,”address”:”1001 E Osceola Pkwy, Kissimmee”,”date”:”1/2/19″},”geometry”:{“type”:”Point”,”coordinates”:[-81.394755,28.339608]}
},
{“type”:”Feature”,
“properties”:{“name”:”Hunters Creek ER”,”address”:”12100 S John Young Pkwy, Orlando”,”date”:”6/6/14″},”geometry”:{“type”:”Point”,”coordinates”:[-81.426176,28.390773]}
},
{“type”:”Feature”,
“properties”:{“name”:”Baldwin Park ER”,”address”:”2361 N Semoran Blvd, Orlando”,”date”:”5/7/19″},”geometry”:{“type”:”Point”,”coordinates”:[-81.308624,28.578278]}
},
{“type”:”Feature”,
“properties”:{“name”:”South Lake Hospital Health Pavilion–Blue Cedar”,”address”:”22316 US Highway 27, Leesburg”,”date”:”6/4/18″},”geometry”:{“type”:”Point”,”coordinates”:[-81.851632,28.67165]}
},
{“type”:”Feature”,
“properties”:{“name”:”South Lake Hospital ER and Medical”,”address”:”16966 Cagan Ridge Blvd, Clermont”,”date”:”7/31/18″},”geometry”:{“type”:”Point”,”coordinates”:[-81.674044,28.351634]}
}
]
}
},
“layout”: {
“icon-image”: “pulsing-dot-blue”,
“icon-allow-overlap”: true
}
});

document.getElementById(‘one’).innerHTML =”

Coming soon”+”
“+”

Freestanding ERs”+”
“+”

Hospitals

“;

map.on(‘mousemove’, ‘red’, function(e){
var features = map.queryRenderedFeatures(e.point);
document.getElementById(‘one’).innerHTML = e.features[0].properties.name + “
” + e.features[0].properties.address;
});

map.on(‘mousemove’, ‘blue’, function(e){
var features = map.queryRenderedFeatures(e.point);
document.getElementById(‘one’).innerHTML = e.features[0].properties.name + “
” + e.features[0].properties.address;
});

map.on(‘mousemove’, ‘gold’, function(e){
var features = map.queryRenderedFeatures(e.point);
document.getElementById(‘one’).innerHTML = e.features[0].properties.name + “
” + e.features[0].properties.address;
});
});

AdventHealth recently opened a new hospital in Apopka and is building one in Winter Garden. The company also opened a FSED in Waterford Lakes in 2018 and just broke ground on another in Lake Nona. At least two more are in the pipeline near Disney and on U.S. 192 in the Kissimmee-St. Cloud market, according to plans filed in the last month.

“There are two things that are true,” Tol said. “One, we’re aggressive. And two, we always see opportunity, and so this is an opportunity for us, and it can be an opportunity for our community. That’s how we view it, and that’s how we want to approach it.”

The new rules give the providers more flexibility, too. So Orlando Health could add a modest number of acute care beds to allow for overnight stays at its new Tupperware FSED. And it could fast-forward the the full-service hospitals planned at Randal Park and Lake Mary.

At Reunion, Orlando Health recently paid $14.4 million for nearly 28 acres at the I-4 interchange. Earlier this month, HCA announced it had struck a deal with the master developer of ChampionsGate to locate a new FSED– it’s fifth — about a mile away, just north of the intersection of ChampionsGate Boulevard and Ronald Reagan Parkway.

Expect to see more of that head-to-head competition, according to Anne Spencer, director of office and healthcare brokerage for Cushman & Wakefield.

“Hospital growth is not driven by what the government says you can and can’t do. It’s driven by population growth,” she said. And Orlando is one of the fastest-growing metros in the nation. Hospitals have already built facilities right across from each other – like AdventHealth did with its new FSED across from HCA’s Oviedo Medical Center on Red Bug Lake Road.

“I always draw parallels between healthcare and retail,” she said. “If you look at what a retail user is doing – a Starbucks or a Lucky’s Market, or whatever – they’re looking at demographics, and they’re saying who are our customers? Healthcare’s the same way. Who are our customers – our patients, what’s not here and what should be here. Who’s my competitor and do I make a defensive move or an offensive move?”

Orlando Health is building a 15-acre medical campus in Randal Park. The first phase includes a freestanding emergency department and medical office building, to be completed by March 2020. Future plans for the campus include a hospital with capacity of up to 240 beds, to be developed in multiple phases.
Orlando Health is building a 15-acre medical campus in Randal Park. The first phase includes a freestanding emergency department and medical office building, to be completed by March 2020. Future plans for the campus include a hospital with capacity of up to 240 beds, to be developed in multiple phases.

At Tupperware, Orlando Health invested $32 million on its 60,000-square-foot FSED and medical pavilion. AdventHealth spent $15.6 million on its 19,000-square-foot FSED at Waterford Lakes.

HCA’s ER facilities are typically smaller – at around 11,000 square feet. The Heathrow and Baldwin Park facilities that opened this year each cost around $10 million. The private, for-profit company’s ChampionsGate location, scheduled to open in 2020, will join similar facility in the Millenia area of Orlando which will open later this summer.

The North Florida Division’s Orlando Market is slated to open its fifth hospital in the region, UCF Lake Nona Medical Center, fall 2020. The company was awarded a CON last December to add acute care services at the Heathrow site. The certificate was being challenged, and now that challenge goes away.

While the region’s three main players continue to fight each other for market share, the repeal of CON also opens the door for new healthcare companies to get a foot in the door. Spencer said other states that eliminated CONs saw a spike in development of micro-hospitals, which can have anywhere from 10 to 50 beds.

“I think if we see micro-hospitals, I’m not saying we’re going to, but if we do it will most likely be an out-of-market player,” she said.

Tol absolutely expects new competition from out-of-state.

“I think we’ll see other competitors bringing smaller entities into the community,” he said. “Central Florida is a national target. The systems in the country that have size and scale and that look on a national basis are looking at Central Florida. We know that, and we expect that to be an interesting dynamic.”

And while most of the discussion of the CON repeal has focused on acute care facilities, Tol said not to overlook the changes regarding ambulatory, or outpatient, surgery centers. The bill also cleared the way for those centers to allow patients to stay overnight for a limited periods of time rather than being transferred and admitted to a full-service hospital.

“We have very significant outpatient ambulatory construction plans, and those are at a very fast pace right now,” he said.

Orlando Sentinel reporters Naseem Miller and Adelaide Chen contributed to this report.

Have a tip about Central Florida development? Contact me at lkinsler@GrowthSpotter.com or (407) 420-6261, or tweet me at @LKinslerOGrowth. Follow GrowthSpotter on Facebook, Twitter and LinkedIn.