var map = new OpenLayers.Map("salt-lake-city-UT-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( -111.899, 40.7564 ).transform(new OpenLayers.Projection("EPSG:4326"),map.getProjectionObject());map.setCenter (lonLat, zoom);$geo('3425 E 7800 S, Salt Lake City, UT 84121', 'e1379f9f', '4b8d6657');$geo('1290 Foothill Dr, Salt Lake City, UT 84108', '932d42d9', '4b8d6657');$geo('1985 E 7000 S, Salt Lake City, UT 84121', 'facacf84', '4b8d6657');$geo('1095 E 2100 S, Salt Lake City, UT 84106', '91fa0881', '4b8d6657');$geo('778 S Main St, Salt Lake City, UT 84101', '9e46fcd7', '4b8d6657');$geo('1255 Brickyard Rd, Salt Lake City, UT 84106', 'c4338202', '4b8d6657');$geo('381 E Broadway, Salt Lake City, UT 84111', '756f725a', '4b8d6657');$geo('2001 S Main St, Salt Lake City, UT 84115', '955f8cbb', '4b8d6657');$geo('5632 S 900 E, Salt Lake City, UT 84121', '513880c7', '4b8d6657');$geo('783 N Redwood Rd, Salt Lake City, UT 84116', '87e1ad1f', '4b8d6657');$geo('5580 Amelia Earhart Dr, Salt Lake City, UT 84116', '5e536426', '4b8d6657');$geo('2040 S 2300 E, Salt Lake City, UT 84108', '02807a54', '4b8d6657');$geo('5454 S Redwood Rd, Salt Lake City, UT 84123', '679af06b', '4b8d6657');$geo('70 E 3300 S, Salt Lake City, UT 84115', 'cbdee220', '4b8d6657');$geo('3865 S 2300 E, Salt Lake City, UT 84109', '0f90c532', '4b8d6657');$geo('3885 S Wasatch Blvd, Salt Lake City, UT 84109', '1f52568b', '4b8d6657');$geo('4711 Highland Dr, Salt Lake City, UT 84117', '6e0e200a', '4b8d6657');$geo('1955 W North Temple, Salt Lake City, UT 84116', '7967ee02', '4b8d6657');$geo('570 S 700 E # D-114, Salt Lake City, UT 84102', '3ba5bc96', '4b8d6657');$geo('4740 S 900 E, Salt Lake City, UT 84117', '159f06e1', '4b8d6657');$geo('3555 W 3500 S, Salt Lake City, UT 84119', '88221a39', '4b8d6657');$geo('1710 S Redwood Rd, Salt Lake City, UT 84104', '7ccef002', '4b8d6657');$geo('2115 S 3600 W, Salt Lake City, UT 84119', 'ab8371b8', '4b8d6657');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';});}