var map = new OpenLayers.Map("louisville-KY-cash-america-pawn");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( -85.7766, 38.247 ).transform(new OpenLayers.Projection("EPSG:4326"),map.getProjectionObject());map.setCenter (lonLat, zoom);$geo('5516 New Cut Rd, Louisville, KY 40214-4330', '1be5cad2', '3ed25530');$geo('3354 Hikes Ln, Louisville, KY 40220', '535d42a4', '3ed25530');$geo('4636 Dixie Hwy, Louisville, KY 40216', '4d69eaf8', '3ed25530');$geo('1211 W Broadway, Louisville, KY 40203', '9b163819', '3ed25530');$geo('6410 Preston Hwy, Louisville, KY 40219', '70580143', '3ed25530');$geo('4133 Shelbyville Rd, Louisville, KY 40207', '494c0944', '3ed25530');$geo('4313 Preston Hwy, Louisville, KY 40213', 'acf22b2a', '3ed25530');$geo('5700 Bardstown Rd, Louisville, KY 40291', 'bfbefa83', '3ed25530');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';});}