var locations = [
["Beaumont Campus, 550 IH-10 South, Suite 200, Beaumont, TX 77707", 30.07249186984483, -94.13590539325344],
["Austin Campus, 4100 Ed Bluestein Blvd., Austin, TX 78721", 30.276698136050868, -97.66893753117651],
["San Antonio Campus, 11127 Osgood #2, San Antonio, TX 78233", 29.541506727269393, -98.38495074468631],
["Dallas Campus, 460 S State Hwy 5, Fairview, TX 75244", 33.13738521450879, -96.64061785060811],
["Houston Campus, 3103 N Hwy 146, Baytown, TX 77520", 29.7569124, -94.939183],
];
var map = L.map('map').setView([30.282355298052373, -92.0479782069971], 6);
mapLink =
'
OpenStreetMap';
L.tileLayer(
'http://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png', {
attribution: '© ' + mapLink + ' Contributors',
maxZoom: 10,
}).addTo(map);
for (var i = 0; i < locations.length; i++) {
marker = new L.marker([locations[i][1], locations[i][2]])
.bindPopup(locations[i][0])
.addTo(map);
}