var map = new OpenLayers.Map("omaha-NE-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( -95.9313, 41.2622 ).transform(new OpenLayers.Projection("EPSG:4326"),map.getProjectionObject());map.setCenter (lonLat, zoom);$geo('2587 S 171st Ct, Omaha, NE 68130', 'e5de5a45', 'dff2e6af');$geo('18030 R Plz, Omaha, NE 68135', '66f21f29', 'dff2e6af');$geo('5180 Ames Ave, Omaha, NE 68104', 'ff760dc5', 'dff2e6af');$geo('1919 Douglas St, Omaha, NE 68102', '7c871a0e', 'dff2e6af');$geo('3808 N 168th Ave, Omaha, NE 68116', '5a9525e0', 'dff2e6af');$geo('4425 Center St, Omaha, NE 68105', '691a4361', 'dff2e6af');$geo('14666 W Center Rd, Omaha, NE 68144', 'f70e36e0', 'dff2e6af');$geo('4707 S 96th St, Omaha, NE 68127', 'c430a233', 'dff2e6af');$geo('4650 S 24th St, Omaha, NE 68107', 'c0528940', 'dff2e6af');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';});}