var map = new OpenLayers.Map("corpus-christi-TX-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( -97.4047, 27.7981 ).transform(new OpenLayers.Projection("EPSG:4326"),map.getProjectionObject());map.setCenter (lonLat, zoom);$geo('4251 S Alameda St, Corpus Christi, TX 78412', '02d507d9', '598b8a3f');$geo('1190 Waldron Rd, Corpus Christi, TX 78418', '922862af', '598b8a3f');$geo('13630 Northwest Blvd, Corpus Christi, TX 78410', '6316c044', '598b8a3f');$geo('615 N Upper Broadway St, Corpus Christi, TX 78401', '8f0d2ed2', '598b8a3f');$geo('6300 Ocean Dr, Corpus Christi, TX 78412', '7ff223ed', '598b8a3f');$geo('522 N Tancahua St, Corpus Christi, TX 78401', 'e13bb143', '598b8a3f');$geo('4881 Saratoga Blvd, Corpus Christi, TX 78413', 'ca3fabb4', '598b8a3f');$geo('6000 S Padre Island Dr, Corpus Christi, TX 78412', '526abf8f', '598b8a3f');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';});}