var map = new OpenLayers.Map("las-vegas-NV-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( -115.123, 36.175 ).transform(new OpenLayers.Projection("EPSG:4326"),map.getProjectionObject());map.setCenter (lonLat, zoom);$geo('5500 Boulder Hwy, Las Vegas, NV 89122', 'b0159042', '9a44a7db');$geo('4421 E Bonanza Rd, Las Vegas, NV 89110', '6ef35b95', '9a44a7db');$geo('791 N Nellis Blvd, Las Vegas, NV 89110', 'befd4fce', '9a44a7db');$geo('10090 W Tropicana Ave, Las Vegas, NV 89147', '2b1ad1ce', '9a44a7db');$geo('4016 S Rainbow Blvd, Las Vegas, NV 89103', '0badabdc', '9a44a7db');$geo('7255 S Rainbow Blvd, Las Vegas, NV 89118', '1f3b6552', '9a44a7db');$geo('3300 W Sahara Ave, Las Vegas, NV 89102', 'fee822a4', '9a44a7db');$geo('7290 S Durango Dr, Las Vegas, NV 89113', '7a70dfd6', '9a44a7db');$geo('2875 S Nellis Blvd, Las Vegas, NV 89121', '7dd9c64a', '9a44a7db');$geo('8350 W Cheyenne Ave, Las Vegas, NV 89129', '30c12078', '9a44a7db');$geo('4578 Boulder Hwy, Las Vegas, NV 89121', '54088111', '9a44a7db');$geo('7100 N Durango Dr, Las Vegas, NV 89149', '0ca6e5a2', '9a44a7db');$geo('2501 S Rainbow Blvd, Las Vegas, NV 89146', '16330e6d', '9a44a7db');$geo('11730 W Charleston Blvd, Las Vegas, NV 89135', '20c0535d', '9a44a7db');$geo('1700 E Charleston Blvd, Las Vegas, NV 89104', 'f23ea707', '9a44a7db');$geo('10475 S Decatur Blvd, Las Vegas, NV 89141', 'e2d552b0', '9a44a7db');$geo('10410 W Cheyenne Ave, Las Vegas, NV 89129', '1d204a3a', '9a44a7db');$geo('9410 W Lake Mead Blvd, Las Vegas, NV 89134', '28929b71', '9a44a7db');$geo('445 E Windmill Ln, Las Vegas, NV 89123', 'f7b0c3a4', '9a44a7db');$geo('10850 W Charleston Blvd, Las Vegas, NV 89135', 'e04df552', '9a44a7db');$geo('4075 S Ft Apache Rd, Las Vegas, NV 89147', '236e6bc3', '9a44a7db');$geo('4215 E Charleston Blvd, Las Vegas, NV 89104', 'c8eec8bd', '9a44a7db');$geo('8190 W Sahara Ave, Las Vegas, NV 89117', 'f7712bfa', '9a44a7db');$geo('7530 W Lake Mead Blvd, Las Vegas, NV 89128', '168d3374', '9a44a7db');$geo('5410 W Charleston Blvd, Las Vegas, NV 89146', '6c490c54', '9a44a7db');$geo('4425 W Russell Rd, Las Vegas, NV 89118', 'c8452ac9', '9a44a7db');$geo('2550 S Ft Apache Rd, Las Vegas, NV 89117', 'd1331006', '9a44a7db');$geo('3726 E Flamingo Rd, Las Vegas, NV 89121', 'ceb562b6', '9a44a7db');$geo('1021 W Owens Ave, Las Vegas, NV 89106', 'c5ac1b82', '9a44a7db');$geo('3433 S Maryland Pkwy, Las Vegas, NV 89169', 'e2bcf9a9', '9a44a7db');$geo('5960 Centennial Center Blvd, Las Vegas, NV 89149', 'e4a12f97', '9a44a7db');$geo('1001 S Rainbow Blvd, Las Vegas, NV 89145', 'c3a2f030', '9a44a7db');$geo('1775 N Decatur Blvd, Las Vegas, NV 89108', '333d99a6', '9a44a7db');$geo('2420 E Sunset Rd, LAS VEGAS, NV 89120', '9e2db621', '9a44a7db');$geo('5975 W Tropicana Ave, LAS VEGAS, NV 89103', 'a6e5e565', '9a44a7db');$geo('5757 Wayne Newton Blvd, Las Vegas, NV 89119', 'b973602f', '9a44a7db');$geo('6885 E Lake Mead Blvd, Las Vegas, NV 89156', 'b821ca35', '9a44a7db');$geo('801 S Rancho Dr, Las Vegas, NV 89106', 'b26b33c6', '9a44a7db');$geo('1129 Sierra Vista Dr, Las Vegas, NV 89169', '6892cac6', '9a44a7db');$geo('4850 W Craig Rd, Las Vegas, NV 89130', '33d8a5c0', '9a44a7db');$geo('7271 S Eastern Ave, Las Vegas, NV 89119', 'd27a8851', '9a44a7db');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';});}