var map = new OpenLayers.Map("dallas-TX-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( -96.7985, 32.7872 ).transform(new OpenLayers.Projection("EPSG:4326"),map.getProjectionObject());map.setCenter (lonLat, zoom);$geo('2724 Greenville Ave, Dallas, TX 75206', 'fe86932d', '60bbb1f5');$geo('10641 Forest Ln, Dallas, TX 75243', '1957ba98', '60bbb1f5');$geo('2820 S Buckner Blvd, Dallas, TX 75227', 'af886d80', '60bbb1f5');$geo('3202 S Lancaster Rd, Dallas, TX 75216', '42ce4189', '60bbb1f5');$geo('2404 Cedar Springs Rd, Dallas, TX 75201', 'fc032b00', '60bbb1f5');$geo('2001 Ross Ave, Dallas, TX 75201', 'af4a9098', '60bbb1f5');$geo('2606 Fort Worth Ave, Dallas, TX 75211', '2a1e353c', '60bbb1f5');$geo('1133 N Zang Blvd, Dallas, TX 75203', 'a0780b03', '60bbb1f5');$geo('11800 Preston Rd, Dallas, TX 75230', 'aaa8feda', '60bbb1f5');$geo('3550 Forest Ln, Dallas, TX 75234', 'ee120055', '60bbb1f5');$geo('14909 Coit Rd, Dallas, TX 75248', '872535b7', '60bbb1f5');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';});}