var map = new OpenLayers.Map("chattanooga-TN-first-tennessee-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( -85.3089, 35.0385 ).transform(new OpenLayers.Projection("EPSG:4326"),map.getProjectionObject());map.setCenter (lonLat, zoom);$geo('979 East Third Street, Chattanooga, TN 37403', 'c4d7bb8a', 'ebbee9ac');$geo('3932 Dayton Blvd, Chattanooga, TN 37415', 'aa7e01ec', 'ebbee9ac');$geo('2173 Northgate Park Lane, Chattanooga, TN 37415', '07322398', 'ebbee9ac');$geo('7820 East Brainerd Road, Chattanooga, TN 37421', '8d359445', 'ebbee9ac');$geo('5401 Ringgold Road, Chattanooga, TN 37412', '5772ddc9', 'ebbee9ac');$geo('1350 Broad Street, Chattanooga, TN 37402', 'c77ef5d8', 'ebbee9ac');$geo('5526 Brainerd Road, Chattanooga, TN 37411', '4911ff1f', 'ebbee9ac');$geo('1 Cherokee Blvd, Chattanooga, TN 37405', '52c7a8d6', 'ebbee9ac');$geo('2221 Hamilton Place Blvd, Chattanooga, TN 37421', 'e2c61131', 'ebbee9ac');$geo('701 Market St, Chattanooga, TN 37402', '49bb067a', 'ebbee9ac');$geo('3604 Tennessee Avenue, Chattanooga, TN 37409', '38a4094b', 'ebbee9ac');$geo('2001 East Twenty Third St, Chattanooga, TN 37404', 'a273c93c', 'ebbee9ac');$geo('4430 Highway 58, Chattanooga, TN 37416', 'e0f62054', 'ebbee9ac');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';});}