var map = new OpenLayers.Map("miami-FL-bbt");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('15725 S Dixie Hwy, Miami, FL 33157', '35a11d12', '95554f3d');$geo('14690 SW 8th St, Miami, FL 33184', 'ef6754db', '95554f3d');$geo('13001 S Dixie Hwy, Miami, FL 33156', '8b687a70', '95554f3d');$geo('7545 N Kendall Dr, Miami, FL 33156', 'b4532877', '95554f3d');$geo('12390 SW 120th St, Miami, FL 33186', '29830992', '95554f3d');$geo('10899 SW 72nd St, Miami, FL 33173', 'ccf88932', '95554f3d');$geo('11400 N Kendall Dr, Miami, FL 33176', 'f3510033', '95554f3d');$geo('8994 SW 40th St, Miami, FL 33165', 'd13d9185', '95554f3d');$geo('501 Brickell Key Dr, Miami, FL 33131', '0e3b6885', '95554f3d');$geo('13731 SW 152nd St, Miami, FL 33177', '8f9ab4c1', '95554f3d');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';});}