var map = new OpenLayers.Map("scottsdale-AZ-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.907, 33.5231 ).transform(new OpenLayers.Projection("EPSG:4326"),map.getProjectionObject());map.setCenter (lonLat, zoom);$geo('10959 E Dynamite Blvd, Scottsdale, AZ 85262', 'f9ac2333', '8bdce7ba');$geo('11275 E Via Linda, Scottsdale, AZ 85259', 'd7b465e4', '8bdce7ba');$geo('4857 E Greenway Rd, Scottsdale, AZ 85254', '64140852', '8bdce7ba');$geo('34502 N Scottsdale Rd, Scottsdale, AZ 85266', '1516c3b0', '8bdce7ba');$geo('23405 N Scottsdale Rd, Scottsdale, AZ 85255', 'f037c73a', '8bdce7ba');$geo('10921 N Scottsdale Rd, Scottsdale, AZ 85254', '706f6022', '8bdce7ba');$geo('8675 N Scottsdale Rd, Scottsdale, AZ 85253', 'f29e2b78', '8bdce7ba');$geo('6015 N Scottsdale Rd, Scottsdale, AZ 85250', '27be2dec', '8bdce7ba');$geo('14595 N Scottsdale Rd, Scottsdale, AZ 85254', '56406b08', '8bdce7ba');$geo('7920 E Chaparral Rd, Scottsdale, AZ 85250', 'cc05e7d9', '8bdce7ba');$geo('14696 N Frank Lloyd Wright Blvd, Scottsdale, AZ 85260', '8d1ca711', '8bdce7ba');$geo('15760 N Frank Lloyd Wright Blvd, Scottsdale, AZ 85260', 'd224b31b', '8bdce7ba');$geo('6965 N Hayden Rd, Scottsdale, AZ 85250', '7d88abcf', '8bdce7ba');$geo('10450 N 90th St, Scottsdale, AZ 85258', '3b7778f2', '8bdce7ba');$geo('6321 E Greenway Rd, Scottsdale, AZ 85254', 'b2bdb723', '8bdce7ba');$geo('10111 E Bell Rd, Scottsdale, AZ 85260', '0cbb800b', '8bdce7ba');$geo('23435 N Pima Rd, STE 173A, Scottsdale, AZ 85255', '2cd07352', '8bdce7ba');$geo('20745 N Scottsdale Rd, Scottsdale, AZ 85255', '4f0e6346', '8bdce7ba');$geo('2785 N Scottsdale Rd, Scottsdale, AZ 85257', '03abc40f', '8bdce7ba');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';});}