var map = new OpenLayers.Map("phoenix-AZ-checksmart");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( -112.069, 33.4492 ).transform(new OpenLayers.Projection("EPSG:4326"),map.getProjectionObject());map.setCenter (lonLat, zoom);$geo('4846 N 16th St, Phoenix, AZ 85016', '8f5a4f58', 'b83e2057');$geo('7501 W Indian School Rd, Phoenix, AZ 85033', '75b2673d', 'b83e2057');$geo('3219 E Thomas Rd, Phoenix, AZ 85018', '44d7a204', 'b83e2057');$geo('10410 N 35th Ave, Phoenix, AZ 85051', 'f4ebca73', 'b83e2057');$geo('1930 W Indian School Rd, Phoenix, AZ 85015', '680aef61', 'b83e2057');$geo('4301 W Indian School Rd, Phoenix, AZ 85031', '5197b8cb', 'b83e2057');$geo('540 E Thomas Rd, Phoenix, AZ 85012', '9440fc50', 'b83e2057');$geo('5817 W Indian School Rd, Phoenix, AZ 85031', '2e1b254f', 'b83e2057');$geo('7710 W Lower Buckeye Rd, Phoenix, AZ 85043', '7553e0b4', 'b83e2057');$geo('8310 W Thomas St, Phoenix, AZ 85033', '166ea93f', 'b83e2057');$geo('3449 W Northern Ave, Phoenix, AZ 85051', '0df2094c', 'b83e2057');$geo('4840 N 83rd Ave, Phoenix, AZ 85037', '71bee573', 'b83e2057');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';});}