var map = new OpenLayers.Map("fort-worth-TX-bank-of-america");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.3291, 32.7594 ).transform(new OpenLayers.Projection("EPSG:4326"),map.getProjectionObject());map.setCenter (lonLat, zoom);$geo('6360 Camp Bowie Blvd, Fort Worth, TX 76116', 'fc14eed7', 'cfb5c625');$geo('6100 Rufe Snow Dr, Fort Worth, TX 76148', 'f31df42a', 'cfb5c625');$geo('6400 Lake Worth Blvd, Fort Worth, TX 76135', '4dd532b0', 'cfb5c625');$geo('3100 Altamesa Blvd, Fort Worth, TX 76133', 'a6b2625b', 'cfb5c625');$geo('4751 S Hulen St, Fort Worth, TX 76132', '564967a9', 'cfb5c625');$geo('3100 S University Dr, Fort Worth, TX 76109', '0c1946bc', 'cfb5c625');$geo('5351 River Oaks Blvd, Fort Worth, TX 76114', '68a9f971', 'cfb5c625');$geo('5670 Bryant Irvin Rd, Fort Worth, TX 76132', '5629123e', 'cfb5c625');$geo('116 E Seminary Dr, Fort Worth, TX 76115', '1ca508b7', 'cfb5c625');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';});}