var map = new OpenLayers.Map("pittsburgh-PA-dollar-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( -79.9543, 40.4707 ).transform(new OpenLayers.Projection("EPSG:4326"),map.getProjectionObject());map.setCenter (lonLat, zoom);$geo('6320 Shakespeare St, Pittsburgh, PA 15206-4096', '0c86781b', 'a9bd662d');$geo('1712 E Carson St, Pittsburgh, PA 15203-1706', 'a07d629d', 'a9bd662d');$geo('537 Smithfield St, Pittsburgh, PA 15222-2303', '198c87dd', 'a9bd662d');$geo('500 Clairton Blvd, Pittsburgh, PA 15236-3810', '625663b6', 'a9bd662d');$geo('500 Providence Point Blvd, Pittsburgh, PA 15243-1075', '315b42b8', 'a9bd662d');$geo('8040 Peebles Rd, Pittsburgh, PA 15237', '56cded2b', 'a9bd662d');$geo('401 Liberty Ave, Pittsburgh, PA 15222-1021', 'b0011782', 'a9bd662d');$geo('5822 Forbes Ave, Pittsburgh, PA 15217-1624', '70cfafc7', 'a9bd662d');$geo('225 Forbes Ave, Pittsburgh, PA 15222-1805', '3fee1550', 'a9bd662d');$geo('274 Yost Blvd, Pittsburgh, PA 15221-4898', '54e08cd8', 'a9bd662d');$geo('340 4th Ave, Pittsburgh, PA 15222-2001', '95896d80', 'a9bd662d');$geo('3714 5th Ave, Pittsburgh, PA 15213-3405', '77d5a9d7', 'a9bd662d');$geo('218 Rodi Rd, Pittsburgh, PA 15235-3337', 'e5816b9a', 'a9bd662d');$geo('1850 Centre Ave, Pittsburgh, PA 15219-4306', '18ee066b', 'a9bd662d');$geo('1717 Cochran Rd, Pittsburgh, PA 15220-1096', '472c98d6', 'a9bd662d');$geo('400 Mount Lebanon Blvd, Pittsburgh, PA 15234-1513', '2594506c', 'a9bd662d');$geo('700 Towne Square Way, Pittsburgh, PA 15227-3253', '83da710d', 'a9bd662d');$geo('45 Walsh Rd, Pittsburgh, PA 15205-2336', '890041b0', 'a9bd662d');$geo('1009 Freeport Rd, Pittsburgh, PA 15238-6135', '5875bf68', 'a9bd662d');$geo('6460 Steubenville Pike, Pittsburgh, PA 15205-1004', '1d60aaf0', 'a9bd662d');$geo('172 Allegheny Center Mall, Pittsburgh, PA 15212-5336', '53669988', 'a9bd662d');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';});}