var map = new OpenLayers.Map("miami-FL-wells-fargo-bank");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('2500 Nw 72nd Ave, Miami, FL 33122', 'b1425f16', 'b9710d8e');$geo('1700 NW 87th Ave, Miami, FL 33172', '623ca58d', 'b9710d8e');$geo('16301 SW 88th St, Miami, FL 33196', 'e5fee710', 'b9710d8e');$geo('10815 Sunset Dr, Miami, FL 33173', '6a222fdb', 'b9710d8e');$geo('11765 S Dixie Hwy, Miami, FL 33156', '0bd2552c', 'b9710d8e');$geo('100 E Flagler St, Miami, FL 33131', 'c538babd', 'b9710d8e');$geo('622 Sw 27th Ave, Miami, FL 33135', 'f09c2493', 'b9710d8e');$geo('1051 Nw 14th St, Miami, FL 33136', '8196e6bb', 'b9710d8e');$geo('7100 N Kendall Dr, Miami, FL 33156', '1a34d7b6', 'b9710d8e');$geo('8550 SW 24th St, Miami, FL 33155', '622bdcc4', 'b9710d8e');$geo('5620 SW 137th Ave, Miami, FL 33183', 'f52bc967', 'b9710d8e');$geo('1752 Biscayne Blvd, Miami, FL 33132', '463a9ebd', 'b9710d8e');$geo('9600 SW 40th St, Miami, FL 33165', '1f4566eb', 'b9710d8e');$geo('10781 W Flagler St, Miami, FL 33174', '967b91bb', 'b9710d8e');$geo('5880 Bird Rd, Miami, FL 33155', '5a7ae261', 'b9710d8e');$geo('900 SW 57th Ave, Miami, FL 33144', '67aae886', 'b9710d8e');$geo('17401 SW 97th Ave, Miami, FL 33157', '5614fbed', 'b9710d8e');$geo('14801 S Dixie Hwy, Miami, FL 33176', '207775ed', 'b9710d8e');$geo('13500 SW 120th St, Miami, FL 33186', 'bbe1a9ca', 'b9710d8e');$geo('433 Nw 42nd Ave, Miami, FL 33126', '07488749', 'b9710d8e');$geo('200 S Biscayne Blvd, Miami, FL 33131', '5be0a712', 'b9710d8e');$geo('12200 SW 8th St, Miami, FL 33184', '46db2fb9', 'b9710d8e');$geo('169 SW 8th St, Miami, FL 33130', 'f80e1432', 'b9710d8e');$geo('14600 SW 26th St, Miami, FL 33175', '25b7d7f6', 'b9710d8e');$geo('8390 Nw 27th Ave, Miami, FL 33147', '30391ff9', 'b9710d8e');$geo('9301 NW 7th Ave, Miami, FL 33150', '6153cdec', 'b9710d8e');$geo('8201 NW 36th St, Miami, FL 33166', 'a7ead833', 'b9710d8e');$geo('11200 Sw 8th St, MIAMI, FL 33199', 'da2df95a', 'b9710d8e');$geo('2090 NW 107th Ave, Miami, FL 33172', '8bd3da3d', 'b9710d8e');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';});}