var map = new OpenLayers.Map("hickory-NC-bbt");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( -81.3249, 35.7536 ).transform(new OpenLayers.Projection("EPSG:4326"),map.getProjectionObject());map.setCenter (lonLat, zoom);$geo('2527 S Nc 127 Hwy, Hickory, NC 28602', '5acb7772', '3a26286f');$geo('1856 12th Ave NE, Hickory, NC 28601', 'd1bd6457', '3a26286f');$geo('106 2nd St NW, Hickory, NC 28601', '92990f90', '3a26286f');$geo('1920 N Center St, Hickory, NC 28601', '53380dc8', '3a26286f');$geo('3201 1st Ave SW, Hickory, NC 28602', '01638dec', '3a26286f');$geo('2141 US Highway 70 SE, Hickory, NC 28602', 'd60c7a40', '3a26286f');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';});}