var map = new OpenLayers.Map("salt-lake-city-UT-keybank");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('1500 South Foothill Drive, Salt Lake City, UT 84108', '46ab5cf8', '90c431e2');$geo('410 East 400 South, Salt Lake City, UT 84111', '1da61253', '90c431e2');$geo('5625 S Waterbury Way, Salt Lake City, UT 84121', '343fc6ae', '90c431e2');$geo('1098 South 300 West, Salt Lake City, UT 84101', '23a08bc7', '90c431e2');$geo('2299 Highland Dr, Salt Lake City, UT 84106', '5e3af90e', '90c431e2');$geo('4025 S Wasatch Blvd, Salt Lake City, UT 84124', '6c1259c7', '90c431e2');$geo('15 W South Temple, Salt Lake City, UT 84101', '4a2c5ca4', '90c431e2');$geo('36 South State Street, Salt Lake City, UT 84111', 'caf3f880', '90c431e2');$geo('290 South 1300 East, Salt Lake City, UT 84102', '8ac9b1c8', '90c431e2');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';});}