var map = new OpenLayers.Map("atlanta-GA-bank-of-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( -84.3953, 33.8559 ).transform(new OpenLayers.Projection("EPSG:4326"),map.getProjectionObject());map.setCenter (lonLat, zoom);$geo('3680 Camp Creek Pkwy SW, Atlanta, GA 30331', '7dd96464', '0ecdef41');$geo('956 Ponce De Leon Ave NE, Atlanta, GA 30306', '6bdfe3b0', '0ecdef41');$geo('35 Broad St NW, Atlanta, GA 30303', '08d9580f', '0ecdef41');$geo('1088 Peachtree St NE, Atlanta, GA 30309', '15fea05a', '0ecdef41');$geo('600 Peachtree St NE, Atlanta, GA 30308', 'f485efc1', '0ecdef41');$geo('8755 Roswell Rd, Atlanta, GA 30350', '359481aa', '0ecdef41');$geo('1775 Howell Mill Rd NW, Atlanta, GA 30318', 'f6008756', '0ecdef41');$geo('2367 Peachtree Rd NE, Atlanta, GA 30305', '0dc21b60', '0ecdef41');$geo('1280 W Paces Ferry Rd NW, Atlanta, GA 30327', '21573876', '0ecdef41');$geo('411 Flat Shoals Ave SE, Atlanta, GA 30316', 'f0dffd8c', '0ecdef41');$geo('6075 Roswell Rd NE, Atlanta, GA 30328', '7a034b1a', '0ecdef41');$geo('4492 Roswell Rd NE, Atlanta, GA 30342', '9c1fd31d', '0ecdef41');$geo('1615 N Decatur Rd NE, Atlanta, GA 30307', 'b505708c', '0ecdef41');$geo('2625 Piedmont Rd NE, Atlanta, GA 30324', 'b09343f9', '0ecdef41');$geo('2223 N Druid Hills Rd NE, Atlanta, GA 30329', 'fad58908', '0ecdef41');$geo('5442 Peachtree Industrial Blvd, Atlanta, GA 30341', '3e17857e', '0ecdef41');$geo('225 Peachtree St NE, Atlanta, GA 30303', '7ec479c3', '0ecdef41');$geo('3414 Peachtree Rd NE, Atlanta, GA 30326', '176246cb', '0ecdef41');$geo('711 Lee St SW, Atlanta, GA 30310', 'd69dc60e', '0ecdef41');$geo('3057 Akers Mill Rd SE, Atlanta, GA 30339', '05a6f8bb', '0ecdef41');$geo('3800 Browns Mill Rd SE, Atlanta, GA 30354', 'f7357d52', '0ecdef41');$geo('5695 Fulton Industrial Blvd SW, Atlanta, GA 30336', '2c3671c0', '0ecdef41');$geo('2454 Jett Ferry Rd, Atlanta, GA 30338', '0d4d801f', '0ecdef41');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';});}