var map = new OpenLayers.Map("austin-TX-national-pawn-jewelry");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( -97.7499, 30.2202 ).transform(new OpenLayers.Projection("EPSG:4326"),map.getProjectionObject());map.setCenter (lonLat, zoom);$geo('111 W William Cannon Dr, Austin, TX 78745', '7f386342', 'd751e003');$geo('1138 Airport Blvd, Austin, TX 78702', '9e1aa6b2', 'd751e003');$geo('5416 Manchaca Rd, Austin, TX 78745', '6522f3ee', 'd751e003');$geo('11304 N Interstate 35, Austin, TX 78753', '981a3fec', 'd751e003');$geo('2201 Lake Austin Blvd, Austin, TX 78703', 'c9d12efd', 'd751e003');$geo('5405 S Pleasant Valley Rd, Austin, TX 78744', '7bc6300d', 'd751e003');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';});}