var map = new OpenLayers.Map("atlanta-GA-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( -84.3953, 33.8559 ).transform(new OpenLayers.Projection("EPSG:4326"),map.getProjectionObject());map.setCenter (lonLat, zoom);$geo('6343 Roswell Rd NE, Atlanta, GA 30328', '6a29946f', 'f5af7864');$geo('3379 Peachtree Rd NE, Atlanta, GA 30326', 'b31c42f4', 'f5af7864');$geo('1355 Peachtree St NE, Atlanta, GA 30309', 'ddbf75b1', 'f5af7864');$geo('271 17th St Nw, Atlanta, GA 30363', '456957ca', 'f5af7864');$geo('3630 Peachtree Rd NE, Atlanta, GA 30326', '06929be8', 'f5af7864');$geo('3175 Cobb Galleria Pkwy, Atlanta, GA 30339', '9147c4f2', 'f5af7864');$geo('2255 Peachtree Rd NE, Atlanta, GA 30309', '4d958c4b', 'f5af7864');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';});}