var map = new OpenLayers.Map("dallas-TX-pls-loan-store");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('6500 Skillman St, Dallas, TX 75231', '1c99f698', '53633cc4');$geo('2332 W Davis St, Dallas, TX 75208', 'b2705c0f', '53633cc4');$geo('11403 Garland Rd, Dallas, TX 75218', '3b3ab416', '53633cc4');$geo('7909 Spring Valley Rd, Dallas, TX 75254', '823fd7e9', '53633cc4');$geo('3430 Lombardy Ln, Dallas, TX 75220', 'dcda38e1', '53633cc4');$geo('3311 W Illinois Ave, Dallas, TX 75211', '53aac0a7', '53633cc4');$geo('2100 Singleton Blvd, Dallas, TX 75234', '9d2ad846', '53633cc4');$geo('8122 Lake June Rd, Dallas, TX 75217', 'f8d027c9', '53633cc4');$geo('3003 W Northwest Hwy, Dallas, TX 75220', '2fa59538', '53633cc4');$geo('9441 Forest Ln, Dallas, TX 75243', '7369f1e1', '53633cc4');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';});}