var map = new OpenLayers.Map("dallas-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( -96.7985, 32.7872 ).transform(new OpenLayers.Projection("EPSG:4326"),map.getProjectionObject());map.setCenter (lonLat, zoom);$geo('2611 Cedar Springs Rd, Dallas, TX 75201', '6af5cb04', '815680be');$geo('4232 Lemmon Ave, Dallas, TX 75219', '676f5a72', '815680be');$geo('19024 Midway Rd, Dallas, TX 75287', '03bd742b', '815680be');$geo('6333 E Mockingbird Ln, Dallas, TX 75214', '3d389b77', '815680be');$geo('2222 Mckinney Ave, Dallas, TX 75201', '73653d41', '815680be');$geo('9508 Garland Rd, Dallas, TX 75218', '82e2d7ff', '815680be');$geo('39703 Lyndon B Johnson Fwy, Dallas, TX 75237', '008e1032', '815680be');$geo('14999 Preston Rd, BLDG F, Dallas, TX 75254', '124e1591', '815680be');$geo('15655 Coit Rd, Dallas, TX 75248', 'ec1798fe', '815680be');$geo('5809 E Lovers Ln, Dallas, TX 75206', '080c6993', '815680be');$geo('3580 Frankford Rd, Dallas, TX 75287', '06d13843', '815680be');$geo('11730 Preston Rd, Dallas, TX 75230', '25ade258', '815680be');$geo('4150 Mockingbird Ln, Dallas, TX 75205', 'e97f5041', '815680be');$geo('1520 N Cockrell Hill Rd, Dallas, TX 75211', 'f481660c', '815680be');$geo('706 N Griffin St, Dallas, TX 75202', 'f328bbeb', '815680be');$geo('6131 La Vista Dr, Dallas, TX 75214', '87c7e5bc', '815680be');$geo('15216 Montfort Rd, Dallas, TX 75248', '15485dc3', '815680be');$geo('7855 Elmbrook Dr, Dallas, TX 75247', 'ece6400e', '815680be');$geo('3535 Forest Ln, Dallas, TX 75234', '5fc17caa', '815680be');$geo('3450 W Illinois Ave, Dallas, TX 75211', 'd8b5a34e', '815680be');$geo('17088 Preston Rd, Dallas, TX 75248', 'ea1fbd92', '815680be');$geo('18190 Dallas Pkwy, Dallas, TX 75287', 'b22b051c', '815680be');$geo('8119 Preston Rd, Dallas, TX 75225', 'd92f2eab', '815680be');$geo('2906 E Ledbetter Dr, Dallas, TX 75216', '287f187f', '815680be');$geo('4301 Lovers Ln, Dallas, TX 75225', '4c26cf08', '815680be');$geo('6900 Snider Plz, Dallas, TX 75205', 'f09dc085', '815680be');$geo('315 S Hampton Rd, Dallas, TX 75208', '659f8e05', '815680be');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';});}