var map = new OpenLayers.Map("miami-FL-advance-america");map.addLayer(new OpenLayers.Layer.OSM("OpenStreetMap", ['//a.tile.openstreetmap.org/${z}/${x}/${y}.png','//b.tile.openstreetmap.org/${z}/${x}/${y}.png','//c.tile.openstreetmap.org/${z}/${x}/${y}.png'], null)); var zoom=9;var lonLat = new OpenLayers.LonLat( -80.1977, 25.7791 ).transform(new OpenLayers.Projection("EPSG:4326"),map.getProjectionObject());map.setCenter (lonLat, zoom);$geo('15102 SW 72nd St., Miami, FL 33193', 'aaa35ee7', '15effd30');$geo('11656 N. Kendall Drive, Miami, FL 33176', '0532a64f', '15effd30');$geo('20318 NW 2nd Ave., #5, Miami, FL 33169', '9f5a36dc', '15effd30');$geo('9531 W. Flagler St., Bay #10, Miami, FL 33174', '29ab1554', '15effd30');$geo('9516 SW 160th St., Miami, FL 33157', '45c3f634', '15effd30');$geo('11865 SW 26th St. #A6, Miami, FL 33175', 'c08fa621', '15effd30');$geo('14645 SW 104th St., Miami, FL 33186', 'c62bb368', '15effd30');$geo('10731 West Flagler St., Miami, FL 33174', '9056ab42', '15effd30');$geo('2964 SW 8th Street, Miami, FL 33135', '4b2e3bdf', '15effd30');$geo('900 SW 67th Ave., Ste. 35, Miami, FL 33144', '86098877', '15effd30');$geo('821 NW 37th Ave., Miami, FL 33125', '336552f6', '15effd30');$geo('18502 NW 67th Ave., Ste. 20, Miami, FL 33015', '2c8309d7', '15effd30');$geo('8300 NW 27th Ave., Miami, FL 33147', 'a1e394fb', '15effd30');$geo('19750 S. Dixie Hwy., Miami, FL 33157', '854a17c8', '15effd30');function $setCenter($lon, $lat){map.setCenter(new OpenLayers.LonLat($lon,$lat).transform(new OpenLayers.Projection('EPSG:4326'), map.getProjectionObject() ), 18);}function $geo($location, $hash, $hash2){var $geocode = 'https://nominatim.openstreetmap.org/search?q='+$location+'&format=json'; $.getJSON($geocode, function(data) {var lonLat = new OpenLayers.LonLat( data[0]['lon'] , data[0]['lat'] ).transform(new OpenLayers.Projection("EPSG:4326"),map.getProjectionObject());var markers = new OpenLayers.Layer.Markers( "Markers" );map.addLayer(markers);markers.addMarker(new OpenLayers.Marker(lonLat));map.setCenter (lonLat, 12);document.getElementById($hash).innerHTML += ' | View Map';});}