<!DOCTYPE html>

<html>
  <head>
    <script type="text/javascript" src="http://github.com/simplegeo/polymaps/raw/v2.2.0/polymaps.min.js"></script>
    <script type="text/javascript" src="http://github.com/mbostock/polymaps/raw/586fbb0346548a5559b6edea8aab76ac51334da5/lib/crimespotting/crimespotting.js"></script>
    <style type="text/css">

@import url("http://github.com/simplegeo/polymaps/raw/v2.2.0/examples/example.css");

html, body {
  height: 100%;
  background: #E6E6E6;
}

svg {
  display: block;
}

    </style>
  </head>
  <body>
    <script type="text/javascript">

var po = org.polymaps;

var svg = document.body.appendChild(po.svg("svg")),
    defs = svg.appendChild(po.svg("defs")),
    rg = defs.appendChild(po.svg("radialGradient")),
    s0 = rg.appendChild(po.svg("stop")),
    s1 = rg.appendChild(po.svg("stop"));
 
 
rg1 = defs.appendChild(po.svg("radialGradient")),
s01 = rg1.appendChild(po.svg("stop")),
s11 = rg1.appendChild(po.svg("stop"));

rg2 = defs.appendChild(po.svg("radialGradient")),
s02 = rg2.appendChild(po.svg("stop")),
s12 = rg2.appendChild(po.svg("stop"));

rg3 = defs.appendChild(po.svg("radialGradient")),
s03 = rg3.appendChild(po.svg("stop")),
s13 = rg3.appendChild(po.svg("stop"));

rg4 = defs.appendChild(po.svg("radialGradient")),
s04 = rg4.appendChild(po.svg("stop")),
s14 = rg4.appendChild(po.svg("stop"));

rg5 = defs.appendChild(po.svg("radialGradient")),
s05 = rg5.appendChild(po.svg("stop")),
s15 = rg5.appendChild(po.svg("stop"));

rg6 = defs.appendChild(po.svg("radialGradient")),
s06 = rg6.appendChild(po.svg("stop")),
s16 = rg6.appendChild(po.svg("stop"));

rg7 = defs.appendChild(po.svg("radialGradient")),
s07 = rg7.appendChild(po.svg("stop")),
s17 = rg7.appendChild(po.svg("stop"));

rg8 = defs.appendChild(po.svg("radialGradient")),
s08 = rg8.appendChild(po.svg("stop")),
s18 = rg8.appendChild(po.svg("stop"));
/* rg.setAttribute("id", "gradient1");
s0.setAttribute("offset", "0%");
s0.setAttribute("stop-color", "#ff0000");
s1.setAttribute("offset", "100%");
s1.setAttribute("stop-color", "#ff0000");
s1.setAttribute("stop-opacity", 0); */


var map = po.map()
    .container(svg)
    .center({lat: 36.21401, lon: -115.2424})
    .zoom(12)
    .add(po.interact());

map.add(po.image()
    .url(po.url("http://{S}tile.cloudmade.com"
    + "/1a1b06b230af4efdbb989ea99e9841af" // http://cloudmade.com/register
    + "/998/256/{Z}/{X}/{Y}.png")
    .hosts(["a.", "b.", "c.", ""])));

	    
map.add(po.geoJson().url("lasvegas.json")
	    .on("load", load));

map.add(po.compass()
    .pan("none"));

/** Post-process the GeoJSON points! */
function load(e) {
 // var r = 20 * Math.pow(2, e.tile.zoom - 12);
  var r = 4;
  for (var i = 0; i < e.features.length; i++) {
    var c = e.features[i].element;
    var star = parseFloat(e.features[i].data.properties.stars);
    
    if(star==3.5){
    c.setAttribute("r", r);
    rg.setAttribute("id", "gradient");
    s0.setAttribute("offset", "0%");
    s0.setAttribute("stop-color", "#FF9999");
    s1.setAttribute("offset", "100%");
    s1.setAttribute("stop-color", "#FF9999");
    s1.setAttribute("stop-opacity", 0);
    c.setAttribute("fill", "url(#gradient)");
  // c.setAttribute("fill","#ffffff");
    } else if (star==3){
    	c.setAttribute("r", r);
        rg1.setAttribute("id", "gradient1");
        s01.setAttribute("offset", "0%");
        s01.setAttribute("stop-color", "#FFADAD");
        s11.setAttribute("offset", "100%");
        s11.setAttribute("stop-color", "#FFADAD");
        s11.setAttribute("stop-opacity", 0);
        c.setAttribute("fill", "url(#gradient1)");
    }else if(star==2.5){
    	c.setAttribute("r", r);
        rg2.setAttribute("id", "gradient2");
        s02.setAttribute("offset", "0%");
        s02.setAttribute("stop-color", "#FFC2C2");
        s12.setAttribute("offset", "100%");
        s12.setAttribute("stop-color", "#FFC2C2");
        s12.setAttribute("stop-opacity", 0);
        c.setAttribute("fill", "url(#gradient2)");
    }else if(star==2){
    	c.setAttribute("r", r);
        rg3.setAttribute("id", "gradient3");
        s03.setAttribute("offset", "0%");
        s03.setAttribute("stop-color", "#FFD6D6");
        s13.setAttribute("offset", "100%");
        s13.setAttribute("stop-color", "#FFD6D6");
        s13.setAttribute("stop-opacity", 0);
        c.setAttribute("fill", "url(#gradient3)");
    }else if(star==1.5){
    	c.setAttribute("r", r);
        rg4.setAttribute("id", "gradient4");
        s04.setAttribute("offset", "0%");
        s04.setAttribute("stop-color", "#FFEBEB");
        s14.setAttribute("offset", "100%");
        s14.setAttribute("stop-color", "#FFEBEB");
        s14.setAttribute("stop-opacity", 0);
        c.setAttribute("fill", "url(#gradient4)");
    }else if(star==1){
    	c.setAttribute("r", r);
        rg5.setAttribute("id", "gradient5");
        s05.setAttribute("offset", "0%");
        s05.setAttribute("stop-color", "#FFFFFF");
        s15.setAttribute("offset", "100%");
        s15.setAttribute("stop-color", "#FFFFFF");
        s15.setAttribute("stop-opacity", 0);
        c.setAttribute("fill", "url(#gradient5)");
    }else if(star==4){
    	c.setAttribute("r", r);
        rg6.setAttribute("id", "gradient6");
        s06.setAttribute("offset", "0%");
        s06.setAttribute("stop-color", "#FF8585");
        s16.setAttribute("offset", "100%");
        s16.setAttribute("stop-color", "#FF8585");
        s16.setAttribute("stop-opacity", 0);
        c.setAttribute("fill", "url(#gradient6)");
    }else if(star==4.5){
    	c.setAttribute("r", r);
        rg7.setAttribute("id", "gradient7");
        s07.setAttribute("offset", "0%");
        s07.setAttribute("stop-color", "#D22020");
        s17.setAttribute("offset", "100%");
        s17.setAttribute("stop-color", "#D22020");
        s17.setAttribute("stop-opacity", 0);
        c.setAttribute("fill", "url(#gradient7)");
    }else if(star==5){
    	c.setAttribute("r", r);
        rg8.setAttribute("id", "gradient8");
        s08.setAttribute("offset", "0%");
        s08.setAttribute("stop-color", "#CC0000");
        s18.setAttribute("offset", "100%");
        s18.setAttribute("stop-color", "#CC0000");
        s18.setAttribute("stop-opacity", 0);
        c.setAttribute("fill", "url(#gradient8)");
    }
}
}

    </script>
    <span id="copy">
      &copy; 2010
      <a href="http://www.cloudmade.com/">CloudMade</a>,
      <a href="http://www.openstreetmap.org/">OpenStreetMap</a> contributors,
      <a href="http://creativecommons.org/licenses/by-sa/2.0/">CCBYSA</a>.
    </span>
  </body>
</html>
// Code goes here

/* Styles go here */

{"type":"FeatureCollection","features":[{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.3043961,36.1924136]},"properties":{"stars":"3.5","name":"Chianti Cafe","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1554737,36.1467161]},"properties":{"stars":"3.5","name":"Silver Nugget Steak House","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.107916,36.209644]},"properties":{"stars":"3.5","name":"Rigos Taco","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.117691,36.24031448]},"properties":{"stars":"3.5","name":"Mulligans Bar & Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.121018,36.1962]},"properties":{"stars":"3","name":"Carl's Jr Restaurants","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.126973,36.219109]},"properties":{"stars":"1","name":"McDonald's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.125484,36.218527]},"properties":{"stars":"2.5","name":"Jack In the Box 7250","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.120023,36.240289]},"properties":{"stars":"3.5","name":"Sonic Drive-In","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.095269,36.239906]},"properties":{"stars":"2.5","name":"Burger King","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.095917,36.239895]},"properties":{"stars":"3.5","name":"Jack In the Box","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.0961764,36.2406148]},"properties":{"stars":"4","name":"Viva Zapatas Mexican Restaurant & Cantina","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1176258,36.1959253]},"properties":{"stars":"4","name":"Tortas El Rey","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.0925723,36.2186108]},"properties":{"stars":"3.5","name":"Uss Fish N Chips","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.122149,36.1961399]},"properties":{"stars":"1.5","name":"Wendy's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1271645,36.2176891]},"properties":{"stars":"2.5","name":"Denny's Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.126747,36.196154]},"properties":{"stars":"4.5","name":"German-American Social Club of Nevada","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.113274,36.205589]},"properties":{"stars":"3","name":"Opera House Saloon & Casino","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1574767,36.2044716]},"properties":{"stars":"4","name":"Las Islitas Mariscos","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1160736,36.21800613]},"properties":{"stars":"4","name":"Hamburger Hut 'N' Market","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.161504,36.2383]},"properties":{"stars":"3","name":"Arby's Roast Beef Sandwich Restaurants","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.159512,36.2378705]},"properties":{"stars":"4","name":"Capriotti's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.160812,36.237893]},"properties":{"stars":"4","name":"Que Mas Mexican Cafe","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.15999,36.2397894]},"properties":{"stars":"3","name":"Kfc","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1621298,36.2308628]},"properties":{"stars":"3","name":"Chai Tip's Thai and Chinese","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.191711,36.197365]},"properties":{"stars":"3","name":"Fatburger","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2021027,36.23931885]},"properties":{"stars":"2","name":"Papa John's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.167889,36.238918]},"properties":{"stars":"3","name":"Del Taco","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.159276,36.24094]},"properties":{"stars":"3.5","name":"Port of Subs","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1804956,36.2179775]},"properties":{"stars":"3","name":"Town Center Lounge II","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1776202,36.2391844]},"properties":{"stars":"3","name":"Outback Steakhouse","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1930006,36.19832048]},"properties":{"stars":"4.5","name":"Sbarro","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.160622,36.239889]},"properties":{"stars":"1.5","name":"McDonald's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.20219,36.239393]},"properties":{"stars":"3.5","name":"Grand China","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1993719,36.2388776]},"properties":{"stars":"4","name":"Sundance Kid Cafe","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1652561,36.2390369]},"properties":{"stars":"3","name":"Applebee's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.125401,36.17311]},"properties":{"stars":"4","name":"Pizza Hut","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1186131,36.0174194]},"properties":{"stars":"3.5","name":"Fado Irish Pub","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.197904,36.125908]},"properties":{"stars":"3.5","name":"Cafe Noodle & Chinese Barbeque","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.193971,36.126177]},"properties":{"stars":"3.5","name":"Pho Kim Long","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.207747,36.142935]},"properties":{"stars":"3.5","name":"Oiga","":" Vea Colombian Cuisine"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.187809,36.145672]},"properties":{"stars":"5","name":"Courtyard Deli","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.206002,36.130335]},"properties":{"stars":"2.5","name":"Subway","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1969938,36.1263784]},"properties":{"stars":"3","name":"Pho Vietnam Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2080092,36.1430045]},"properties":{"stars":"3.5","name":"Einstein Bros","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.197655,36.1263667]},"properties":{"stars":"4","name":"Sesame House","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1908392,36.1445245]},"properties":{"stars":"3","name":"China Joe's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1924057,36.13191223]},"properties":{"stars":"4","name":"Las Pupusas Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1747246,36.1444845]},"properties":{"stars":"3","name":"Romano's Macaroni Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.175625,36.144997]},"properties":{"stars":"3","name":"Landry's Seafood","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2062973,36.1262669]},"properties":{"stars":"3.5","name":"Pho So 1","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.197904,36.125908]},"properties":{"stars":"2.5","name":"Pho Nhu  Y","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1934267,36.12648882]},"properties":{"stars":"3.5","name":"Tofu Hut","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1905468,36.1463479]},"properties":{"stars":"3.5","name":"Tacos El Burrito Loco","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2098129,36.1486584]},"properties":{"stars":"3.5","name":"Dotty's #7","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1892,36.1472]},"properties":{"stars":"4","name":"PT's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.20472,36.145118]},"properties":{"stars":"4","name":"Samosa Factory","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.207382,36.153466]},"properties":{"stars":"1.5","name":"Lone Star Steakhouse & Saloon","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.206888,36.126543]},"properties":{"stars":"2.5","name":"Rice To-Go","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.194408,36.14402]},"properties":{"stars":"1","name":"Wienerschnitzel","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1907265,36.1457714]},"properties":{"stars":"4","name":"Hawaiian Hale","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.200935,36.1447963]},"properties":{"stars":"1.5","name":"Kfc","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.184269,36.14397437]},"properties":{"stars":"2.5","name":"Pizza Hut","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1720445,36.1590135]},"properties":{"stars":"4","name":"Jimmy John's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2084303,36.1423109]},"properties":{"stars":"3.5","name":"Aloha Kitchen & Bar","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2087708,36.15102768]},"properties":{"stars":"4.5","name":"The Triple Play","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1970765,36.12633057]},"properties":{"stars":"3.5","name":"Chinatown Express Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.208505,36.143114]},"properties":{"stars":"3","name":"Red Robin","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2076648,36.1264833]},"properties":{"stars":"3.5","name":"Church's Chicken","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.191245,36.144737]},"properties":{"stars":"3.5","name":"Tacos Mexico","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.198702,36.144051]},"properties":{"stars":"3","name":"Epoy's Filipino Fast Food","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.15464,36.1443942]},"properties":{"stars":"3.5","name":"India Oven","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1719898,36.15972815]},"properties":{"stars":"3.5","name":"Nozomi Japanese Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1795317,36.1450464]},"properties":{"stars":"4","name":"Coffee Pub","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1744492,36.1441893]},"properties":{"stars":"3.5","name":"The Broiler","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1979065,36.1259079]},"properties":{"stars":"4","name":"Ichiza","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.190277,36.145733]},"properties":{"stars":"4","name":"Gianna's Pizza","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1841592,36.1336005]},"properties":{"stars":"3.5","name":"Boomer's Bar","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1969938,36.1263784]},"properties":{"stars":"2","name":"Sam Woo BBQ Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.165013,36.158457]},"properties":{"stars":"1.5","name":"Wendy's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2965319,36.102015]},"properties":{"stars":"5","name":"Sushi House Manda","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.197904,36.125908]},"properties":{"stars":"3","name":"Korean Garden BBQ House","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.161508,36.14411]},"properties":{"stars":"3.5","name":"Golden Steer","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1619301,36.1590604]},"properties":{"stars":"3.5","name":"Carl's Jr Restaurants","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1711308,36.1590433]},"properties":{"stars":"4","name":"Omelet House","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1614606,36.1441292]},"properties":{"stars":"4.5","name":"Capriotti's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1875972,36.1443115]},"properties":{"stars":"5","name":"Montesano's Italian Deli","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2041571,36.1447295]},"properties":{"stars":"3.5","name":"Panda Express","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.208505,36.143114]},"properties":{"stars":"3","name":"Habib's Persian Cuisine","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2076644,36.1497263]},"properties":{"stars":"4","name":"Food Express Chinese Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2026403,36.1590061]},"properties":{"stars":"2.5","name":"China Star","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2076154,36.1450429]},"properties":{"stars":"3","name":"El Pollo Loco","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2026919,36.1445909]},"properties":{"stars":"3.5","name":"Best Burger","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2026919,36.1445909]},"properties":{"stars":"3.5","name":"Roberto's Taco Shop","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.206941,36.143476]},"properties":{"stars":"4","name":"Chili's Grill & Bar","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1938661,36.1440209]},"properties":{"stars":"4.5","name":"Island Style","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2098129,36.1486584]},"properties":{"stars":"3","name":"Chapala's Mexican Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.203735,36.1263007]},"properties":{"stars":"4","name":"El Steak Burrito","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.193618,36.144017]},"properties":{"stars":"3.5","name":"Diamond China Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.193147,36.144013]},"properties":{"stars":"4.5","name":"Royal Thai Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1908457,36.1316793]},"properties":{"stars":"3","name":"Cafe Verdi","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1972121,36.1443404]},"properties":{"stars":"4","name":"Osaka Japanese Bistro","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2080383,36.1439467]},"properties":{"stars":"4","name":"Jimmy John's Gourmet Sandwiches","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.208553,36.142482]},"properties":{"stars":"2.5","name":"Chopstix Express","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1968362,36.15886145]},"properties":{"stars":"4","name":"Skinny Dugan's Pub","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2072046,36.1564508]},"properties":{"stars":"3.5","name":"Blueberry Hill Family Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2082275,36.1457753]},"properties":{"stars":"2.5","name":"Jack in the Box","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.205348,36.158728]},"properties":{"stars":"2.5","name":"Taco Bell","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2003983,36.1589913]},"properties":{"stars":"3.5","name":"Macayo Vegas","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2046243,36.1446162]},"properties":{"stars":"3.5","name":"Baja Fresh Las Vegas","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2026045,36.144807]},"properties":{"stars":"2.5","name":"TGI Friday's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1969938,36.1263784]},"properties":{"stars":"2","name":"Emperor's Garden","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.203317,36.125886]},"properties":{"stars":"4","name":"Joyful House Chinese Cuisine","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1976,36.125964]},"properties":{"stars":"3","name":"Tea Station","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.067454,36.158728]},"properties":{"stars":"2.5","name":"Subway","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1425224,36.1439448]},"properties":{"stars":"1.5","name":"Seoul Korean Bar B Q Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1525828,36.1511121]},"properties":{"stars":"4","name":"White Cross Drugs","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.127554,36.159189]},"properties":{"stars":"3","name":"Blueberry Hill Family Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1272238,36.158865]},"properties":{"stars":"3.5","name":"Macayo Vegas","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1334719,36.1588528]},"properties":{"stars":"3.5","name":"Joy's Pastry Shoppe","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.0762536,36.149751]},"properties":{"stars":"3.5","name":"Lucky's Cafe","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.155365,36.147371]},"properties":{"stars":"2.5","name":"Buffet At the Stratosphere","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1552059,36.14770952]},"properties":{"stars":"3","name":"Roxy's Diner","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.153815,36.1523679]},"properties":{"stars":"3.5","name":"Jack In the Box","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.115242,36.157276]},"properties":{"stars":"5","name":"El Ausente","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1538735,36.1493938]},"properties":{"stars":"3","name":"Denny's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1513428,36.1527856]},"properties":{"stars":"3.5","name":"Boston Pizza","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.149618,36.155323]},"properties":{"stars":"3.5","name":"Florida Cafe Cuban Bar & Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.148335,36.156773]},"properties":{"stars":"4","name":"Ocha Cuisine","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.119375,36.1584618]},"properties":{"stars":"1","name":"McDonald's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1212644,36.1588445]},"properties":{"stars":"4.5","name":"Chinatown Cuisine","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.140667,36.158279]},"properties":{"stars":"3.5","name":"Esmeralda's Cafe","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1483131,36.157345]},"properties":{"stars":"3.5","name":"Rincon Criollo","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.123067,36.158472]},"properties":{"stars":"4.5","name":"Tortas El Rey","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.0653489,36.147189]},"properties":{"stars":"1.5","name":"PT's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.119961,36.14416793]},"properties":{"stars":"4.5","name":"Italian American Club Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1275613,36.1584563]},"properties":{"stars":"4","name":"Los Tacos","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1464168,36.1439863]},"properties":{"stars":"3.5","name":"Cafe Heidelberg German Market & Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1425263,36.14252394]},"properties":{"stars":"4","name":"Komol Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1456908,36.14430822]},"properties":{"stars":"3","name":"Tony Roma's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1423943,36.1421289]},"properties":{"stars":"4","name":"Elephant BBQ Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.136886,36.144553]},"properties":{"stars":"2","name":"Taco Bell","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1405587,36.1429063]},"properties":{"stars":"4","name":"Tokyo Japanese Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1423943,36.1421289]},"properties":{"stars":"3","name":"Birrieria Jalisco","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1405587,36.1429063]},"properties":{"stars":"5","name":"Sahara Korean Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1365689,36.144149]},"properties":{"stars":"3.5","name":"Pinoy Pinay Filipino Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1730333,36.161111]},"properties":{"stars":"4","name":"Broadway Pizzeria","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.160885,36.1656948]},"properties":{"stars":"3.5","name":"Lacabana","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.172372,36.160499]},"properties":{"stars":"3","name":"Quiznos","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1557538,36.1652351]},"properties":{"stars":"3","name":"Italia Express","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.156075,36.165165]},"properties":{"stars":"2.5","name":"Auntie Anne's Soft Pretzel","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1557538,36.1652351]},"properties":{"stars":"1.5","name":"China Pantry","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1606081,36.1959429]},"properties":{"stars":"2.5","name":"Jack in the Box","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.160418,36.188135]},"properties":{"stars":"2.5","name":"Pat's Chinese Food and Minimart","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1744417,36.1769889]},"properties":{"stars":"2.5","name":"Popeye's Famous Fried Chicken","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1523207,36.1958369]},"properties":{"stars":"4","name":"Seven Seas Restaurant & Lounge","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.176519,36.177463]},"properties":{"stars":"4.5","name":"Churchs Chicken","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1606344,36.1949986]},"properties":{"stars":"4","name":"Mario's Westside Market","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.178365,36.180793]},"properties":{"stars":"1","name":"Wendys","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.197012,36.199694]},"properties":{"stars":"4","name":"Roberto's Taco Shop","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1730333,36.161111]},"properties":{"stars":"4","name":"Port Of Subs","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2432571,36.203862]},"properties":{"stars":"3.5","name":"Smoke Ranch Junction","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1185532,36.01045227]},"properties":{"stars":"3","name":"Buffet @ Asia","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2424449,36.2140139]},"properties":{"stars":"1.5","name":"O'aces Bar & Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2232932,36.2023343]},"properties":{"stars":"4","name":"Joey's Pizza","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.242978,36.198783]},"properties":{"stars":"2.5","name":"Souper Salad","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.241662,36.189324]},"properties":{"stars":"3.5","name":"Roberto's Taco Shop","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.223459,36.19668]},"properties":{"stars":"2.5","name":"Burger King","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2061228,36.1941506]},"properties":{"stars":"3.5","name":"Thai Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.241754,36.199364]},"properties":{"stars":"4.5","name":"Omaha Steaks","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2424229,36.1992487]},"properties":{"stars":"3","name":"Pick Up Stix","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2061081,36.1975038]},"properties":{"stars":"4.5","name":"Tacos El Rodeo Inc","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.241468,36.195322]},"properties":{"stars":"4","name":"Pin Kaow Thai Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2419895,36.1961848]},"properties":{"stars":"3.5","name":"Chili's Grill & Bar","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2402759,36.1964438]},"properties":{"stars":"3","name":"Tony Roma's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.207581,36.18557]},"properties":{"stars":"4","name":"Pepe's Tacos","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2424449,36.2140139]},"properties":{"stars":"3.5","name":"O'Aces Bar & Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.15345,36.1518]},"properties":{"stars":"3.5","name":"Joe's Crab Shack","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2075749,36.1879988]},"properties":{"stars":"4","name":"Sunshine Cafe","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2248005,36.1958234]},"properties":{"stars":"2.5","name":"China Joe's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2424724,36.2031202]},"properties":{"stars":"2.5","name":"Yoko Hama Sushi","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.205875,36.1945164]},"properties":{"stars":"3","name":"Fair View Chinese Cuisine","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.241409,36.197314]},"properties":{"stars":"3","name":"Applebee's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2237411,36.1971779]},"properties":{"stars":"4","name":"Domino's Pizza","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.230741,36.195414]},"properties":{"stars":"3","name":"Sonic Drive-In","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2424329,36.19813466]},"properties":{"stars":"3","name":"Romano's Macaroni Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2324571,36.1959012]},"properties":{"stars":"3.5","name":"Torrey Pines Pub","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2249305,36.1959191]},"properties":{"stars":"3.5","name":"Pizza Hut","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2254562,36.21712875]},"properties":{"stars":"3","name":"Griddlecakes","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2404192,36.2179656]},"properties":{"stars":"2.5","name":"Subway","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.244985,36.219365]},"properties":{"stars":"4","name":"International House of Pancakes","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.243688,36.218618]},"properties":{"stars":"3","name":"Wendys","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.0755764,36.1736178]},"properties":{"stars":"3.5","name":"Domino's Pizza","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.0626506,36.165734]},"properties":{"stars":"2","name":"Papa John's Pizza","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.079983,36.1599337]},"properties":{"stars":"3","name":"Viva El Taco","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.0616531,36.1605253]},"properties":{"stars":"3","name":"Olive Garden Italian Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.0623694,36.1754227]},"properties":{"stars":"4","name":"The Teriyaki Company","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.09775,36.1739559]},"properties":{"stars":"1.5","name":"McDonald's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.0623318,36.1802306]},"properties":{"stars":"4.5","name":"Tacos Los Toritos","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.0623846,36.1627045]},"properties":{"stars":"1.5","name":"China Olive","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.0623466,36.1700842]},"properties":{"stars":"3.5","name":"Sonic Drive-In","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.0796701,36.1782447]},"properties":{"stars":"4.5","name":"La Mojarra Loca","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.0624468,36.1612711]},"properties":{"stars":"2.5","name":"KFC","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.0617998,36.16481]},"properties":{"stars":"3","name":"Denny's Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.0619766,36.1684762]},"properties":{"stars":"3","name":"Applebee's Neighborhood Grill & Bar","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.0624815,36.1756743]},"properties":{"stars":"3","name":"Arby's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.0618694,36.1774933]},"properties":{"stars":"4","name":"Wendy's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.0648608,36.1738204]},"properties":{"stars":"3.5","name":"Blueberry Hill Family Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.0617214,36.1782211]},"properties":{"stars":"4","name":"Lao Thai Kitchen","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.0623681,36.1871865]},"properties":{"stars":"4","name":"Big Dog's Bar and Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.077982,36.173102]},"properties":{"stars":"1.5","name":"Popeye's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.203383,36.0932467]},"properties":{"stars":"4.5","name":"Munch A Sub","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.242907,36.086682]},"properties":{"stars":"2","name":"Taco Bell","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2085216,36.092861]},"properties":{"stars":"4","name":"Roberto's Taco Shop","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.208489,36.0922493]},"properties":{"stars":"3","name":"Domino's Pizza","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.208574,36.097522]},"properties":{"stars":"4","name":"Felipito's Mexican Food","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2431498,36.0895338]},"properties":{"stars":"2.5","name":"Cheng's Express","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.208321,36.098857]},"properties":{"stars":"4","name":"O'Aces Bar & Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.196276,36.086835]},"properties":{"stars":"2.5","name":"Tacos El Nopal","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.189211,36.095691]},"properties":{"stars":"4","name":"Normandie","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.0562582,36.2395163]},"properties":{"stars":"3","name":"Memphis Championship Barbecue","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.208392,36.092274]},"properties":{"stars":"4","name":"PT's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.114102,36.071999]},"properties":{"stars":"3.5","name":"Nikki Lee's Sports Pub & Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2968729,36.1133877]},"properties":{"stars":"3.5","name":"Original Pancake House","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1078327,36.0720741]},"properties":{"stars":"3","name":"Brewery Bar & Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.099437,36.072197]},"properties":{"stars":"1.5","name":"Papa John's Pizza","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.094014,36.0721501]},"properties":{"stars":"3.5","name":"Port of Subs","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.117581,36.0146584]},"properties":{"stars":"4","name":"Kabob Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.071956,36.086046]},"properties":{"stars":"3.5","name":"Jack in the Box","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.099184,36.071805]},"properties":{"stars":"2.5","name":"PT's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.090402,36.071707]},"properties":{"stars":"3.5","name":"Panda Express","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.0993861,36.0722521]},"properties":{"stars":"3.5","name":"Super Mex Restaurant & Cantina","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.101374,36.099678]},"properties":{"stars":"5","name":"Subway","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1017032,36.08631469]},"properties":{"stars":"3.5","name":"Office 5 Bar & Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1005988,36.086265]},"properties":{"stars":"3.5","name":"The Cook's Shop Pizzeria","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1037933,36.0858913]},"properties":{"stars":"4","name":"Golden Flower Chinese Cuisine","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1010886,36.0970969]},"properties":{"stars":"3.5","name":"Mr. Chop Chop","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.101518,36.078753]},"properties":{"stars":"4","name":"Philly Cheesesteak Factory","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.116276,36.071741]},"properties":{"stars":"3","name":"Taco Bell","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.110967,36.079498]},"properties":{"stars":"4","name":"Bob's East Side Deli","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.115344,36.071943]},"properties":{"stars":"3","name":"McDonald's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.0911608,36.0706671]},"properties":{"stars":"4","name":"Amlee Chinese Cuisine","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.088063,36.070731]},"properties":{"stars":"4","name":"Capriotti's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.061928,36.099863]},"properties":{"stars":"3.5","name":"Sonic Drive-In","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.03178,36.0847229]},"properties":{"stars":"3.5","name":"Jack in the Box","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.0530945,36.1021067]},"properties":{"stars":"3","name":"Del Taco","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.0530181,36.102514]},"properties":{"stars":"3","name":"Port of Subs","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.060916,36.111784]},"properties":{"stars":"3.5","name":"Billy Bob's Steakhouse","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.060916,36.111784]},"properties":{"stars":"3","name":"Willy & Jose's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.0578637,36.10597498]},"properties":{"stars":"2","name":"Denny's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.052443,36.101433]},"properties":{"stars":"2.5","name":"Burger King","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.0468477,36.10839835]},"properties":{"stars":"3","name":"Firelight Buffet","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.0634182,36.1010195]},"properties":{"stars":"2.5","name":"Little Caesar's Pizza","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.060916,36.111784]},"properties":{"stars":"3.5","name":"Panda Express","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2816734,36.1995034]},"properties":{"stars":"3.5","name":"PT's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.258816,36.196201]},"properties":{"stars":"3","name":"Panda Express","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2817672,36.2005782]},"properties":{"stars":"3.5","name":"Pizza Hut","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2571252,36.1960224]},"properties":{"stars":"3.5","name":"Grape Street","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2500796,36.1970662]},"properties":{"stars":"4.5","name":"Rubio's Fresh Mexican Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2537641,36.1813293]},"properties":{"stars":"2.5","name":"McDonald's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2602858,36.1822966]},"properties":{"stars":"3","name":"Roadrunner Saloon","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.259949,36.201355]},"properties":{"stars":"3","name":"Taco Bell","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2531125,36.1959753]},"properties":{"stars":"2.5","name":"Chuck E Cheese's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2503143,36.1962858]},"properties":{"stars":"3.5","name":"Jimmy John's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2799969,36.1986783]},"properties":{"stars":"3.5","name":"Port of Subs","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.25923,36.1907396]},"properties":{"stars":"3.5","name":"Beach Pizza","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2582758,36.1956158]},"properties":{"stars":"3.5","name":"Northside Nathan's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.248735,36.196502]},"properties":{"stars":"3.5","name":"Beano's Casino","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2816097,36.199461]},"properties":{"stars":"4","name":"Roberto's Taco Shop","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.268377,36.206727]},"properties":{"stars":"3.5","name":"Village Pub & Casino","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.280873,36.199276]},"properties":{"stars":"3.5","name":"Burger King","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.246608,36.194992]},"properties":{"stars":"2","name":"Arbys","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2799007,36.1980644]},"properties":{"stars":"4","name":"Red Rock Pizza","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2600699,36.1907268]},"properties":{"stars":"3.5","name":"Steiner's Nevada Style Pub","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2818774,36.2004665]},"properties":{"stars":"3.5","name":"Omelet House","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.257829,36.196252]},"properties":{"stars":"3.5","name":"Del Taco","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2479571,36.1962859]},"properties":{"stars":"2.5","name":"Wendy's Old Fashioned Hamburgers","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2571251,36.1960365]},"properties":{"stars":"3.5","name":"Dairy Queen","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.281657,36.2006899]},"properties":{"stars":"3.5","name":"Diamond China 2","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.247371,36.197664]},"properties":{"stars":"1.5","name":"World Buffet","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2509056,36.1962809]},"properties":{"stars":"3.5","name":"Marc's Authentic Italian","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.252849,36.196089]},"properties":{"stars":"4.5","name":"Yummy Grill & Sushi","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.252325,36.1951421]},"properties":{"stars":"2.5","name":"Quiznos Subs","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2600726,36.1949248]},"properties":{"stars":"3","name":"Charlie's Down Under","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2684555,36.20742798]},"properties":{"stars":"4","name":"March<U+00E9> Bacchus","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.247447,36.197322]},"properties":{"stars":"4.5","name":"Wienerschnitzel","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2581988,36.1964157]},"properties":{"stars":"3","name":"Jack In the Box","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2571252,36.1960224]},"properties":{"stars":"4","name":"Baja Fresh Mexican Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.281363,36.2009876]},"properties":{"stars":"4","name":"Subway","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2600699,36.1907268]},"properties":{"stars":"4","name":"Subway","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.259825,36.197534]},"properties":{"stars":"2.5","name":"Samurai Sam's Teriyaki Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2561493,36.19697189]},"properties":{"stars":"4","name":"Round Table Pizza","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.212381,36.217635]},"properties":{"stars":"3","name":"Taco Bell","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.206976,36.240226]},"properties":{"stars":"2.5","name":"Sonic Drive-In","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.242815,36.254519]},"properties":{"stars":"4.5","name":"Dimas Tacos","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2092861,36.2466674]},"properties":{"stars":"4","name":"Roberto's Taco Shop #22","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2489614,36.2617919]},"properties":{"stars":"3.5","name":"Quiznos","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.233117,36.238728]},"properties":{"stars":"3","name":"Baja Fresh Mexican Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2501061,36.2628802]},"properties":{"stars":"3","name":"McDonald's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2428492,36.2490797]},"properties":{"stars":"2","name":"Memphis Championship Barbecue","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2428492,36.2490797]},"properties":{"stars":"2.5","name":"Villapizza","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2358857,36.2433513]},"properties":{"stars":"4","name":"Baba's Tsi-bugan Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.213267,36.217618]},"properties":{"stars":"4","name":"Jack in the Box","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1962954,36.2015056]},"properties":{"stars":"2.5","name":"Fiesta Rancho","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.246152,36.274385]},"properties":{"stars":"3.5","name":"Bob Taylor's Ranch House","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2358276,36.242387]},"properties":{"stars":"3.5","name":"Big Dog's Draft House","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.210422,36.2152318]},"properties":{"stars":"3.5","name":"Cheyenne Saloon","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2172862,36.2229546]},"properties":{"stars":"3","name":"Kerry's Sports Pub Pizza & Grille","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.212427,36.216778]},"properties":{"stars":"2","name":"McDonald's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2339219,36.2412119]},"properties":{"stars":"3.5","name":"Del Taco","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.243248,36.252649]},"properties":{"stars":"3","name":"Santa Fe Mining Company","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2335805,36.2408055]},"properties":{"stars":"2","name":"KFC","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2093569,36.2466654]},"properties":{"stars":"2","name":"Little Caesars Pizza","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2476783,36.2618942]},"properties":{"stars":"3.5","name":"Great China","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2481338,36.2630448]},"properties":{"stars":"2.5","name":"Grand China Fine Chinese Cuisine","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2089314,36.2389627]},"properties":{"stars":"3.5","name":"Papa Murphys Take and Bake Pizza","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.235295,36.241822]},"properties":{"stars":"3","name":"Fatburger","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2349356,36.2424474]},"properties":{"stars":"3.5","name":"Wendy's Old Fashioned Hamburgers","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2098027,36.2386849]},"properties":{"stars":"2","name":"Pizza Hut","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2797316,36.2102347]},"properties":{"stars":"3.5","name":"Domino's Pizza","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.305871,36.193694]},"properties":{"stars":"3","name":"Panda Express","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2794155,36.2102322]},"properties":{"stars":"3.5","name":"El Burrito Mexican Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.300544,36.206848]},"properties":{"stars":"3.5","name":"Taco Bell","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.3055866,36.1929381]},"properties":{"stars":"3","name":"Sultan's Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.3036173,36.2065795]},"properties":{"stars":"3.5","name":"Jack in the Box","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.034612,36.15988]},"properties":{"stars":"4.5","name":"Sunrise Casablanca","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.046879,36.1589979]},"properties":{"stars":"1","name":"McDonald's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.0492967,36.1588987]},"properties":{"stars":"4","name":"Sonic Drive-In","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.309074,36.184049]},"properties":{"stars":"3.5","name":"Burger King","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.308819,36.183143]},"properties":{"stars":"4","name":"Ruby Tuesday","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.3094988,36.1839721]},"properties":{"stars":"3.5","name":"Fazoli's Italian Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2231413,36.1256877]},"properties":{"stars":"3.5","name":"KJ Kitchen","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2316887,36.144212]},"properties":{"stars":"4","name":"Prommares Thai Food","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2364833,36.1442244]},"properties":{"stars":"4","name":"Sammy's Woodfired Pizza and Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.242438,36.126717]},"properties":{"stars":"3.5","name":"Sushi On Rainbow","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1675034,36.09980774]},"properties":{"stars":"2.5","name":"Hooters Casino Hotel","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2187129,36.125761]},"properties":{"stars":"3.5","name":"Pho Saigon 8","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2247746,36.1286223]},"properties":{"stars":"3","name":"Fiesta Filipina","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2431473,36.1468919]},"properties":{"stars":"2","name":"Arby's Roast Beef Sandwich Restaurants","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2438882,36.146289]},"properties":{"stars":"3.5","name":"Kopper Keg Restaurant & Lounge","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.213867,36.126501]},"properties":{"stars":"4.5","name":"Rincon De Buenos Aires","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2335289,36.1591886]},"properties":{"stars":"2","name":"McDonald's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2434253,36.1583497]},"properties":{"stars":"4","name":"HoneyBaked","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2225113,36.1593493]},"properties":{"stars":"4","name":"Polish Deli","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2072699,36.1589104]},"properties":{"stars":"4","name":"Original Pancake House","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2422681,36.144758]},"properties":{"stars":"3","name":"Buffet Asia","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.225945,36.126625]},"properties":{"stars":"4","name":"Que Huong Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.225724,36.143699]},"properties":{"stars":"2.5","name":"Popeyes Chicken & Biscuits","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.242763,36.151297]},"properties":{"stars":"4","name":"Mr D's Sportsbar & Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2437024,36.1520108]},"properties":{"stars":"3","name":"Pizza Hut","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2442322,36.1574585]},"properties":{"stars":"3","name":"Wendys","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2257587,36.144723]},"properties":{"stars":"2.5","name":"Taco Bell","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2249786,36.1282179]},"properties":{"stars":"4","name":"Winchells Donuts","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2431013,36.1456254]},"properties":{"stars":"1.5","name":"McDonald's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.208898,36.126592]},"properties":{"stars":"2.5","name":"Jack in the Box","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.225621,36.1251279]},"properties":{"stars":"3","name":"Dairy Queen","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.233012,36.143552]},"properties":{"stars":"3.5","name":"Sonic Drive-In","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2222504,36.1593466]},"properties":{"stars":"4","name":"Sushi Yamaguchi","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.218416,36.158414]},"properties":{"stars":"3.5","name":"The Tap House","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.207506,36.1589501]},"properties":{"stars":"3","name":"Fatburger","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2244681,36.1455047]},"properties":{"stars":"4","name":"New York Pizza & Pasta","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2217,36.142636]},"properties":{"stars":"4.5","name":"Blue Ox Tavern","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.219883,36.125163]},"properties":{"stars":"4.5","name":"Roma Deli & Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2182851,36.1265084]},"properties":{"stars":"3.5","name":"Marnee Thai Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.242438,36.126717]},"properties":{"stars":"3","name":"Subway","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.243384,36.126001]},"properties":{"stars":"2","name":"Burger King","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.213867,36.126501]},"properties":{"stars":"3","name":"Cathay House Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.242714,36.159527]},"properties":{"stars":"3","name":"Maui Rose Hawaiian Bbq","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.243109,36.152902]},"properties":{"stars":"3.5","name":"Wienerschnitzel","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.209205,36.158562]},"properties":{"stars":"3.5","name":"Schlotzsky's Deli","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2248585,36.1593157]},"properties":{"stars":"4","name":"Tacos El Compita","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2125455,36.1589411]},"properties":{"stars":"3.5","name":"Gyro Time Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.224994,36.159529]},"properties":{"stars":"3.5","name":"Farm Basket","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2430274,36.14920378]},"properties":{"stars":"3.5","name":"Panda Express","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2266305,36.1437858]},"properties":{"stars":"3.5","name":"Nevada Chicken Cafe","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2972674,36.0942892]},"properties":{"stars":"2.5","name":"Burger King","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2977988,36.09928985]},"properties":{"stars":"2.5","name":"McDonald's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.296933,36.0834649]},"properties":{"stars":"3","name":"The Lodge At Fort Apache","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2973438,36.0951537]},"properties":{"stars":"4","name":"Panera Bread","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2973192,36.0952252]},"properties":{"stars":"4","name":"Panda Express","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2967344,36.0936258]},"properties":{"stars":"3","name":"Fazoli's 5268","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1710333,36.1226679]},"properties":{"stars":"4","name":"The Range Steakhouse","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.025472,36.19418]},"properties":{"stars":"4","name":"Mandarin Express","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.040472,36.195696]},"properties":{"stars":"3.5","name":"PT's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.0602426,36.1962128]},"properties":{"stars":"4","name":"Rubalcabas Taco Shop","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.0404551,36.1956384]},"properties":{"stars":"4.5","name":"Mama Maria's Mexican Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.030222,36.195148]},"properties":{"stars":"4","name":"Jack in the Box","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.0502202,36.0224814]},"properties":{"stars":"3.5","name":"Timbers - Horizon Ridge","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.243923,36.021687]},"properties":{"stars":"2","name":"McDonald's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1278021,36.1006803]},"properties":{"stars":"3.5","name":"Seoul Market","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.183954,36.262087]},"properties":{"stars":"3","name":"Kavanaugh's Irish Pub and Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.154026,36.2603823]},"properties":{"stars":"3","name":"Jasmine Express","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1528655,36.2529787]},"properties":{"stars":"3.5","name":"Domino's Pizza","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1528158,36.254107]},"properties":{"stars":"4","name":"Northstar Bar & Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1794648,36.2619318]},"properties":{"stars":"2.5","name":"McDonald's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.14486,36.057671]},"properties":{"stars":"2","name":"Applebee's Neighborhood Grill & Bar","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.259744,36.1670663]},"properties":{"stars":"3.5","name":"Papa John's Pizza","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.138204,36.172375]},"properties":{"stars":"3","name":"Pump N Snack","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1455849,36.1727435]},"properties":{"stars":"4","name":"Aloha Specialties Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.144061,36.171235]},"properties":{"stars":"3.5","name":"Binion's Hotel & Casino","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1478836,36.1609974]},"properties":{"stars":"3.5","name":"Chicago Joes","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1444757,36.1631791]},"properties":{"stars":"3","name":"Strip Sandwich Shop","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.147258,36.1594218]},"properties":{"stars":"3.5","name":"Dona Maria Tamales Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1160157,36.1723561]},"properties":{"stars":"3","name":"Mariscos El Mariachi","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1513417,36.162903]},"properties":{"stars":"3.5","name":"El Sombrero Cafe","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1442646,36.1679528]},"properties":{"stars":"3.5","name":"El Gaucho Lucas Cafe","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1172573,36.1738146]},"properties":{"stars":"2.5","name":"Burger King","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1405453,36.1691679]},"properties":{"stars":"4","name":"Uncle Joe's Pizza","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.14082,36.179408]},"properties":{"stars":"3.5","name":"Salvadoreno Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.142535,36.16950173]},"properties":{"stars":"4.5","name":"Hugo's Cellar","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.141552,36.164944]},"properties":{"stars":"4","name":"Andre's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1435262,36.1707639]},"properties":{"stars":"2","name":"Tony Roma's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1435262,36.1707639]},"properties":{"stars":"3.5","name":"Second Street Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1236725,36.16864538]},"properties":{"stars":"3","name":"Carson Street Cafe","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.145849,36.17115]},"properties":{"stars":"3.5","name":"La Bayou Casino","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1455,36.172231]},"properties":{"stars":"4.5","name":"Las Vegas Jerkys","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1463616,36.1716577]},"properties":{"stars":"4","name":"Center Stage Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1451099,36.17409732]},"properties":{"stars":"3.5","name":"Garden Court Buffet","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.0461821,36.055507]},"properties":{"stars":"2.5","name":"Cook On Wok Chinese Cuisine","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1390624,36.1684442]},"properties":{"stars":"3","name":"Mamacita's Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.141972,36.170125]},"properties":{"stars":"2.5","name":"Piccadilly Pizza Fremont","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1149347,36.1720928]},"properties":{"stars":"3","name":"El Tenampa","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1167343,36.1879301]},"properties":{"stars":"4","name":"Los Molcajetes","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.116626,36.1871809]},"properties":{"stars":"4.5","name":"La Palapa","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.116566,36.186453]},"properties":{"stars":"3","name":"Roberto's Taco Shop","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2250385,36.1144231]},"properties":{"stars":"4","name":"Subway","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.223238,36.099621]},"properties":{"stars":"4","name":"Del Taco","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.207512,36.123589]},"properties":{"stars":"2","name":"Pho Huong Saigon","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.224125,36.099964]},"properties":{"stars":"4","name":"Taco Bell","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.22466,36.1153511]},"properties":{"stars":"3","name":"Red Shrimp Company","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.22429,36.122985]},"properties":{"stars":"4.5","name":"My Buddy's Greek Cafe","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.244707,36.1005777]},"properties":{"stars":"2","name":"Little Caesars Pizza","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2412266,36.1148958]},"properties":{"stars":"3.5","name":"Tasty Island Carribean Food & Deli","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2243599,36.1129299]},"properties":{"stars":"3.5","name":"Thai BBQ","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.206845,36.114821]},"properties":{"stars":"4.5","name":"Byblos Cafe & Pastries","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.207512,36.123589]},"properties":{"stars":"2.5","name":"Milano's Pizza","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.209737,36.114935]},"properties":{"stars":"4","name":"Capriotti's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.242659,36.11491]},"properties":{"stars":"3.5","name":"Jack In the Box","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.209737,36.114935]},"properties":{"stars":"4","name":"Josette's Bistro","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.21134,36.11274]},"properties":{"stars":"2.5","name":"The Emergency Room Lounge","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1904588,36.1261484]},"properties":{"stars":"3.5","name":"Kung Fu Thai & Chinese Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2056,36.115074]},"properties":{"stars":"4","name":"El Taco Feliz","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.204924,36.101539]},"properties":{"stars":"4","name":"McMullan's Irish Pub","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2085036,36.12296145]},"properties":{"stars":"4","name":"Los Compadres Meat Market","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.206845,36.114821]},"properties":{"stars":"4.5","name":"Eliseevsky Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.227134,36.0999899]},"properties":{"stars":"4.5","name":"Minuto's Italian Deli","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2030909,36.1153881]},"properties":{"stars":"3.5","name":"Ruth's Chris Steak House","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2411808,36.1142513]},"properties":{"stars":"2.5","name":"Las Islitas","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2019773,36.1151551]},"properties":{"stars":"2.5","name":"Wendys","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.206845,36.114821]},"properties":{"stars":"1","name":"Paisanos Pizza","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2011958,36.1153936]},"properties":{"stars":"4","name":"Pasta Mia West","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2320254,36.1151927]},"properties":{"stars":"2","name":"Pizza Hut","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2177445,36.1149713]},"properties":{"stars":"3.5","name":"Torino's Sports Pub & Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.208765,36.123033]},"properties":{"stars":"4","name":"La Mexicana Bakery & Deli","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2257656,36.10119446]},"properties":{"stars":"3.5","name":"Golden Dragon Chinese Cuisine","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.186134,36.123843]},"properties":{"stars":"3.5","name":"Polaris Street Cafe","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2088623,36.1221908]},"properties":{"stars":"4","name":"Bonito Michoacan","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1884915,36.1014934]},"properties":{"stars":"3","name":"Subway","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2235321,36.1152796]},"properties":{"stars":"4","name":"Jackson's Bar & Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.20764,36.105081]},"properties":{"stars":"3.5","name":"Chang's Hong Kong Cuisine","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2234426,36.1147533]},"properties":{"stars":"3","name":"Arby's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2009972,36.1154037]},"properties":{"stars":"3.5","name":"Thai Spice","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.241875,36.116132]},"properties":{"stars":"3","name":"Verrazano Pizza","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2093648,36.1180786]},"properties":{"stars":"4","name":"Metro Pizza","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2463714,36.1233362]},"properties":{"stars":"2.5","name":"Port of Subs","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.151258,36.109129]},"properties":{"stars":"4","name":"Ferraro's  Restaurant & Wine Bar","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.223604,36.115274]},"properties":{"stars":"4","name":"Nora's Cuisine","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2066735,36.1148713]},"properties":{"stars":"3.5","name":"PT's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.244258,36.100691]},"properties":{"stars":"2.5","name":"Kabob Palace","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2274763,36.10034571]},"properties":{"stars":"4","name":"Black Bear Diner","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2266847,36.1146183]},"properties":{"stars":"4","name":"Port of Subs","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.209687,36.10022]},"properties":{"stars":"1.5","name":"Papa John's Pizza","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.195341,36.115378]},"properties":{"stars":"2","name":"McDonald's Restaurants","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2432036,36.1010837]},"properties":{"stars":"4.5","name":"Cariba Charlie's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.186442,36.118699]},"properties":{"stars":"3.5","name":"Gaylord India Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.225496,36.107577]},"properties":{"stars":"4.5","name":"M & M Soul Food","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.190984,36.122421]},"properties":{"stars":"3.5","name":"El Alacran De Durango","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.241875,36.116132]},"properties":{"stars":"4","name":"Michael's Pub","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.200037,36.11494]},"properties":{"stars":"4","name":"Loose Caboose Flamingo","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2430754,36.1226985]},"properties":{"stars":"3","name":"The Famous Burritos","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2083966,36.117527]},"properties":{"stars":"2.5","name":"El Pollo Loco","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2434921,36.12484206]},"properties":{"stars":"4","name":"Viva Mercado's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.207626,36.1145349]},"properties":{"stars":"4","name":"Krung Thai Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2412251,36.1148956]},"properties":{"stars":"2.5","name":"Roberto's Taco Shop","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.190984,36.122421]},"properties":{"stars":"2.5","name":"Little Italy Pizza","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2426472,36.1126764]},"properties":{"stars":"4","name":"Baja Fresh Mexican Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.226559,36.101139]},"properties":{"stars":"3","name":"Sushi Factory","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2024506,36.10229952]},"properties":{"stars":"3.5","name":"Koji Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2060563,36.1008788]},"properties":{"stars":"3","name":"Panda Express","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.22429,36.122985]},"properties":{"stars":"3.5","name":"Salo-Salo Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2084588,36.11863199]},"properties":{"stars":"3.5","name":"Makino Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2091768,36.1008267]},"properties":{"stars":"3","name":"Quiznos","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1944797,36.1262137]},"properties":{"stars":"2.5","name":"Flamingo Pizza","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2405343,36.114299]},"properties":{"stars":"2.5","name":"Fatburger","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2067011,36.1104125]},"properties":{"stars":"4","name":"Panda Express","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2070999,36.11097516]},"properties":{"stars":"3.5","name":"Little Buddha Restaurant & Sushi Bar","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2009724,36.1022441]},"properties":{"stars":"2.5","name":"Sazio Italian Dining","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1948798,36.11477147]},"properties":{"stars":"4","name":"Aliz<U+00E9>","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2087414,36.099414]},"properties":{"stars":"3.5","name":"Sushi 21","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.209358,36.100712]},"properties":{"stars":"2.5","name":"Denny's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2062055,36.1708712]},"properties":{"stars":"4","name":"Pizza Hut","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.179791,36.180676]},"properties":{"stars":"1.5","name":"McDonalds","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2061855,36.1704969]},"properties":{"stars":"3","name":"Port of Subs","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2230684,36.1759064]},"properties":{"stars":"4","name":"Four Kegs Sports Bar","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.223681,36.17571197]},"properties":{"stars":"3","name":"Del Taco","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2059198,36.1680146]},"properties":{"stars":"4","name":"Lou's Diner","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2422213,36.1795052]},"properties":{"stars":"2","name":"Chinese Village Restaurant & Lounge","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2057348,36.1690465]},"properties":{"stars":"3.5","name":"Arby's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2065845,36.1716799]},"properties":{"stars":"3","name":"Red Lobster","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2056418,36.1697141]},"properties":{"stars":"2","name":"Wendy's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.205674,36.166261]},"properties":{"stars":"3.5","name":"Pop's Philly Steaks","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1719992,36.1206645]},"properties":{"stars":"2","name":"Subway","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1721151,36.1209539]},"properties":{"stars":"3","name":"Noble Roman's Pizza","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1550935,36.1171943]},"properties":{"stars":"3.5","name":"Gordon Biersch Brewery Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.16345,36.112986]},"properties":{"stars":"3.5","name":"Metro Pizza","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.156434,36.131845]},"properties":{"stars":"4","name":"Piero's Italian Cuisine","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1449451,36.12141581]},"properties":{"stars":"4","name":"Harrie's Bagelmania","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1546953,36.1185522]},"properties":{"stars":"4.5","name":"Firefly","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.146372,36.124423]},"properties":{"stars":"2.5","name":"Chinois","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1734114,36.11827292]},"properties":{"stars":"4","name":"Spago","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.137318,36.1301119]},"properties":{"stars":"2.5","name":"Carl's Jr Restaurants","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1696112,36.1214517]},"properties":{"stars":"4","name":"Lutece Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1701939,36.1226902]},"properties":{"stars":"3.5","name":"Valentino","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1692923,36.12232381]},"properties":{"stars":"3.5","name":"Canonita","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1723638,36.1031723]},"properties":{"stars":"3","name":"Gameworks","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1187053,36.1438803]},"properties":{"stars":"4","name":"Los Antojos","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.119334,36.142963]},"properties":{"stars":"2","name":"Wendy's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1735187,36.1030101]},"properties":{"stars":"3.5","name":"ESPN Zone","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1727107,36.1094088]},"properties":{"stars":"4","name":"Crustacean Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1711298,36.128561]},"properties":{"stars":"4","name":"Simon Kitchen and Bar","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.135206,36.1366749]},"properties":{"stars":"3","name":"Magura Pizza","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.135206,36.1366749]},"properties":{"stars":"3.5","name":"Magura Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.177001,36.11199]},"properties":{"stars":"4","name":"Circo","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1521048,36.107194]},"properties":{"stars":"2","name":"Pho Hoa Noodle Soup","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.146372,36.124423]},"properties":{"stars":"3","name":"L.A. Italian Kitchen","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.164238,36.12550354]},"properties":{"stars":"4.5","name":"Mariposa","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1529193,36.1371122]},"properties":{"stars":"4.5","name":"Star Trek the Experience","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.174037,36.105289]},"properties":{"stars":"2.5","name":"Dragon Noodle Co.","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1732166,36.1041893]},"properties":{"stars":"3.5","name":"Market City Caffe","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.244522,36.1635637]},"properties":{"stars":"2.5","name":"Inka Si Senor","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1371159,36.1263354]},"properties":{"stars":"4.5","name":"Hibachi-San","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.138008,36.1426489]},"properties":{"stars":"1.5","name":"Domino's Pizza","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1547196,36.11512307]},"properties":{"stars":"3.5","name":"Bahama Breeze","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1182866,36.1314264]},"properties":{"stars":"4","name":"The Coachman's Inn","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.137672,36.128998]},"properties":{"stars":"4","name":"Capozzoli's Italian Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1727107,36.1094088]},"properties":{"stars":"3.5","name":"Nestle Tollhouse Cafe","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.13641,36.14217661]},"properties":{"stars":"2","name":"China Star","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1521048,36.107194]},"properties":{"stars":"3.5","name":"Yokohama Kaigenro","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1678753,36.1147623]},"properties":{"stars":"3.5","name":"Battista's Hole In the Wall","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.172213,36.105762]},"properties":{"stars":"1.5","name":"Manchu Wok","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.160359,36.1331149]},"properties":{"stars":"4","name":"Meskerem Ethiopian Restaurant & Market","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.156389,36.1144434]},"properties":{"stars":"3","name":"Cozymel's Mexican Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1514119,36.1362847]},"properties":{"stars":"3.5","name":"Benihana","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.169651,36.121176]},"properties":{"stars":"3.5","name":"Canaletto","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1555981,36.1149099]},"properties":{"stars":"3","name":"Hamada of Japan","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.146372,36.124423]},"properties":{"stars":"3","name":"Chicken Connection","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1524567,36.108511]},"properties":{"stars":"3.5","name":"Hard Rock Cafe","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1639502,36.1132842]},"properties":{"stars":"4","name":"Ellis Island Casino & Brewery","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.152727,36.11516]},"properties":{"stars":"3.5","name":"Gandhi India's Cuisine","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.137626,36.133815]},"properties":{"stars":"3.5","name":"Denny's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1621756,36.13516356]},"properties":{"stars":"2.5","name":"Riviera Hotel & Casino","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.156483,36.142229]},"properties":{"stars":"2","name":"NASCAR Cafe","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.16775,36.127754]},"properties":{"stars":"3.5","name":"Greek Island Cafe","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.146372,36.124423]},"properties":{"stars":"2.5","name":"Cheeseburger At the Oasis","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1724261,36.1011972]},"properties":{"stars":"4","name":"Mama Ilardo's Pizzeria","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1727629,36.1050739]},"properties":{"stars":"3.5","name":"Fatburger","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.170815,36.1274245]},"properties":{"stars":"4","name":"Hot Dog On A Stick","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.136364,36.129396]},"properties":{"stars":"3.5","name":"Applebee's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1542695,36.1186973]},"properties":{"stars":"4","name":"Marrakech Moroccan Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.137186,36.1253701]},"properties":{"stars":"4.5","name":"Hot Dog On A Stick","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.14491,36.121559]},"properties":{"stars":"4","name":"Togoshi Ramen","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1727367,36.1142391]},"properties":{"stars":"2.5","name":"Sbarro","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.17178,36.115018]},"properties":{"stars":"4","name":"Barbary Coast Hotel & Casino","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.174141,36.011478]},"properties":{"stars":"4.5","name":"Michael's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.167501,36.099809]},"properties":{"stars":"2.5","name":"Hotel San Remo","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1725842,36.1085455]},"properties":{"stars":"3","name":"Harley-Davidson Las Vegas Cafe","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.146372,36.124423]},"properties":{"stars":"3","name":"Chin Chin Chinese Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1742465,36.10251518]},"properties":{"stars":"4","name":"Gallagher's Steakhouse","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1735187,36.1030101]},"properties":{"stars":"3.5","name":"Gonzalez Y Gonzalez Mexican Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1730081,36.1282071]},"properties":{"stars":"4.5","name":"Auntie Anne's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.14491,36.121559]},"properties":{"stars":"2.5","name":"Haifa Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.146372,36.124423]},"properties":{"stars":"3.5","name":"Ruth's Chris Steak House","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1730752,36.1231538]},"properties":{"stars":"2.5","name":"Caribe Caf<U+00E9>","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1703564,36.1240236]},"properties":{"stars":"3.5","name":"Portofino by Chef Michael LaPlaca","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.174042,36.12136055]},"properties":{"stars":"3.5","name":"Kokomo's Steak & Seafood","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.154442,36.113373]},"properties":{"stars":"3.5","name":"P F Chang's China Bistro","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1501752,36.1212352]},"properties":{"stars":"3.5","name":"Roberto's Taco Shop","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.14491,36.121559]},"properties":{"stars":"4","name":"Tacos Los Toritos","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1542695,36.1186973]},"properties":{"stars":"3","name":"Yolie's Brazilian Steak House","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1727107,36.1094088]},"properties":{"stars":"2.5","name":"Oyster Bay Seafood","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.164611,36.137041]},"properties":{"stars":"4","name":"The Steakhouse","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1729242,36.1025779]},"properties":{"stars":"2.5","name":"Subway","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1552788,36.1180678]},"properties":{"stars":"4.5","name":"Del Frisco's Double Eagle Steak House","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1696112,36.1214517]},"properties":{"stars":"3.5","name":"Postrio","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1560042,36.1074947]},"properties":{"stars":"3","name":"Pegasus-Alexis Park","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.151852,36.121237]},"properties":{"stars":"4","name":"India Palace","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1761671,36.1268574]},"properties":{"stars":"4","name":"Diamond Chinese Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.149765,36.12401012]},"properties":{"stars":"3.5","name":"Chipotle","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1615956,36.1374016]},"properties":{"stars":"2.5","name":"Blue Iguana Mexican Express","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.157487,36.115068]},"properties":{"stars":"3.5","name":"McCormick & Schmick's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1655364,36.1152568]},"properties":{"stars":"3","name":"The Westin Las Vegas Hotel","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1723638,36.1031723]},"properties":{"stars":"3.5","name":"Del Taco","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.152062,36.114952]},"properties":{"stars":"3","name":"Buca di Beppo","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1693962,36.1033743]},"properties":{"stars":"2.5","name":"Rainforest Cafe","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1681642,36.10830805]},"properties":{"stars":"3.5","name":"Todai Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1693344,36.12706054]},"properties":{"stars":"1.5","name":"Philadelphia Steak & Hoagie","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1735621,36.127512]},"properties":{"stars":"3.5","name":"California Pizza Kitchen","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1597672,36.11473846]},"properties":{"stars":"4.5","name":"Lawry's The Prime Rib","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.146372,36.124423]},"properties":{"stars":"3.5","name":"Stage Deli Of Las Vegas","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1648858,36.1314439]},"properties":{"stars":"2.5","name":"Kimchi Restaurants","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1403874,36.1297663]},"properties":{"stars":"2","name":"Papa John's Pizza","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1599789,36.1136101]},"properties":{"stars":"4.5","name":"Palazzo Restaurant At Tuscany Hotel & Casino","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1741893,36.11048484]},"properties":{"stars":"4","name":"Eiffel Tower Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1511364,36.0849963]},"properties":{"stars":"1.5","name":"Don Alejandro's Texan Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.06171,36.192963]},"properties":{"stars":"3.5","name":"The Hush Puppy","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.098023,36.200106]},"properties":{"stars":"4.5","name":"La Playita Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.060063,36.239137]},"properties":{"stars":"1.5","name":"McDonald's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.065381,36.240074]},"properties":{"stars":"3.5","name":"Manhattan Pizza II","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.0982604,36.2161071]},"properties":{"stars":"3.5","name":"Roberto's Taco Shop","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.095275,36.2171639]},"properties":{"stars":"4","name":"Maverick Truck Stop","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.0969183,36.2157057]},"properties":{"stars":"2.5","name":"Domino's Pizza","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.094825,36.217297]},"properties":{"stars":"2","name":"Wendys","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.0622702,36.1909791]},"properties":{"stars":"3.5","name":"Country Cafe","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.093035,36.218985]},"properties":{"stars":"4.5","name":"Siam Garden","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.062334,36.2401554]},"properties":{"stars":"3","name":"Barcelona Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2804847,36.1439202]},"properties":{"stars":"3.5","name":"Outback Steakhouse","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2930416,36.1585425]},"properties":{"stars":"3.5","name":"Chili's Grill & Bar","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2428638,36.2182869]},"properties":{"stars":"4","name":"Chop Chop Wok","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2991358,36.1445054]},"properties":{"stars":"3.5","name":"Round Table Pizza","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2760923,36.1439132]},"properties":{"stars":"4","name":"Del Taco","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.281648,36.143572]},"properties":{"stars":"4","name":"Burger King","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.274722,36.129869]},"properties":{"stars":"3.5","name":"The Original Graziano's Pizza Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2789801,36.1361132]},"properties":{"stars":"4","name":"Carmine's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.3008052,36.1465377]},"properties":{"stars":"3","name":"Rising Sun Japanese Restaurant & Sushi Bar","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2907411,36.15843933]},"properties":{"stars":"3","name":"Claim Jumper","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2978977,36.14726]},"properties":{"stars":"3.5","name":"Chicago Brewing Company","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2628382,36.1573245]},"properties":{"stars":"4","name":"Rocco's NY Italian Deli","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2844569,36.1386]},"properties":{"stars":"4","name":"Go Raw Cafe","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.269105,36.144399]},"properties":{"stars":"3","name":"Wendy's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.268061,36.144462]},"properties":{"stars":"3.5","name":"Mad Matty's Bar & Grille","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.284115,36.138984]},"properties":{"stars":"3.5","name":"King & I","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.279203,36.1423419]},"properties":{"stars":"4","name":"Subway","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.279609,36.115014]},"properties":{"stars":"3.5","name":"Port of Subs","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2627935,36.1586571]},"properties":{"stars":"3.5","name":"Roberto's Taco Shop","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2700332,36.1437557]},"properties":{"stars":"3.5","name":"Marie Callenders Restaurant & Bakery","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2918681,36.1576804]},"properties":{"stars":"3","name":"Mimi's Cafe","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.3008423,36.1444204]},"properties":{"stars":"3","name":"IHOP","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.270792,36.143312]},"properties":{"stars":"3","name":"Macayo's Mexican Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2774056,36.1441485]},"properties":{"stars":"4","name":"Domino's Pizza","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.251164,36.159444]},"properties":{"stars":"4","name":"Pizza Hut","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2504727,36.1590303]},"properties":{"stars":"3.5","name":"The Hush Puppy","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2923953,36.1443443]},"properties":{"stars":"4","name":"Pumi Chinese Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2842541,36.1384195]},"properties":{"stars":"4","name":"Lakes Lounge","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2891857,36.1608311]},"properties":{"stars":"4","name":"The Melting Pot","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1729681,36.159205]},"properties":{"stars":"4","name":"Great Wall Chinese Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2757054,36.1445189]},"properties":{"stars":"4","name":"Capriotti's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2980149,36.1466899]},"properties":{"stars":"4","name":"Jack In the Box","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.273936,36.144668]},"properties":{"stars":"3.5","name":"Paymon's Mediterranean Cafe & Hookah Lounge","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2792419,36.1439982]},"properties":{"stars":"3","name":"Charlies  Lakeside Restaurant & Lounge","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2823885,36.1586161]},"properties":{"stars":"3.5","name":"Jack-In-the-Box #7239","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.298961,36.144951]},"properties":{"stars":"4","name":"Rubio's Fresh Mexican Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.25354,36.1433]},"properties":{"stars":"4.5","name":"Cafe Wasabi","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.3114728,36.1589122]},"properties":{"stars":"2.5","name":"Atlanta Bread Company","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2599825,36.14314645]},"properties":{"stars":"4","name":"Sushi Fever","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2851944,36.1585173]},"properties":{"stars":"4","name":"Roy's Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2794369,36.1274488]},"properties":{"stars":"2.5","name":"Arby's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.3147654,36.1273513]},"properties":{"stars":"3","name":"The Lodge At Hualapai","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.301818,36.1449499]},"properties":{"stars":"5","name":"Bertolini's Authentic Trattoria","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.269055,36.1437795]},"properties":{"stars":"4.5","name":"Rosemary's Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.278969,36.159901]},"properties":{"stars":"3.5","name":"Pearl Wok To Go","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.246394,36.125183]},"properties":{"stars":"3","name":"Panda Express","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2536257,36.1430817]},"properties":{"stars":"4","name":"Hedary's Mediterranean Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2789626,36.1281441]},"properties":{"stars":"4","name":"Villa Pizza","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2875418,36.1595648]},"properties":{"stars":"3.5","name":"Jersey Mike's Subs","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.31363,36.1573134]},"properties":{"stars":"3","name":"Outside Inn","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2864495,36.1595644]},"properties":{"stars":"3.5","name":"Applebee's Neighborhood Grill & Bar","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2896481,36.1595332]},"properties":{"stars":"4","name":"Wendy's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.162891,36.07082623]},"properties":{"stars":"4","name":"Panevino Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1342773,36.10034943]},"properties":{"stars":"4","name":"Metro Pizza","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1586173,36.0572757]},"properties":{"stars":"3.5","name":"Bono's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1226908,36.0576948]},"properties":{"stars":"3.5","name":"Memphis Championship Barbecue","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.119423,36.059631]},"properties":{"stars":"3","name":"Round Table Pizza","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.127262,36.1000159]},"properties":{"stars":"4","name":"Min Sok Chon","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1234868,36.0578552]},"properties":{"stars":"3","name":"Sonic Drive-In","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1287195,36.0568121]},"properties":{"stars":"4","name":"El Herradero Mexican Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1196792,36.0587031]},"properties":{"stars":"3","name":"China Joe's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1378273,36.116132]},"properties":{"stars":"3.5","name":"Taqueria Santa Cruz","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.137368,36.114168]},"properties":{"stars":"3.5","name":"Long John Silver's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1370645,36.10707963]},"properties":{"stars":"3.5","name":"Chipotle","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.120364,36.057462]},"properties":{"stars":"3","name":"Tropical Smoothie Cafe","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1179154,36.0993008]},"properties":{"stars":"3","name":"Taco Ole","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.118501,36.101456]},"properties":{"stars":"3","name":"Marie Callender's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.173216,36.0948217]},"properties":{"stars":"2","name":"McDonald's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.175922,36.095424]},"properties":{"stars":"3.5","name":"Nathan's Famous","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.17348,36.074457]},"properties":{"stars":"4","name":"Jack in the Box","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.130239,36.071753]},"properties":{"stars":"3","name":"PT's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1730561,36.0919655]},"properties":{"stars":"4","name":"Border Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1497024,36.1151798]},"properties":{"stars":"4.5","name":"Roy's Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1350058,36.11549955]},"properties":{"stars":"4","name":"Yama Sushi","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.132803,36.114031]},"properties":{"stars":"3.5","name":"Blueberry Hill Family Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1355152,36.1146707]},"properties":{"stars":"3.5","name":"Baja Fresh Mexican Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1370379,36.1138571]},"properties":{"stars":"4","name":"Rincon Catracho","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1216788,36.1144864]},"properties":{"stars":"3","name":"The Tillerman","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1378156,36.1182271]},"properties":{"stars":"3.5","name":"Arby's Roast Beef Sandwich Restaurants","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1204951,36.114311]},"properties":{"stars":"3.5","name":"Red Lobster","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.13823,36.1135943]},"properties":{"stars":"4","name":"Paymon's Mediterranean Cafe & Lounge","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1280709,36.1150801]},"properties":{"stars":"3","name":"T.G.I. Friday's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1781889,36.06734095]},"properties":{"stars":"3.5","name":"Kabuki Japanese Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1467108,36.1148821]},"properties":{"stars":"3","name":"Jack In The Box","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.132238,36.113633]},"properties":{"stars":"3.5","name":"Olive Garden Italian Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1378561,36.12000047]},"properties":{"stars":"3.5","name":"McDonald's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.115197,36.114264]},"properties":{"stars":"3","name":"Teriyaki","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.134754,36.100279]},"properties":{"stars":"2.5","name":"Macayo's Mexican Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.13618,36.105159]},"properties":{"stars":"3.5","name":"El Santaneco","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.151261,36.108898]},"properties":{"stars":"4","name":"Capriotti's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.13618,36.105159]},"properties":{"stars":"2.5","name":"Sushi Boy Desu","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1370825,36.12053988]},"properties":{"stars":"2.5","name":"IHOP","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1265829,36.100414]},"properties":{"stars":"4","name":"Sergio's Italian Gardens","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.120376,36.101357]},"properties":{"stars":"3.5","name":"Strings Italian Cafe","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.135043,36.100539]},"properties":{"stars":"3.5","name":"Felipito's Mexican Food","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.134574,36.101467]},"properties":{"stars":"4","name":"Crown & Anchor British Pub","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.138749,36.1007863]},"properties":{"stars":"3","name":"King & I","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.171897,36.090535]},"properties":{"stars":"3","name":"Panda Express","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1767851,36.09192513]},"properties":{"stars":"3.5","name":"Lupo","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1369483,36.1164395]},"properties":{"stars":"3","name":"Souper Salad","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.128565,36.099959]},"properties":{"stars":"4","name":"Carluccio's Tivoli Gardens","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.125135,36.100336]},"properties":{"stars":"4","name":"Cuba Cafe Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.136178,36.1051599]},"properties":{"stars":"4","name":"Stephano's Greek & Mediterranean Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1176587,36.0806934]},"properties":{"stars":"4","name":"Blue Ox Central","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.138061,36.119493]},"properties":{"stars":"3.5","name":"Panda Express","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1372536,36.1034205]},"properties":{"stars":"3","name":"East Boy","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.136537,36.099931]},"properties":{"stars":"1.5","name":"Domino's Pizza","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1175528,36.073179]},"properties":{"stars":"4","name":"Sunset Pizzeria","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.13605,36.102784]},"properties":{"stars":"4","name":"Stake Out","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.175499,36.083212]},"properties":{"stars":"4.5","name":"Cili Fine Dining","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.13276,36.115612]},"properties":{"stars":"1.5","name":"New China Buffet","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.173216,36.0948217]},"properties":{"stars":"2","name":"Little Caesar's Pizza","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.136639,36.114859]},"properties":{"stars":"4","name":"Lone Star Steakhouse & Saloon","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.136879,36.117891]},"properties":{"stars":"4","name":"Jason's Deli","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1474047,36.11487547]},"properties":{"stars":"4","name":"Mint Indian Bistro","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.125135,36.100336]},"properties":{"stars":"3.5","name":"Toto's Mexican","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1372233,36.1041767]},"properties":{"stars":"3.5","name":"Aloha Kitchen","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1187515,36.05895233]},"properties":{"stars":"3.5","name":"El Pollo Loco","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.114898,36.142401]},"properties":{"stars":"4","name":"Gilligan's Hide Away","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.075618,36.1230335]},"properties":{"stars":"3.5","name":"Yukon Grille","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.067036,36.137371]},"properties":{"stars":"4","name":"Roberto's Taco Shop","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.0846439,36.13347158]},"properties":{"stars":"4","name":"The Broiler","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.0881146,36.1165487]},"properties":{"stars":"3","name":"Cabo Mexican Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.0877635,36.1337393]},"properties":{"stars":"4","name":"Pasta Cucina","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1116708,36.1003826]},"properties":{"stars":"4","name":"Casa Di Amore","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.10385,36.100444]},"properties":{"stars":"3","name":"International House of Pancakes","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.0923356,36.11539386]},"properties":{"stars":"4","name":"Blueberry Hill Family Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.0709505,36.1149304]},"properties":{"stars":"4","name":"Dal Italia","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.0796262,36.1003418]},"properties":{"stars":"3","name":"PT's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.0918871,36.1143211]},"properties":{"stars":"4.5","name":"Blue Ox East Restaurant & Lounge","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.0996426,36.1014577]},"properties":{"stars":"4","name":"Fuji Japanese Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.0658575,36.12882834]},"properties":{"stars":"4","name":"Jack in the Box","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.113908,36.099264]},"properties":{"stars":"2","name":"Pizza Hut","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.0656221,36.1005561]},"properties":{"stars":"3","name":"El Gran Taco","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1161258,36.0996477]},"properties":{"stars":"3.5","name":"El Pollo Loco","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.066886,36.114249]},"properties":{"stars":"3","name":"Kfc","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.090593,36.129968]},"properties":{"stars":"4.5","name":"Cavalier Lounge & Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.0935822,36.13000488]},"properties":{"stars":"3.5","name":"Wo Fat","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1150604,36.1005504]},"properties":{"stars":"5","name":"Farm Basket","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1039694,36.09971]},"properties":{"stars":"3.5","name":"Chapala's Mexican Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.065674,36.113192]},"properties":{"stars":"3.5","name":"Long John Silver's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.0927902,36.1296013]},"properties":{"stars":"4.5","name":"Geisha Steakhouse","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1060721,36.0998468]},"properties":{"stars":"3.5","name":"Swiss Cafe Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.0911513,36.1170748]},"properties":{"stars":"4","name":"Capriotti's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.102291,36.115602]},"properties":{"stars":"2","name":"Quiznos","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1162942,36.099157]},"properties":{"stars":"3","name":"La Palapa","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.0996426,36.1014577]},"properties":{"stars":"4","name":"Geri's Olde Philadelphia Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.0996426,36.1014577]},"properties":{"stars":"3.5","name":"Ilopango Salvadorean Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.101641,36.0996787]},"properties":{"stars":"2.5","name":"Port of Subs","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1024835,36.0990599]},"properties":{"stars":"4","name":"Thai Room","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.0999935,36.0993723]},"properties":{"stars":"3.5","name":"Ciao Pizzeria","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.069022,36.115181]},"properties":{"stars":"2.5","name":"Church's Chicken","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.113318,36.129159]},"properties":{"stars":"4","name":"Original Lindo Michoacan","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1378273,36.116132]},"properties":{"stars":"2","name":"Cafe Verdi","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.108235,36.130393]},"properties":{"stars":"3.5","name":"Omelet House & More","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1033537,36.1299776]},"properties":{"stars":"3","name":"Del Taco","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.116422,36.100077]},"properties":{"stars":"3.5","name":"Taco Bell","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.109284,36.1300968]},"properties":{"stars":"2.5","name":"McDonald's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.102291,36.115602]},"properties":{"stars":"3.5","name":"Panda Express","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.103546,36.100745]},"properties":{"stars":"4.5","name":"Great Buns Bakery","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.0643554,36.12926596]},"properties":{"stars":"3.5","name":"Joey's Pizza","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.101483,36.114023]},"properties":{"stars":"3","name":"Outback Steakhouse","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.114283,36.099319]},"properties":{"stars":"3.5","name":"Sushi On Tropicana","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1191655,36.0187424]},"properties":{"stars":"2","name":"Wendys","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1691491,36.0549289]},"properties":{"stars":"2.5","name":"Rocky's Philly Cheese Steaks","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1190908,36.0211192]},"properties":{"stars":"4","name":"Port of Subs","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.171268,36.034012]},"properties":{"stars":"4","name":"Geebee's Bar & Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.118789,36.055987]},"properties":{"stars":"3","name":"Wendy's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1190908,36.0211192]},"properties":{"stars":"4","name":"Beijing Chinese Cuisine","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.116606,36.041827]},"properties":{"stars":"2","name":"Pizza Hut","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1723816,36.0565722]},"properties":{"stars":"2.5","name":"McDonald's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.127524,36.020586]},"properties":{"stars":"3","name":"Taco Bell","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.114895,36.028096]},"properties":{"stars":"3.5","name":"Round Table Pizza","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1364827,36.01165133]},"properties":{"stars":"3.5","name":"Thai House Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1188775,36.0176758]},"properties":{"stars":"4","name":"T-Bird Lounge & Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1190908,36.0211192]},"properties":{"stars":"2","name":"Papa John's Pizza","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1538305,36.157156]},"properties":{"stars":"3.5","name":"Casa Don Juan","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1536255,36.0129956]},"properties":{"stars":"3","name":"Jack In the Box","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.138937,36.005843]},"properties":{"stars":"3.5","name":"Goldfinger's Bar & Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1703553,36.0419004]},"properties":{"stars":"3.5","name":"Popeye's Chicken & Biscuits","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1170089,36.02197894]},"properties":{"stars":"3.5","name":"Chuck E Cheese's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1357133,36.027642]},"properties":{"stars":"4.5","name":"Mulligan's Border Bar & Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.117383,36.0194669]},"properties":{"stars":"2","name":"Domino's Pizza","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.146159,36.006922]},"properties":{"stars":"3.5","name":"Lefty's Pizza","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1185832,36.0180728]},"properties":{"stars":"3.5","name":"Little Dumpling","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.120455,36.041095]},"properties":{"stars":"4","name":"Dreamers Bar & Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.136169,36.011942]},"properties":{"stars":"4","name":"Sushi Mon","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.117026,36.0203391]},"properties":{"stars":"3","name":"DOC Holliday's Saloons","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1715393,36.04899216]},"properties":{"stars":"3.5","name":"The Bootlegger Bistro","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.120455,36.041095]},"properties":{"stars":"4","name":"Verrazano Pizza","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.137138,36.010778]},"properties":{"stars":"4","name":"Mama Depalma's Pizza & Bistro","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.12046,36.041101]},"properties":{"stars":"3.5","name":"Chopstix","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.120756,36.041953]},"properties":{"stars":"2","name":"KFC","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.119277,36.011058]},"properties":{"stars":"3","name":"Fazoli's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1193403,36.04186]},"properties":{"stars":"3.5","name":"Jack In The Box","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1691491,36.0549289]},"properties":{"stars":"4","name":"Great American Cookies","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.120061,36.021492]},"properties":{"stars":"3","name":"McDonald's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.121054,36.020812]},"properties":{"stars":"3.5","name":"Del Taco","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.15086,36.013564]},"properties":{"stars":"3.5","name":"PT's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1193516,36.0290393]},"properties":{"stars":"3","name":"Kopper Keg Lounge","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1193516,36.0290393]},"properties":{"stars":"4","name":"Kopper Keg Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.171766,36.010762]},"properties":{"stars":"3.5","name":"Boulevard Bar & Grille","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.136056,36.012764]},"properties":{"stars":"3","name":"Panda Express","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1183069,36.0197781]},"properties":{"stars":"3","name":"Denny's Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.280424,36.219158]},"properties":{"stars":"2.5","name":"KFC","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.276246,36.21907]},"properties":{"stars":"3.5","name":"Little Caesars Pizza","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2504999,36.2404057]},"properties":{"stars":"2.5","name":"Jack in the Box","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2514512,36.2338374]},"properties":{"stars":"3","name":"Dairy Queen","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2624712,36.2191781]},"properties":{"stars":"4","name":"The Cracked Egg","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2596177,36.2185259]},"properties":{"stars":"2","name":"Pizza Hut","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2627104,36.2184533]},"properties":{"stars":"3","name":"Subway","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.27675,36.219022]},"properties":{"stars":"3.5","name":"Viva El Taco","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.281564,36.2187749]},"properties":{"stars":"4","name":"Original Pancake House","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2595642,36.2185429]},"properties":{"stars":"2.5","name":"Sushi In Summerlin","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.250171,36.240964]},"properties":{"stars":"3","name":"McDonald's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2961279,36.2188993]},"properties":{"stars":"4","name":"Timbers - Cheyenne","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.27473,36.218883]},"properties":{"stars":"3","name":"Einstein Bros","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.280851,36.219153]},"properties":{"stars":"3.5","name":"Burger King","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.256763,36.218705]},"properties":{"stars":"3.5","name":"Sonic Drive-In","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.264596,36.218868]},"properties":{"stars":"3.5","name":"Putter's Bar & Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2515275,36.2191606]},"properties":{"stars":"3.5","name":"Dona Maria Tamales Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2590423,36.21870801]},"properties":{"stars":"3.5","name":"Capriotti's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.250331,36.219859]},"properties":{"stars":"3.5","name":"Gallo's Pizza Kitchen","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2563564,36.2186396]},"properties":{"stars":"3","name":"El Pollo Loco","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2627104,36.2184533]},"properties":{"stars":"3.5","name":"Gyro Time Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.276246,36.21907]},"properties":{"stars":"3","name":"Cook On Wok","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.264308,36.281058]},"properties":{"stars":"4","name":"Taco Bell","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2798639,36.3000254]},"properties":{"stars":"2.5","name":"Grand China III","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.282161,36.302559]},"properties":{"stars":"2","name":"Dairy Queen","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2635864,36.2790286]},"properties":{"stars":"4","name":"Subway","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.28124,36.3019566]},"properties":{"stars":"3","name":"McDonald's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2801641,36.2996968]},"properties":{"stars":"4","name":"Subway","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.3207633,36.1591357]},"properties":{"stars":"3.5","name":"Del Taco","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.318343,36.158862]},"properties":{"stars":"3","name":"Taco Bell","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.3214437,36.16041626]},"properties":{"stars":"3","name":"Samurai Sam's Teriyaki Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.3173853,36.1588464]},"properties":{"stars":"1.5","name":"KFC","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.3172783,36.1588927]},"properties":{"stars":"2","name":"Papa John's Pizza","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.319453,36.159506]},"properties":{"stars":"3","name":"Port of Subs","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.3172783,36.1588927]},"properties":{"stars":"2.5","name":"Ho Ho Ho Chinese Gourmet","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.333266,36.160128]},"properties":{"stars":"1.5","name":"Burger King","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.193713,36.038397]},"properties":{"stars":"3.5","name":"Brando's Sportsbar","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.182206,35.973171]},"properties":{"stars":"3.5","name":"Molly Malone's Irish Pub","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2606727,36.1740747]},"properties":{"stars":"3.5","name":"Westcliff Station","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2439738,36.1613125]},"properties":{"stars":"2.5","name":"Roberto's Taco Shop","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.244801,36.171328]},"properties":{"stars":"4","name":"Verrazano Pizza","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2611962,36.1740679]},"properties":{"stars":"3","name":"Gourmet Wok","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.291448,36.17581054]},"properties":{"stars":"3","name":"Ceres","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2910289,36.1757303]},"properties":{"stars":"3","name":"Spiedini Ristorante","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2440667,36.1612957]},"properties":{"stars":"4","name":"Port of Subs","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.245078,36.159706]},"properties":{"stars":"4","name":"Jamms Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2444959,36.1648301]},"properties":{"stars":"3","name":"PT's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2908583,36.1615381]},"properties":{"stars":"2.5","name":"McDonald's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2910679,36.1607472]},"properties":{"stars":"2.5","name":"Tokyoto Sushi","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2910671,36.1607478]},"properties":{"stars":"3.5","name":"Jason's Deli","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2919547,36.1594239]},"properties":{"stars":"3.5","name":"P F Chang's China Bistro","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2791809,36.1233146]},"properties":{"stars":"3","name":"Brewske's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2945252,36.114941]},"properties":{"stars":"2.5","name":"Kobe Sushi Bar","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2616127,36.1079293]},"properties":{"stars":"3.5","name":"Rounders","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2618789,36.1149017]},"properties":{"stars":"2.5","name":"McDonald's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.26108,36.11364707]},"properties":{"stars":"3.5","name":"Cafe Chloe","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2610916,36.1133426]},"properties":{"stars":"4.5","name":"Jasmine Thai Gourmet","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2791061,36.1086096]},"properties":{"stars":"1.5","name":"Pizza Hut","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2790272,36.1174457]},"properties":{"stars":"3","name":"Chow Mein Express","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.3010613,36.1156714]},"properties":{"stars":"3.5","name":"Sedona Lounge","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2939618,36.1149283]},"properties":{"stars":"3","name":"Little Dumpling","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2795616,36.1139187]},"properties":{"stars":"2.5","name":"Jack in the Box","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.3060029,36.1111057]},"properties":{"stars":"3","name":"Kilroy's Restaurant & Bar","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.244154,36.100078]},"properties":{"stars":"1.5","name":"Carl's Jr Restaurants","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2965319,36.102015]},"properties":{"stars":"2","name":"Papa John's Pizza","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.279156,36.1193274]},"properties":{"stars":"2.5","name":"PT's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.279647,36.11706]},"properties":{"stars":"2","name":"Wendy's ","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.278972,36.121116]},"properties":{"stars":"3","name":"Taco Bell","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.261435,36.112983]},"properties":{"stars":"3.5","name":"Hikari","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2676367,36.2709598]},"properties":{"stars":"2.5","name":"Baja Fresh Mexican Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.262993,36.27137207]},"properties":{"stars":"3","name":"International House of Pancakes","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2676367,36.2709598]},"properties":{"stars":"3.5","name":"Mark Rich's New York Pizza & Pasta","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2793921,36.2772395]},"properties":{"stars":"2","name":"McDonald's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2646358,36.2716275]},"properties":{"stars":"2.5","name":"Port of Subs","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1428262,36.14356626]},"properties":{"stars":"4","name":"Lotus of Siam","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.257445,36.195768]},"properties":{"stars":"3","name":"Osaka Japanese Bistro Summerlin","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1761563,36.09278851]},"properties":{"stars":"4","name":"Red Square Restaurant & Vodka Lounge","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1725201,36.1100794]},"properties":{"stars":"3","name":"Zanzibar Cafe","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.177001,36.11199]},"properties":{"stars":"3.5","name":"Jasmine","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.169191,36.105982]},"properties":{"stars":"3.5","name":"Emeril's New Orleans Fish House","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.176247,36.092875]},"properties":{"stars":"4","name":"Burger Bar","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.171051,36.12595131]},"properties":{"stars":"4","name":"Mesa Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1534933,36.10916361]},"properties":{"stars":"4","name":"Nobu","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1693773,36.12179155]},"properties":{"stars":"4","name":"Delmonico Steakhouse","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.176032,36.118329]},"properties":{"stars":"4","name":"Palm Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.163961,36.134927]},"properties":{"stars":"1.5","name":"McDonald's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.146372,36.124423]},"properties":{"stars":"4.5","name":"Tsunami Asian Grill & Sushi Bar","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1684081,36.1135342]},"properties":{"stars":"3.5","name":"Ichiban Sushi","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1727107,36.1094088]},"properties":{"stars":"4.5","name":"Commander's Palace","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1743045,36.1061988]},"properties":{"stars":"3","name":"Boardwalk Hotel & Casino","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1725885,36.11295248]},"properties":{"stars":"4","name":"Mon Ami Gabi","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1745272,36.1046129]},"properties":{"stars":"4.5","name":"Andre's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1690649,36.12285196]},"properties":{"stars":"3.5","name":"V Bar","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.156483,36.142229]},"properties":{"stars":"2.5","name":"Sahara Hotel","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.163122,36.13361303]},"properties":{"stars":"4","name":"The Peppermill Restaurant & Fireside Lounge","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.168791,36.129066]},"properties":{"stars":"3.5","name":"New Frontier Hotel & Casino","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.136389,36.175]},"properties":{"stars":"4","name":"BOA Steakhouse","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.167691,36.103053]},"properties":{"stars":"4","name":"Tom Colicchio's Craftsteak","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1536602,36.1089964]},"properties":{"stars":"3.5","name":"Pink Taco","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1702789,36.12229341]},"properties":{"stars":"4","name":"Bouchon","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.17698,36.111978]},"properties":{"stars":"4","name":"Olives","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1696112,36.1214517]},"properties":{"stars":"3.5","name":"Canyon Ranch SpaClub Las Vegas","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.177001,36.11199]},"properties":{"stars":"4","name":"Le Cirque","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2428029,36.1523253]},"properties":{"stars":"4","name":"Jersey Mike's Subs","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1525895,36.10829438]},"properties":{"stars":"3.5","name":"Mr. Lucky's 24-7","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1692673,36.10270276]},"properties":{"stars":"4","name":"Shibuya","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1727367,36.1142391]},"properties":{"stars":"4","name":"Sterling Brunch","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1518374,36.1078048]},"properties":{"stars":"3.5","name":"Hofbr<U+00E4>uhaus","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1735161,36.1030009]},"properties":{"stars":"3.5","name":"Il Fornaio","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1767584,36.1044875]},"properties":{"stars":"2.5","name":"The Buffet","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1525981,36.1511188]},"properties":{"stars":"3.5","name":"Tiffany's Cafe","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1764088,36.11316041]},"properties":{"stars":"3.5","name":"The Buffet at Bellagio","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1716661,36.11025031]},"properties":{"stars":"3","name":"Spice Market Buffet","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1684081,36.1135342]},"properties":{"stars":"3","name":"Big Kitchen Buffet","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1659163,36.1275008]},"properties":{"stars":"3.5","name":"Bartolotta Ristorante di Mare","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1701334,36.0935008]},"properties":{"stars":"2.5","name":"China Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1693695,36.12181303]},"properties":{"stars":"4","name":"AquaKnox","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1669985,36.12617014]},"properties":{"stars":"4","name":"SW Steakhouse","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.136389,36.175]},"properties":{"stars":"3.5","name":"Fusia","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1685807,36.10350893]},"properties":{"stars":"3.5","name":"Diego Mexican Cuisine","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1713514,36.11252664]},"properties":{"stars":"3.5","name":"La Creperie","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1379938,36.08952868]},"properties":{"stars":"3.5","name":"RM Seafood","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.177001,36.11199]},"properties":{"stars":"4.5","name":"Picasso","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.146372,36.124423]},"properties":{"stars":"2.5","name":"Lago Buffet","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1727807,36.0908025]},"properties":{"stars":"4","name":"Foundation Room","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1730561,36.0919655]},"properties":{"stars":"2.5","name":"Red","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1701225,36.12227644]},"properties":{"stars":"4","name":"Grand Lux Cafe","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1758683,36.0928665]},"properties":{"stars":"3.5","name":"House of Blues","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1711298,36.128561]},"properties":{"stars":"4","name":"Okada","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.170815,36.1274245]},"properties":{"stars":"3.5","name":"Cafe Ba-Ba-Reeba","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.172324,36.1245369]},"properties":{"stars":"4","name":"ISLA Mexican Kitchen & Tequila Bar","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2405562,36.1972177]},"properties":{"stars":"3.5","name":"Sweet Tomatoes","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2067011,36.1104125]},"properties":{"stars":"3","name":"Gardu<U+00F1>os","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1711298,36.128561]},"properties":{"stars":"3.5","name":"AJ's Steakhouse","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1724261,36.1011972]},"properties":{"stars":"4","name":"SEABLUE by Michael Mina","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.173336,36.119556]},"properties":{"stars":"3","name":"Neros","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.172557,36.1156338]},"properties":{"stars":"3.5","name":"Margaritaville","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.170579,36.11250064]},"properties":{"stars":"2.5","name":"Le Provencal","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2798899,36.14359527]},"properties":{"stars":"3.5","name":"Sushi Mon","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.165731,36.126506]},"properties":{"stars":"3.5","name":"Sugar & Ice","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.173336,36.119556]},"properties":{"stars":"4","name":"Bradley Ogden","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.16559,36.12688722]},"properties":{"stars":"4","name":"The Buffet","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.177001,36.11199]},"properties":{"stars":"3.5","name":"FIX","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.136389,36.175]},"properties":{"stars":"3.5","name":"Corsa Cucina","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.146372,36.124423]},"properties":{"stars":"3.5","name":"Shintaro","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1659684,36.12578335]},"properties":{"stars":"3.5","name":"Red 8","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.177001,36.11199]},"properties":{"stars":"4","name":"Michael Mina","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.136389,36.175]},"properties":{"stars":"4","name":"Daniel Boulud Brasserie","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1649668,36.1294702]},"properties":{"stars":"4","name":"Country Club","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1684173,36.13974493]},"properties":{"stars":"3.5","name":"RA Sushi Bar Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.146372,36.124423]},"properties":{"stars":"4.5","name":"Alex","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1712045,36.1116957]},"properties":{"stars":"1.5","name":"Ah Sin","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1677039,36.12596392]},"properties":{"stars":"3.5","name":"Terrace Pointe Caf<U+00E9>","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.177001,36.11199]},"properties":{"stars":"4","name":"Prime","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1659163,36.1275008]},"properties":{"stars":"3.5","name":"Drugstore Caf<U+00E9>","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.169553,36.121792]},"properties":{"stars":"3.5","name":"Pinot Brasserie","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1780638,36.10420481]},"properties":{"stars":"2.5","name":"The Cafe at Monte Carlo","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.136389,36.175]},"properties":{"stars":"2.5","name":"The Coffee Shop","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.172986,36.128222]},"properties":{"stars":"4","name":"Maggiano's Little Italy","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1893946,36.11788994]},"properties":{"stars":"3.5","name":"Carnival World Buffet","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.171561,36.053588]},"properties":{"stars":"3","name":"IHOP","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.17204,36.106542]},"properties":{"stars":"3.5","name":"Tamba Indian Cuisine & Lounge","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1765084,36.12038056]},"properties":{"stars":"3","name":"Pizzeria Francesco's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.172435,36.11992826]},"properties":{"stars":"3","name":"Flavors The Buffet","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1805678,36.1448586]},"properties":{"stars":"4","name":"In-N-Out Burger","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1699689,36.11293028]},"properties":{"stars":"3.5","name":"Le Village Buffet","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.17106,36.12008]},"properties":{"stars":"3.5","name":"Noodle Asia","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.172953,36.10156]},"properties":{"stars":"4","name":"Fiamma Trattoria & Bar","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.170958,36.112535]},"properties":{"stars":"2.5","name":"Le Cafe Ile Saint Louis","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.156483,36.142229]},"properties":{"stars":"2","name":"Sahara Buffet","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.171448,36.120894]},"properties":{"stars":"2.5","name":"Denny's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.171781,36.115023]},"properties":{"stars":"3","name":"Victorian Cafe","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1763005,36.11226905]},"properties":{"stars":"3","name":"Noodles","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.146372,36.124423]},"properties":{"stars":"3","name":"Kahunaville Island Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1711726,36.1240302]},"properties":{"stars":"3","name":"Phil's Italian Steak House","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2016043,36.1009919]},"properties":{"stars":"3.5","name":"The Prime Rib Loft","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1039694,36.09971]},"properties":{"stars":"3","name":"Buffet Orient","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1751119,36.09208085]},"properties":{"stars":"3.5","name":"Fleur by Hubert Keller","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1705414,36.10259007]},"properties":{"stars":"4.5","name":"L'Atelier de Joel Robuchon","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1739961,36.11734356]},"properties":{"stars":"4","name":"Il Mulino","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.3344727,36.1556178]},"properties":{"stars":"3","name":"The Salt Lick Bar-BQ","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1645622,36.1314967]},"properties":{"stars":"3","name":"Kimchi Korean Bbq","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.136389,36.175]},"properties":{"stars":"3","name":"Tintoretto Restaurant and Bakery","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.19723,36.115317]},"properties":{"stars":"3","name":"24 Seven Cafe","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.3042546,36.1139286]},"properties":{"stars":"4","name":"Sapporo","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1755579,36.09188476]},"properties":{"stars":"3","name":"Raffles Cafe","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1745164,36.12154889]},"properties":{"stars":"3","name":"Carnegie","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.174327,36.12133352]},"properties":{"stars":"4","name":"Stack Restaurant & Bar","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.216317,36.143685]},"properties":{"stars":"3.5","name":"Orchids Garden Chinese Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.211622,36.171184]},"properties":{"stars":"4","name":"Sushi Avenue & Steak House","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.140844,36.170055]},"properties":{"stars":"2.5","name":"Neonopolis","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1747236,36.09066467]},"properties":{"stars":"4","name":"Verandah","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1568938,36.1094581]},"properties":{"stars":"2","name":"Pharoah's Pheast Buffet","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1766196,36.095474]},"properties":{"stars":"3","name":"Pyramid Cafe","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.136561,36.104474]},"properties":{"stars":"3.5","name":"Omelet House","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2016373,36.1443957]},"properties":{"stars":"4.5","name":"Egg & I","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1490784,36.1237328]},"properties":{"stars":"4","name":"Nobhill Tavern by Michael Mina","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.169277,36.1025618]},"properties":{"stars":"2.5","name":"Studio Caf<U+00E9>","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1713943,36.1156902]},"properties":{"stars":"3.5","name":"Steakhouse 46","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.146372,36.124423]},"properties":{"stars":"2","name":"The Dam Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.173336,36.119556]},"properties":{"stars":"3","name":"Augustus Cafe","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1726313,36.1094391]},"properties":{"stars":"3","name":"Cheeseburger","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1529193,36.1371122]},"properties":{"stars":"2","name":"Paradise Caf<U+00E9>","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2792265,36.052079]},"properties":{"stars":"4","name":"Ohana Hawaiian BBQ","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.3313892,36.15328907]},"properties":{"stars":"3","name":"Sandbar","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.286371,36.158849]},"properties":{"stars":"3.5","name":"Carrabba's Italian Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.3519,36.1373]},"properties":{"stars":"3","name":"Fatburger","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.168328,36.12764837]},"properties":{"stars":"4","name":"The Capital Grille","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1713543,36.10205326]},"properties":{"stars":"2.5","name":"MGM Grand Buffet","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.177001,36.11199]},"properties":{"stars":"4","name":"Sensi","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.173192,36.108713]},"properties":{"stars":"4","name":"Social House","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.174531,36.112379]},"properties":{"stars":"3","name":"Cafe Bellagio","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1952016,36.11530883]},"properties":{"stars":"3.5","name":"Ping Pang Pong","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1727803,36.1050656]},"properties":{"stars":"4.5","name":"Alan Albert's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.175557,36.098909]},"properties":{"stars":"2.5","name":"Sherwood Forest Cafe","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.0619432,36.1969093]},"properties":{"stars":"4.5","name":"Arandas Taqueria","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1723251,36.12453842]},"properties":{"stars":"3","name":"Gilley's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.242827,36.194443]},"properties":{"stars":"3.5","name":"Famous Dave's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1749124,36.01143871]},"properties":{"stars":"2.5","name":"Garden Buffet","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1420069,36.1718303]},"properties":{"stars":"4","name":"Triple George Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2793808,36.0533669]},"properties":{"stars":"4","name":"Amigos Tacos","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.171338,36.121239]},"properties":{"stars":"3","name":"Nathan's Famous","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.187298,36.118117]},"properties":{"stars":"3.5","name":"Village Seafood Buffet","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.173705,36.140012]},"properties":{"stars":"3","name":"Treasures","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2978076,36.1013946]},"properties":{"stars":"4","name":"Roberto's Taco Shop","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2787875,36.0420917]},"properties":{"stars":"3.5","name":"Pho 777","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1455849,36.1727435]},"properties":{"stars":"3.5","name":"Market Street Cafe","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1729418,36.1183949]},"properties":{"stars":"4","name":"The Cheesecake Factory","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1415626,36.1703435]},"properties":{"stars":"3.5","name":"Thai Vegas","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.239955,36.144667]},"properties":{"stars":"4","name":"Hash House A Go Go","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1718465,36.0524896]},"properties":{"stars":"4","name":"Raising Cane's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1765013,36.11696071]},"properties":{"stars":"3","name":"Hyakumi","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.155751,36.14754725]},"properties":{"stars":"4","name":"Top of the World Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1422063,36.1425179]},"properties":{"stars":"3.5","name":"Jin Mee Korean BBQ Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.279439,36.1238755]},"properties":{"stars":"3.5","name":"TC's Rib Crib","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.169611,36.121458]},"properties":{"stars":"3.5","name":"Tao Asian Bistro","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1570606,36.16369101]},"properties":{"stars":"3.5","name":"Makino","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2914106,36.1607779]},"properties":{"stars":"3","name":"Hannah's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.145126,36.17488]},"properties":{"stars":"3.5","name":"Triple 7 Restaurant & Microbrewery","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1456193,36.1729288]},"properties":{"stars":"4","name":"Pullman Grille","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.192046,36.117059]},"properties":{"stars":"3","name":"Monterey Room","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.174566,36.10259]},"properties":{"stars":"3","name":"America","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.242883,36.0725931]},"properties":{"stars":"3.5","name":"Kobe Sushi Bistro","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1703831,36.11899784]},"properties":{"stars":"3","name":"Toby Keith's I Love This Bar & Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.17817,36.262339]},"properties":{"stars":"3","name":"Thai Basil","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.211622,36.171184]},"properties":{"stars":"4","name":"Tinoco's Bistro","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1726248,36.103712]},"properties":{"stars":"3","name":"La Salsa Cantina","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2091942,36.2467581]},"properties":{"stars":"4.5","name":"Baladie Caf<U+00E9>","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.171207,36.111721]},"properties":{"stars":"3","name":"JJ's Boulangerie","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.27921,36.052119]},"properties":{"stars":"3.5","name":"Prima Pasta","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.224318,36.127754]},"properties":{"stars":"3.5","name":"Cafe Moda","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1322369,36.19323451]},"properties":{"stars":"4","name":"Jerry's Nugget Casino","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.211199,36.125587]},"properties":{"stars":"3.5","name":"Noodle Palace","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.3336143,36.15728105]},"properties":{"stars":"3","name":"Terra Rossa","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.297818,36.097616]},"properties":{"stars":"3","name":"Nagoya Japanese Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1747025,36.1428253]},"properties":{"stars":"4.5","name":"Oyster Bar","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1836618,36.04194923]},"properties":{"stars":"3","name":"Mi Casa Grill Cantina","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1727803,36.1050656]},"properties":{"stars":"4.5","name":"Rosewood Grille","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.209791,36.10819355]},"properties":{"stars":"4","name":"Nove Italiano","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1764369,36.09226829]},"properties":{"stars":"3.5","name":"China Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.140852,36.130315]},"properties":{"stars":"4","name":"La Scala","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1542695,36.1186973]},"properties":{"stars":"4","name":"Satay Thai Bistro & Bar","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.172277,36.11013195]},"properties":{"stars":"3","name":"La Salsa Cantina","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1189623,36.0123098]},"properties":{"stars":"4.5","name":"Nothing Bundt Cakes","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.174105,36.121237]},"properties":{"stars":"3.5","name":"Cravings Buffet at Mirage","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1765871,36.09193885]},"properties":{"stars":"3","name":"Bayside Buffet at Mandalay Bay","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1764396,36.11636745]},"properties":{"stars":"3.5","name":"Rao's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.31731,36.160122]},"properties":{"stars":"4","name":"Vintner Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1455116,36.1217684]},"properties":{"stars":"4","name":"Merkato Ethiopian Cafe","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1659163,36.1275008]},"properties":{"stars":"3.5","name":"Zoozacrackers Deli","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.173218,36.177516]},"properties":{"stars":"2.5","name":"Big Mama's Soul Food Rib Shack","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2858339,36.1587618]},"properties":{"stars":"4","name":"Fleming's Prime Steakhouse & Wine Bar","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.3324127,36.15821659]},"properties":{"stars":"3.5","name":"T-Bones Chophouse","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2074432,36.11347138]},"properties":{"stars":"4","name":"N9NE Steakhouse","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2463595,36.1253148]},"properties":{"stars":"4","name":"Wingstop","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.261803,36.159785]},"properties":{"stars":"2.5","name":"Kilroy's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.230955,36.114801]},"properties":{"stars":"4","name":"Archi's Thai Kitchen","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1746337,36.12111739]},"properties":{"stars":"3","name":"Samba","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2304131,36.2576752]},"properties":{"stars":"2.5","name":"Grand Caf<U+00E9>","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1802615,36.2612245]},"properties":{"stars":"3","name":"Sushi Wow","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1751614,36.0918639]},"properties":{"stars":"3.5","name":"THEcafe at THEhotel","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1685488,36.12089708]},"properties":{"stars":"3.5","name":"Japonais","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1494487,36.0574506]},"properties":{"stars":"4","name":"Table 34","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1190076,36.2386502]},"properties":{"stars":"3","name":"Casa Cocina","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1924229,36.11603686]},"properties":{"stars":"3.5","name":"Cortez Room","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.0759213,36.12489145]},"properties":{"stars":"3","name":"Sourdough Cafe","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1725943,36.099777]},"properties":{"stars":"2","name":"Garden Cafe","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.146372,36.124423]},"properties":{"stars":"3.5","name":"Les Artistes Steakhouse","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1977579,36.12558489]},"properties":{"stars":"2.5","name":"Harbor Palace","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1747417,36.11593286]},"properties":{"stars":"4.5","name":"Guy Savoy","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1765744,36.0911934]},"properties":{"stars":"4","name":"STRIPSTEAK","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1710285,36.0993783]},"properties":{"stars":"1.5","name":"Island Buffet","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1719929,36.1206737]},"properties":{"stars":"3.5","name":"Outback Steakhouse","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.3315267,36.1608544]},"properties":{"stars":"3","name":"Agave","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1743629,36.1441896]},"properties":{"stars":"2.5","name":"Feast Buffet","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.151261,36.108898]},"properties":{"stars":"3.5","name":"Origin India Restaurant & Bar","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1714593,36.10094649]},"properties":{"stars":"3","name":"Grand Wok","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2114903,36.1260725]},"properties":{"stars":"3.5","name":"Swish Shabu Shabu","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1542912,36.1187281]},"properties":{"stars":"3.5","name":"Dragonfly","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.180169,36.2612231]},"properties":{"stars":"2.5","name":"Carmine's Italian Cafe","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2763891,36.1298737]},"properties":{"stars":"4.5","name":"Sen of Japan","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.256993,36.2652659]},"properties":{"stars":"4.5","name":"In-N-Out Burger","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1787673,36.2842163]},"properties":{"stars":"3.5","name":"Kaizen Fusion Roll & Sushi","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.146372,36.124423]},"properties":{"stars":"3.5","name":"Sirrico's Pizza","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1695061,36.1024458]},"properties":{"stars":"3","name":"Wichcraft","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.209289,36.117196]},"properties":{"stars":"4","name":"The Fat Greek","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.242469,36.14294]},"properties":{"stars":"3.5","name":"Opa Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.136389,36.175]},"properties":{"stars":"3","name":"Schoop's Hamburgers","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.171033,36.124467]},"properties":{"stars":"3.5","name":"Canter's Delicatessen","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2904272,36.1638883]},"properties":{"stars":"3.5","name":"Kona Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2448746,36.171328]},"properties":{"stars":"3","name":"Thai Taste","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2439142,36.04517323]},"properties":{"stars":"4","name":"Pin Kaow Thai","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2072072,36.1465042]},"properties":{"stars":"4","name":"Jersey's Bar & Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.136431,36.108111]},"properties":{"stars":"4.5","name":"Cheers Bar & Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.314538,36.10593]},"properties":{"stars":"3.5","name":"Lahaina Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1756406,36.09887835]},"properties":{"stars":"2","name":"Buffet Roundtable","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1183045,36.27478545]},"properties":{"stars":"3","name":"Golden Phoenix Chinese Cuisine","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.146372,36.124423]},"properties":{"stars":"4.5","name":"Nina","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1413073,36.1693227]},"properties":{"stars":"3","name":"Mickie Finnz","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1372406,36.1068493]},"properties":{"stars":"3.5","name":"Cafe Mitz","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2428468,36.0767759]},"properties":{"stars":"4","name":"Teriyaki House","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1728672,36.160294]},"properties":{"stars":"3.5","name":"Pad Thai Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1030149,36.1009736]},"properties":{"stars":"3.5","name":"Putter's Bar & Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1084176,36.1147452]},"properties":{"stars":"4","name":"Zodie's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1707506,36.10178699]},"properties":{"stars":"4","name":"Wolfgang Puck Bar and Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.277455,36.056242]},"properties":{"stars":"3.5","name":"Mantra Masala","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1373615,36.1084263]},"properties":{"stars":"3.5","name":"Cafe Hookah","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1400422,36.1688534]},"properties":{"stars":"3","name":"Jillian's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.146372,36.124423]},"properties":{"stars":"3","name":"Rialto Deli","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.151247,36.108947]},"properties":{"stars":"3.5","name":"Paradise Cantina","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.209418,36.142094]},"properties":{"stars":"4","name":"Hash House","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1917845,36.1439988]},"properties":{"stars":"2","name":"The Slanted Clam Tavern","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2797333,36.1191125]},"properties":{"stars":"4","name":"Naked Fish's Sushi & Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.275526,36.129857]},"properties":{"stars":"4","name":"MadHouse Coffee","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1149077,36.02818]},"properties":{"stars":"3.5","name":"Havana Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1778047,36.2866869]},"properties":{"stars":"2.5","name":"Vegas Sliders","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1794971,36.2865843]},"properties":{"stars":"3.5","name":"Rocco's NY Pizzeria","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1754201,36.01249821]},"properties":{"stars":"3.5","name":"Silverado Steakhouse","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.169229,36.121774]},"properties":{"stars":"4","name":"Bouchon Bakery","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.152093,36.1088013]},"properties":{"stars":"4","name":"Rainbow Bar and Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.136057,36.10279]},"properties":{"stars":"4","name":"Jimmy John's Gourmet Sandwiches","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.068367,36.11553192]},"properties":{"stars":"2.5","name":"IHOP","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2424229,36.1992487]},"properties":{"stars":"3","name":"Soul 2 Soul Bistro","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1509491,36.1090224]},"properties":{"stars":"3","name":"Johnny Rockets","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1193892,36.1138591]},"properties":{"stars":"3.5","name":"Taco Time","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.136559,36.10259]},"properties":{"stars":"3","name":"Yoshinoya","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.152279,36.1134879]},"properties":{"stars":"3.5","name":"Bougainvillea Caf<U+00E9>","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1935782,36.12639628]},"properties":{"stars":"3.5","name":"Dae Jang Keum Korean BBQ & Tofu Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2114903,36.1260725]},"properties":{"stars":"3.5","name":"Shuseki","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.297923,36.1122889]},"properties":{"stars":"3.5","name":"Bajio Mexican Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1516318,36.15350412]},"properties":{"stars":"4","name":"Thai Original BBQ Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.136431,36.108111]},"properties":{"stars":"3.5","name":"Roberto's Taco Shop","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1767584,36.1044875]},"properties":{"stars":"3","name":"The Pub at Monte Carlo","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1980059,36.1264769]},"properties":{"stars":"3.5","name":"Capital Seafood Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1418686,36.2943744]},"properties":{"stars":"3.5","name":"Sushi Tachi","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.137658,36.104148]},"properties":{"stars":"4.5","name":"In-N-Out Burger","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1794688,36.2633606]},"properties":{"stars":"3","name":"Fox's Pizza Den","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.3388214,36.11834335]},"properties":{"stars":"3.5","name":"Cabo Mexican Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1010762,36.0786537]},"properties":{"stars":"3","name":"Sonic Drive-In","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.224946,36.07039]},"properties":{"stars":"3.5","name":"Sierra Gold","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1595068,36.11343671]},"properties":{"stars":"4","name":"Marilyn's Cafe","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.172532,36.118221]},"properties":{"stars":"3.5","name":"Pizza Palace","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.219248,36.143974]},"properties":{"stars":"3.5","name":"Capo's Italian Cuisine","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1806837,36.1830457]},"properties":{"stars":"3","name":"Chicago Dogs","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.3344727,36.1556178]},"properties":{"stars":"3.5","name":"Tides Oyster Bar","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1725795,36.1046842]},"properties":{"stars":"3.5","name":"Smith & Wollensky","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.136831,36.105583]},"properties":{"stars":"3","name":"Einstein Bros","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1676158,36.12641633]},"properties":{"stars":"4","name":"Tableau","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.334816,36.15838983]},"properties":{"stars":"3.5","name":"Feast Buffet","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2232902,36.1255378]},"properties":{"stars":"3.5","name":"Nanay Gloria's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.195433,36.115137]},"properties":{"stars":"3","name":"Bistro Buffet","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1598072,36.11308135]},"properties":{"stars":"3.5","name":"The Cantina Mexican Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2016926,36.10313928]},"properties":{"stars":"3.5","name":"French Market Buffet","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.138026,36.089494]},"properties":{"stars":"3","name":"Shanghai Lilly","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.0992267,36.1151534]},"properties":{"stars":"3.5","name":"Little Caesars","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.071847,36.115258]},"properties":{"stars":"3","name":"Wienerschnitzel","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1687256,36.12300251]},"properties":{"stars":"3.5","name":"B&B Ristorante","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1794688,36.2633606]},"properties":{"stars":"4","name":"Hogs Heaven Barbeque","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1721598,36.1293929]},"properties":{"stars":"3","name":"Pampas Churrascaria","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1969907,36.1263785]},"properties":{"stars":"2.5","name":"New Shanghai Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1435262,36.1707639]},"properties":{"stars":"3","name":"Lanai Express","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1727113,36.1182265]},"properties":{"stars":"4","name":"Oyster Bar at Harrah's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.146372,36.124423]},"properties":{"stars":"2.5","name":"Chinoise","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1753788,36.09194095]},"properties":{"stars":"2","name":"Noodle Shop","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.24387,36.051627]},"properties":{"stars":"4","name":"Bamboo Bistro","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1957942,36.2393386]},"properties":{"stars":"3","name":"Sushi Zen","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1917,36.126437]},"properties":{"stars":"4","name":"Mr Tofu","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.230569,36.159674]},"properties":{"stars":"3","name":"Jimboy's Tacos","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.288456,36.290462]},"properties":{"stars":"1.5","name":"Bob's Big Boy","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.119046,36.06513]},"properties":{"stars":"3.5","name":"Heidi's Brooklyn Deli","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1711298,36.128561]},"properties":{"stars":"2.5","name":"Blondies Sports Bar & Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2787875,36.0420917]},"properties":{"stars":"3.5","name":"Tri-State Pizza","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1931095,36.15880562]},"properties":{"stars":"4","name":"M & M Soul Food Cafe","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.135927,36.1181399]},"properties":{"stars":"4","name":"Seafood City Supermarket","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.172435,36.1181689]},"properties":{"stars":"2","name":"Burger Palace","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2975745,36.0977777]},"properties":{"stars":"2.5","name":"Viva El Taco","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.156483,36.142229]},"properties":{"stars":"3.5","name":"House of Lords at Sahara Hotel and Casino","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.136389,36.17389145]},"properties":{"stars":"3","name":"All-American Bar & Grille","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1367014,36.1386816]},"properties":{"stars":"3","name":"Nanay Gloria's Filipino Fastfood and Asian Market","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1360221,36.1008067]},"properties":{"stars":"2","name":"Popeye's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.24534,36.071018]},"properties":{"stars":"3","name":"Rockin' Baja Lobster","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.138668,36.1001831]},"properties":{"stars":"3.5","name":"Pho Thanh Huong","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.172535,36.115656]},"properties":{"stars":"2.5","name":"Hamada of Japan","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.151261,36.108898]},"properties":{"stars":"3.5","name":"Joe's New York Pizza","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2978108,36.1434143]},"properties":{"stars":"4","name":"Panini Cafe","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2689319,36.2745551]},"properties":{"stars":"4","name":"HoneyBaked","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2951908,36.14521261]},"properties":{"stars":"3","name":"Pizza Hut","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2072529,36.1262904]},"properties":{"stars":"4","name":"Rice To Go","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1722727,36.0415696]},"properties":{"stars":"2.5","name":"Subway","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1260166,35.9986391]},"properties":{"stars":"3","name":"Jack In the Box","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2793808,36.0533669]},"properties":{"stars":"2","name":"Subway","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.27919,36.05545]},"properties":{"stars":"4","name":"Taco Bell","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1199725,36.01098932]},"properties":{"stars":"4","name":"Freed's Bakery","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.26095,36.14356]},"properties":{"stars":"4","name":"Taco Bell","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.138017,36.276898]},"properties":{"stars":"2.5","name":"Buffalo Wild Wings","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.146372,36.124423]},"properties":{"stars":"3","name":"Wendy's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.233322,36.24042]},"properties":{"stars":"4","name":"Taco Bell","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1422441,36.24000722]},"properties":{"stars":"3.5","name":"Buffalo Wild Wings","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2629554,36.1591549]},"properties":{"stars":"2.5","name":"McDonald's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.17305,36.118966]},"properties":{"stars":"4","name":"Sushi Roku","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.243934,36.04577]},"properties":{"stars":"4","name":"Fausto's Mexican Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.120791,36.240227]},"properties":{"stars":"1.5","name":"Sophia's Pizza & Subs","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2085247,36.1155262]},"properties":{"stars":"3.5","name":"Ricardo's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2435629,36.0509873]},"properties":{"stars":"4","name":"Village Pub & Poker","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.3065246,36.1910528]},"properties":{"stars":"3","name":"International House of Pancakes","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2881829,36.2906614]},"properties":{"stars":"4","name":"Shucks Tavern & Oyster Bar","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1160637,36.23938794]},"properties":{"stars":"4","name":"Del Taco","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.252325,36.1951421]},"properties":{"stars":"3","name":"Denny's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.0903923,36.07184399]},"properties":{"stars":"4","name":"The Olive Mediterranean Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.234077,36.241946]},"properties":{"stars":"3","name":"Sushi Bar Sage","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.3519,36.1373]},"properties":{"stars":"3","name":"Villa Pizza","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.172557,36.1156338]},"properties":{"stars":"2.5","name":"Burger King","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.067036,36.137371]},"properties":{"stars":"3.5","name":"PT's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2059561,36.1155194]},"properties":{"stars":"2","name":"Burger King","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1464136,36.1716777]},"properties":{"stars":"2.5","name":"McDonald's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2250365,36.1593762]},"properties":{"stars":"3","name":"Subway","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1341975,36.0128717]},"properties":{"stars":"1.5","name":"KFC","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1068951,36.0718982]},"properties":{"stars":"4","name":"Big Town Hero","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1720525,36.11011835]},"properties":{"stars":"4","name":"Strip House Steak House","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.11401,36.1002787]},"properties":{"stars":"1.5","name":"McDonald's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.334816,36.1551327]},"properties":{"stars":"3","name":"Rubio's Fresh Mexican Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.25117,36.263871]},"properties":{"stars":"3.5","name":"Lino's Pizza & Subs","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2611041,36.1135598]},"properties":{"stars":"3.5","name":"Mama Mia Pizza","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2084925,36.2468653]},"properties":{"stars":"4.5","name":"McDonald's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2784531,36.1309442]},"properties":{"stars":"4","name":"Sababa","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1322078,36.1926264]},"properties":{"stars":"3.5","name":"Uncle Angelo's Pizza Joint","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.170815,36.1274245]},"properties":{"stars":"3","name":"Taco Maker","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.105022,36.056199]},"properties":{"stars":"2.5","name":"Eat 'em Sandwiches","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1730081,36.1282071]},"properties":{"stars":"3.5","name":"Subway","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2056934,35.9976276]},"properties":{"stars":"3","name":"China A Go Go","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.211199,36.125587]},"properties":{"stars":"3.5","name":"Hue Thai","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.116608,36.029158]},"properties":{"stars":"3","name":"Ali Baba Cuisine","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.0969183,36.2157057]},"properties":{"stars":"3.5","name":"Taqueria El Tizon Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.279971,36.078642]},"properties":{"stars":"3","name":"Giuseppe's Bar & Grille","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.152126,36.042352]},"properties":{"stars":"2.5","name":"Taco Bell","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.117567,36.100669]},"properties":{"stars":"4","name":"Baskin Robbins","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.120338,36.09949]},"properties":{"stars":"4","name":"Subway","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1657957,36.1585615]},"properties":{"stars":"3.5","name":"Del Taco","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.079179,36.158547]},"properties":{"stars":"3.5","name":"Jack in the Box","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1957943,36.2393385]},"properties":{"stars":"3","name":"Lino's Pizzeria & Italian Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.0531031,36.1022582]},"properties":{"stars":"1.5","name":"Panda Express","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.190245,36.132914]},"properties":{"stars":"4","name":"Rigos Taco","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.154596,36.260539]},"properties":{"stars":"5","name":"Subway","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.222848,36.1439329]},"properties":{"stars":"4","name":"Del Taco","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1510466,36.02534349]},"properties":{"stars":"4","name":"Fireside Restaurant & Tavern","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1932516,36.1264581]},"properties":{"stars":"4.5","name":"World of Feng Shui","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1370841,36.1066864]},"properties":{"stars":"4.5","name":"Cugino's Italian Deli","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.279608,36.125528]},"properties":{"stars":"2","name":"McDonald's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1195456,36.1001032]},"properties":{"stars":"3","name":"Coco's Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.334816,36.1551327]},"properties":{"stars":"2.5","name":"Panda Express","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.137138,36.010778]},"properties":{"stars":"2","name":"Subway","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.18022,36.26228]},"properties":{"stars":"4","name":"Taco Bell","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.3048029,36.1004312]},"properties":{"stars":"4.5","name":"Mama Luigi's Pizzeria","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.211199,36.125587]},"properties":{"stars":"4","name":"Champion Gourmet","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.149172,36.05753]},"properties":{"stars":"3","name":"Subway","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2660053,36.1442303]},"properties":{"stars":"2","name":"Subway","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2366394,36.1590182]},"properties":{"stars":"4.5","name":"Man Na","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.172455,36.0243843]},"properties":{"stars":"3","name":"Asian Express","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1531337,36.114686]},"properties":{"stars":"4","name":"Morton's The Steakhouse","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1841941,36.1004847]},"properties":{"stars":"2.5","name":"Jack in the Box","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2785401,36.0423566]},"properties":{"stars":"3","name":"Bomas Bar & Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2068887,36.2624136]},"properties":{"stars":"3","name":"China A Go Go","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2234519,36.1256634]},"properties":{"stars":"3.5","name":"The Maple Tree","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.168455,36.103191]},"properties":{"stars":"3.5","name":"Asian Fresh","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.118237,36.1454189]},"properties":{"stars":"3","name":"La Sirena","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1542695,36.1186973]},"properties":{"stars":"3.5","name":"Jersey Mike's Subs","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1737761,36.0909158]},"properties":{"stars":"3.5","name":"Charlie Palmer Steak","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.117762,36.0418189]},"properties":{"stars":"2.5","name":"McDonald's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.209037,36.114845]},"properties":{"stars":"2.5","name":"McDonald's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1798569,36.2633616]},"properties":{"stars":"4.5","name":"Panda Express","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.236636,36.114921]},"properties":{"stars":"4","name":"Shish Kabob House","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1219087,36.0207221]},"properties":{"stars":"3.5","name":"Burger King","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.059007,36.172085]},"properties":{"stars":"4","name":"Wing Stop","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.24387,36.051627]},"properties":{"stars":"2","name":"Pho Hoang","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1523787,36.041297]},"properties":{"stars":"2.5","name":"Pizza Hut","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2048129,36.1586703]},"properties":{"stars":"2.5","name":"Long John Silver's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.29728,36.10006]},"properties":{"stars":"3.5","name":"Taco Bell","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1626825,36.1372759]},"properties":{"stars":"2","name":"Mexitalia X-Press","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.121305,36.0420645]},"properties":{"stars":"2.5","name":"Long John Silver's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.3077927,36.1137055]},"properties":{"stars":"3.5","name":"Chuck E Cheese's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1187783,36.1452214]},"properties":{"stars":"4","name":"Las Americas","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2070452,35.99890185]},"properties":{"stars":"1.5","name":"McDonald's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.046868,36.1580579]},"properties":{"stars":"3","name":"Angelina's Pizzeria","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1723524,36.0532414]},"properties":{"stars":"3","name":"Chili's Grill & Bar","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.180591,36.238856]},"properties":{"stars":"2.5","name":"El Pollo Loco","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2042446,36.15859989]},"properties":{"stars":"4","name":"Raising Cane's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1534046,36.1503339]},"properties":{"stars":"3.5","name":"Tacos Mexico","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.0795963,36.1738738]},"properties":{"stars":"4.5","name":"Panda Express","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1557538,36.1652351]},"properties":{"stars":"2","name":"Great Steak & Potato","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.222461,36.125859]},"properties":{"stars":"1.5","name":"Kfc","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2098642,36.1002283]},"properties":{"stars":"3.5","name":"Qdoba Mexican Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2971243,36.111488]},"properties":{"stars":"4","name":"Popeyes Chicken And Biscuits","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1728181,36.1615258]},"properties":{"stars":"3","name":"Roberto's Taco Shop","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.295247,36.114425]},"properties":{"stars":"4","name":"Egg Works","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.136447,36.101639]},"properties":{"stars":"2.5","name":"Jack In the Box","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.3073046,36.1135548]},"properties":{"stars":"3","name":"Samurai Sam's Teriyaki Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.128906,36.057248]},"properties":{"stars":"3.5","name":"Cafe Modena","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.3053069,36.1135909]},"properties":{"stars":"2.5","name":"Boston's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1963604,36.1253986]},"properties":{"stars":"3","name":"Mother's Korean Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.20662,36.263093]},"properties":{"stars":"3.5","name":"Bilbo's Bar & Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2768107,36.2190148]},"properties":{"stars":"3.5","name":"Steiner's - A Nevada Style Pub","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1727646,36.1039997]},"properties":{"stars":"3","name":"Denny's Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.182275,36.238873]},"properties":{"stars":"3.5","name":"Tony's Mexican Food 2","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.062519,36.195433]},"properties":{"stars":"2","name":"Subway","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.27891,36.21878]},"properties":{"stars":"3","name":"Taco Bell","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2969914,36.1015732]},"properties":{"stars":"2.5","name":"Arby's Roast Beef Sandwich Restaurants","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1360221,36.1008067]},"properties":{"stars":"2","name":"Popeye's Chicken & Biscuits","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1696112,36.1214517]},"properties":{"stars":"4","name":"Very Venice","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.171561,36.053588]},"properties":{"stars":"3.5","name":"IHOP","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.137808,36.011597]},"properties":{"stars":"2.5","name":"China Joy","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1751,36.2224]},"properties":{"stars":"4","name":"Panda Express","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.241843,36.217716]},"properties":{"stars":"3","name":"Burger King","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.171712,36.0152797]},"properties":{"stars":"4.5","name":"Capriotti's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.103766,36.130228]},"properties":{"stars":"4.5","name":"Thai Food To Go","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1743889,36.12033871]},"properties":{"stars":"3","name":"California Pizza Kitchen","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.26569,36.264255]},"properties":{"stars":"2","name":"Villa Pizza","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2857741,36.1584817]},"properties":{"stars":"4","name":"Bleu Gourmet","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2972153,36.0979526]},"properties":{"stars":"4","name":"Redstone Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.162926,36.135911]},"properties":{"stars":"2","name":"Subway","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.291162,36.175797]},"properties":{"stars":"3","name":"Shizen Japanese Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1721706,36.0151319]},"properties":{"stars":"2.5","name":"K's Bbq","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2760775,36.1439269]},"properties":{"stars":"3","name":"Seattle Dan's Pizza Pasta & Grinders","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1671754,36.239132]},"properties":{"stars":"3","name":"Straight From Philly Stakeout","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.171547,36.055728]},"properties":{"stars":"4","name":"Outback Steakhouse","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.19734,36.116176]},"properties":{"stars":"3.5","name":"Sonic Drive-In","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2986223,36.0770695]},"properties":{"stars":"3.5","name":"Khoury's Mediterranean Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.139396,36.181417]},"properties":{"stars":"4","name":"La Piazza","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.171897,36.090535]},"properties":{"stars":"2.5","name":"McDonald's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.153972,36.147909]},"properties":{"stars":"3.5","name":"Carl's Jr","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1104584,36.15923691]},"properties":{"stars":"3","name":"El Diamante Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.144266,36.1706341]},"properties":{"stars":"3.5","name":"Grotto Ristorante","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.0647517,36.2402412]},"properties":{"stars":"3.5","name":"China Kitchen","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1236952,36.1697096]},"properties":{"stars":"3","name":"Cypress Street Marketplace","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.07009,36.115253]},"properties":{"stars":"3","name":"Wendy's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.10091,36.08636]},"properties":{"stars":"2.5","name":"Taco Bell","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.162336,36.070665]},"properties":{"stars":"4","name":"Panevino Deli","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.0998114,36.114659]},"properties":{"stars":"3.5","name":"Village Pub Bar & Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2249939,36.1272235]},"properties":{"stars":"3.5","name":"Kan's Kitchen","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.075618,36.1230335]},"properties":{"stars":"3","name":"Arizona Charlie's Boulder Casino","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1386502,36.1008602]},"properties":{"stars":"2.5","name":"Top This Pizza","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2660053,36.1442303]},"properties":{"stars":"3","name":"Dennys","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1707331,36.1111846]},"properties":{"stars":"3.5","name":"Lucky Cheng's Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.112467,36.11543]},"properties":{"stars":"3.5","name":"Royal Persis","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.062232,36.156485]},"properties":{"stars":"3.5","name":"Baja Fresh Mexican Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.10451,36.0999633]},"properties":{"stars":"1.5","name":"KFC","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.0803587,36.1590036]},"properties":{"stars":"2.5","name":"McDonald's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.171626,36.12809]},"properties":{"stars":"2.5","name":"KFC","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.169617,36.121428]},"properties":{"stars":"2","name":"Wasabi Jane's Venetiaen","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1370594,36.14303557]},"properties":{"stars":"4","name":"Ito'y Sariling Atin","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.138595,36.169089]},"properties":{"stars":"4.5","name":"Roberta's Steakhouse","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2627104,36.2184533]},"properties":{"stars":"3","name":"Aurelio's Pizza","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1747367,36.143305]},"properties":{"stars":"2.5","name":"Subway","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.33322,36.1612679]},"properties":{"stars":"4","name":"Rocco's NY Pizzeria","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2977975,36.0995338]},"properties":{"stars":"3","name":"McDonald's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.0640667,36.1458209]},"properties":{"stars":"3.5","name":"La Costa Del Sol","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.06613,36.113372]},"properties":{"stars":"3.5","name":"Arby's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.219839,36.1260199]},"properties":{"stars":"3","name":"Tipps Thai Buffet & Live Cooking Station","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.0835713,36.0550762]},"properties":{"stars":"3","name":"The Ka","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.224075,36.100462]},"properties":{"stars":"2.5","name":"McDonald's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1722598,36.0411361]},"properties":{"stars":"4","name":"Steiner's A Nevada Style Pub","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1372406,36.1068493]},"properties":{"stars":"3","name":"N & N Oriental","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1366006,36.1411656]},"properties":{"stars":"3","name":"Thai Original BBQ","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2345767,36.1963267]},"properties":{"stars":"4.5","name":"Marcos","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.0778986,36.159079]},"properties":{"stars":"4","name":"Aloha Kitchen","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.172973,36.118195]},"properties":{"stars":"4","name":"Joe's Seafood Prime Steak & Stone Crab","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1886166,36.0749889]},"properties":{"stars":"4","name":"DiVine Events","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1805607,36.2630128]},"properties":{"stars":"3","name":"Pizza Hut","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.21211,36.159596]},"properties":{"stars":"2.5","name":"Burger King","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.261216,36.2799556]},"properties":{"stars":"3","name":"Little Dumpling","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.177814,36.0930659]},"properties":{"stars":"4","name":"MIX","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.244204,36.155701]},"properties":{"stars":"3","name":"Memphis Championship Barbecue","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.061579,36.173591]},"properties":{"stars":"1.5","name":"Long John Silver's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1189623,36.0123098]},"properties":{"stars":"3","name":"Chicago Tasty Dogs","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2498459,36.2404081]},"properties":{"stars":"2.5","name":"Subway","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.263591,36.158669]},"properties":{"stars":"4","name":"Yassou","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.10086,36.1585279]},"properties":{"stars":"2","name":"Palm Pizza","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1566808,36.2392218]},"properties":{"stars":"2.5","name":"China Star","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.3128559,36.1002484]},"properties":{"stars":"4","name":"Smith's Food & Drug Centers","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.146372,36.124423]},"properties":{"stars":"3","name":"La Salsa","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2787734,36.2200472]},"properties":{"stars":"3","name":"Jack In the Box","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1190814,36.1417868]},"properties":{"stars":"1.5","name":"Panda Express","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2878431,36.2831507]},"properties":{"stars":"3","name":"Mimi's Cafe","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2079863,36.0944424]},"properties":{"stars":"3.5","name":"Sushi Hana","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1337254,36.0128618]},"properties":{"stars":"3","name":"PT's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1370375,36.1427162]},"properties":{"stars":"3","name":"L & L Hawaiian Barbecue","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.065915,36.240154]},"properties":{"stars":"3","name":"Roberto's Taco Shop","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2069397,36.1262871]},"properties":{"stars":"3.5","name":"Carl's Jr Restaurants","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.185156,36.100267]},"properties":{"stars":"3","name":"Wendy's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1721231,36.0563143]},"properties":{"stars":"3.5","name":"Chipotle Mexican Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2691789,36.273996]},"properties":{"stars":"3","name":"Montana Meat Company","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2087881,36.0764558]},"properties":{"stars":"3.5","name":"PT's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.205633,36.032924]},"properties":{"stars":"3.5","name":"Home Plate Grill & Bar","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.3098303,36.18336]},"properties":{"stars":"4","name":"Capriotti's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.0919762,36.1006486]},"properties":{"stars":"2.5","name":"Jack In The Box","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2600699,36.1907268]},"properties":{"stars":"3","name":"Pho Rose","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1369914,36.101988]},"properties":{"stars":"2.5","name":"McDonald's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.240597,36.1961359]},"properties":{"stars":"2","name":"McDonald's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2430886,36.1274162]},"properties":{"stars":"2.5","name":"Pendas Buffet","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1161388,36.24024897]},"properties":{"stars":"2","name":"Subway","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.26202,36.270668]},"properties":{"stars":"1.5","name":"Kfc","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2493968,36.2400356]},"properties":{"stars":"4","name":"Sushiko","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.3075865,36.1145538]},"properties":{"stars":"4","name":"Sushi Tower & Steakhouse","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2442755,36.173234]},"properties":{"stars":"4.5","name":"Serrano's Mexican Fast Food","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2221687,36.1147312]},"properties":{"stars":"3","name":"Cafe Derbi","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2875754,36.2813088]},"properties":{"stars":"4","name":"Zabas Mexican Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2875754,36.2813088]},"properties":{"stars":"3","name":"Panda Express","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1510031,36.1046561]},"properties":{"stars":"3.5","name":"Cottage Cafe","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2224603,36.1253949]},"properties":{"stars":"3","name":"McDonald's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.197904,36.125908]},"properties":{"stars":"3.5","name":"Zizzy","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2083873,36.116766]},"properties":{"stars":"3.5","name":"Sammy's L.A. Pastrami & Burgers","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.319453,36.159506]},"properties":{"stars":"2.5","name":"Pizza Hut","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.0619087,36.1656093]},"properties":{"stars":"3","name":"Del Taco","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1177785,36.0095858]},"properties":{"stars":"4","name":"Zabas Mexican Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2063989,35.9980464]},"properties":{"stars":"3","name":"Pizza Hut","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.3077927,36.1137055]},"properties":{"stars":"4","name":"Frank & Fina's Cocina","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.278503,36.05657]},"properties":{"stars":"3.5","name":"Grand China","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.0680905,36.1153566]},"properties":{"stars":"3","name":"Pizza Hut","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1723154,36.10315363]},"properties":{"stars":"2.5","name":"Wendys","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.135068,36.11543]},"properties":{"stars":"2.5","name":"China Joe's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1820052,36.11881893]},"properties":{"stars":"4","name":"Subway","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2969,36.1445]},"properties":{"stars":"3","name":"Taco Bell","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1010831,36.0726923]},"properties":{"stars":"3.5","name":"Roberto's Taco Shop","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2971006,36.09473]},"properties":{"stars":"2.5","name":"Del Taco","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.137502,36.143676]},"properties":{"stars":"3","name":"McDonald's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2423654,36.2166019]},"properties":{"stars":"4","name":"Roberto's Taco Shop","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1616563,36.2376807]},"properties":{"stars":"3.5","name":"Surf City Bar & Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1529193,36.1371122]},"properties":{"stars":"4","name":"Quark's Bar & Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.117193,36.101984]},"properties":{"stars":"4","name":"Las Pupusas","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1629623,36.2388918]},"properties":{"stars":"4","name":"Roberto's Taco Shop","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.064099,36.143945]},"properties":{"stars":"4","name":"Marcos Pizza","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.034501,36.196418]},"properties":{"stars":"3.5","name":"Timbers - Lake Mead","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.0657015,36.1394481]},"properties":{"stars":"3","name":"L & L Hawaiian Barbecue","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.17352,36.103087]},"properties":{"stars":"4","name":"Nine Fine Irishmen","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2424474,36.2156654]},"properties":{"stars":"3","name":"Port of Subs","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.244096,36.049805]},"properties":{"stars":"3.5","name":"Baidu China Bistro","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1944708,36.1260132]},"properties":{"stars":"4","name":"Veggie Delight","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1560628,36.260788]},"properties":{"stars":"2.5","name":"Papa John's Pizza","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.278276,36.220954]},"properties":{"stars":"2","name":"Long John Silver's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.156051,36.260078]},"properties":{"stars":"3","name":"Little Caesars","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.119129,36.02624]},"properties":{"stars":"4","name":"The Original Sunrise Cafe","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.158149,36.057578]},"properties":{"stars":"4","name":"PT's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1361714,36.0299619]},"properties":{"stars":"3.5","name":"Subway","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.279752,36.0565844]},"properties":{"stars":"3","name":"Sonic Drive-In","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2398144,36.2476764]},"properties":{"stars":"4","name":"Charcoal Room","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1930038,36.1593806]},"properties":{"stars":"4","name":"Sonio's Cafe","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2001599,36.1448294]},"properties":{"stars":"1.5","name":"Wendy's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2497943,36.238374]},"properties":{"stars":"3","name":"Denny's Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2027929,36.1589929]},"properties":{"stars":"3","name":"Applebee's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1696112,36.1214517]},"properties":{"stars":"3","name":"Panda Express","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.137303,36.100596]},"properties":{"stars":"3.5","name":"Del Taco","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.156051,36.260078]},"properties":{"stars":"3.5","name":"New China Cuisine","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2056934,35.9976276]},"properties":{"stars":"3","name":"Subway","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.0619031,36.1729533]},"properties":{"stars":"4.5","name":"Esmeralda Cafe #3","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2981448,36.10099814]},"properties":{"stars":"3","name":"Capriotti's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.24364,36.071844]},"properties":{"stars":"4","name":"Lotus Garden Cuisine","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2811289,36.2012022]},"properties":{"stars":"4.5","name":"Aloha Island Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2682348,36.274001]},"properties":{"stars":"3.5","name":"Del Taco","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1626763,36.1583043]},"properties":{"stars":"2.5","name":"McDonald's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1403267,36.1689727]},"properties":{"stars":"4","name":"Kabob Korner","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.295732,36.098828]},"properties":{"stars":"3.5","name":"Baja Fresh Mexican Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1538976,36.0423177]},"properties":{"stars":"3","name":"Express Pizza","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.3092829,36.1152259]},"properties":{"stars":"4.5","name":"Port of Subs","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1531544,36.0133944]},"properties":{"stars":"3","name":"El Pollo Loco","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2158358,36.2210061]},"properties":{"stars":"4","name":"Sonic Drive-In","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2531,36.2745727]},"properties":{"stars":"4.5","name":"Capriotti's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.119197,36.025359]},"properties":{"stars":"5","name":"Bonjour Bistro","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.080973,36.156056]},"properties":{"stars":"3.5","name":"Taco Bell","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2973192,36.0952252]},"properties":{"stars":"3.5","name":"Subway","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.159705,36.135258]},"properties":{"stars":"3.5","name":"Lasalsa Fresh Mexican Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1907265,36.1457714]},"properties":{"stars":"1.5","name":"Domino's Pizza","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.0732153,36.1007785]},"properties":{"stars":"4","name":"Carl's Jr","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1014718,36.0794113]},"properties":{"stars":"2.5","name":"Subway","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2983219,36.1013118]},"properties":{"stars":"4","name":"Yogi's Teriyaki","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2098642,36.1002283]},"properties":{"stars":"4","name":"Wing Stop","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2975745,36.0977777]},"properties":{"stars":"3","name":"China Ginger","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1729495,36.1153931]},"properties":{"stars":"3.5","name":"Empress Court","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1416367,36.1694541]},"properties":{"stars":"3","name":"Hennessey's Tavern","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.3314012,36.1612]},"properties":{"stars":"3.5","name":"Pei Wei Asian Diner","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.314314,36.112082]},"properties":{"stars":"3.5","name":"Buffalo Wild Wings","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1190427,36.0343589]},"properties":{"stars":"4","name":"Village Pub and Poker","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1711298,36.128561]},"properties":{"stars":"3","name":"Hyakumi Japanese Restaurant & Sushi Bar","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1994106,36.1264742]},"properties":{"stars":"3.5","name":"PT's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.3064409,36.1142829]},"properties":{"stars":"3","name":"Joe's Crab Shack","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.186092,36.238919]},"properties":{"stars":"4","name":"Vincenzo's Ny Pizzeria","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2414251,36.1268545]},"properties":{"stars":"1.5","name":"Layalina Mediterranean Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1374509,36.1228475]},"properties":{"stars":"2","name":"Burger King","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1164009,36.1584482]},"properties":{"stars":"4","name":"Pepe's Tacos","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.154017,36.12784]},"properties":{"stars":"4","name":"ENVY The Steakhouse","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.0917806,36.02217255]},"properties":{"stars":"3.5","name":"Sushi + Sake","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.168361,36.127032]},"properties":{"stars":"3.5","name":"Great Wraps","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1823137,36.1407035]},"properties":{"stars":"3.5","name":"Enoteca San Marco","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2915112,36.1602235]},"properties":{"stars":"3.5","name":"Nora's Wine Bar and Osteria","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1823137,36.1407035]},"properties":{"stars":"4","name":"David Burke","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.170815,36.1274245]},"properties":{"stars":"3.5","name":"Crazy Crepes","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2499187,36.240299]},"properties":{"stars":"3.5","name":"Buzz BBQ","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1730752,36.1231538]},"properties":{"stars":"2.5","name":"Pho Vietnamese Cuisine","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2424433,36.2029728]},"properties":{"stars":"2.5","name":"Buckingham Smokehouse Bar-B-Q","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.28134,36.167]},"properties":{"stars":"3","name":"The Carmel Room","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2947189,36.1682555]},"properties":{"stars":"3","name":"Coasta Cantina","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2659777,36.1683449]},"properties":{"stars":"3.5","name":"Oyster Bar","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1519108,36.10846152]},"properties":{"stars":"3.5","name":"Kaizen Fusion Roll and Sushi","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.175441,36.099351]},"properties":{"stars":"4","name":"Tournament of Kings","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.206306,36.12659258]},"properties":{"stars":"4","name":"Hot N Juicy Crawfish","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.243698,36.073115]},"properties":{"stars":"4","name":"Archi's Thai Bistro","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.3146241,36.12888973]},"properties":{"stars":"3.5","name":"Rachel's Kitchen","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1735983,36.1015871]},"properties":{"stars":"4","name":"Greenberg's Deli","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.208703,36.128606]},"properties":{"stars":"4.5","name":"British Foods","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2195103,36.1257243]},"properties":{"stars":"4","name":"Dakao Sandwiches","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1747074,36.0113116]},"properties":{"stars":"4","name":"Big Sur Oyster Bar","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1823137,36.1407035]},"properties":{"stars":"3.5","name":"Zeffirino","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.136389,36.175]},"properties":{"stars":"2.5","name":"Island Flavors Cafe","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1715273,36.0596893]},"properties":{"stars":"2.5","name":"Tahiti Joe's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1741359,36.12116379]},"properties":{"stars":"3.5","name":"Fin","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.250331,36.219859]},"properties":{"stars":"3.5","name":"Narita Sushi Bar","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.146372,36.124423]},"properties":{"stars":"3","name":"Riva by Wolfgang Puck","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.172532,36.118221]},"properties":{"stars":"2.5","name":"Betty's Diner Cyber Cafe","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.146372,36.124423]},"properties":{"stars":"4.5","name":"Cabana","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.243522,36.07097]},"properties":{"stars":"3.5","name":"3 Tomatoes and A Mozzarella","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1637269,36.0564161]},"properties":{"stars":"3.5","name":"Winchell's Pub & Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1192992,36.0131849]},"properties":{"stars":"3.5","name":"Yummy Grill & Sushi","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1371384,36.01077652]},"properties":{"stars":"3.5","name":"Teriyaki Madness","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.169667,36.11949]},"properties":{"stars":"2.5","name":"Ming's Table","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.260485,36.1759103]},"properties":{"stars":"4","name":"The Bagel Cafe","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1020752,36.1155385]},"properties":{"stars":"4","name":"Zaba's Mexican Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2430089,36.0816179]},"properties":{"stars":"4","name":"Aroma Garden Cafe","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2460137,36.1256791]},"properties":{"stars":"3.5","name":"Krispy Kreme Doughnuts","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.172619,36.103789]},"properties":{"stars":"3","name":"Ocean One Bar and Grille","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.138026,36.089494]},"properties":{"stars":"2","name":"j-pop Lounge","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2253636,36.0484289]},"properties":{"stars":"3.5","name":"Beach Cafe","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2640956,36.1972317]},"properties":{"stars":"3.5","name":"Buca di Beppo","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.150967,36.085176]},"properties":{"stars":"2","name":"Jose Cuervo Tequileria","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.173336,36.119556]},"properties":{"stars":"3","name":"808","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1659163,36.1275008]},"properties":{"stars":"3.5","name":"Wing Lei","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1923641,36.1264829]},"properties":{"stars":"3.5","name":"Little Macau","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.136389,36.175]},"properties":{"stars":"4.5","name":"Antonio's Italian Ristorante","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1459885,36.12484206]},"properties":{"stars":"3.5","name":"Jollibee","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1785503,36.1801087]},"properties":{"stars":"4","name":"Molcasalsa Mexican Food","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2326905,36.15956392]},"properties":{"stars":"4","name":"Capriotti's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.186375,36.043512]},"properties":{"stars":"3","name":"Taco Time","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1724485,36.1050296]},"properties":{"stars":"3.5","name":"Ginseng Korean BBQ II","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1158845,36.02929536]},"properties":{"stars":"4","name":"Jun's House Korean Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2622884,36.1432226]},"properties":{"stars":"3","name":"CJ's Texas Barbeque","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1682151,36.1275874]},"properties":{"stars":"4","name":"Stripburger","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.119349,36.015956]},"properties":{"stars":"4","name":"Firehouse Subs","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1230086,36.16555216]},"properties":{"stars":"4","name":"Redwood Bar and Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2979714,36.1231514]},"properties":{"stars":"3.5","name":"Basil 'n Lime","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2864495,36.1595644]},"properties":{"stars":"3","name":"Applebee's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2481079,36.19551468]},"properties":{"stars":"3.5","name":"Chipotle","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.170283,36.112648]},"properties":{"stars":"3.5","name":"BURGER BRASSERIE","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1724261,36.1011972]},"properties":{"stars":"2.5","name":"McDonald's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1723599,36.1160369]},"properties":{"stars":"2.5","name":"Tropical Breeze Cafe","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.172501,36.1100668]},"properties":{"stars":"3","name":"Planet Dailies","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.291282,36.168849]},"properties":{"stars":"4.5","name":"Primo's Steakhouse","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1751,36.2224]},"properties":{"stars":"4","name":"Austins Steakhouse","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.194894,36.126402]},"properties":{"stars":"3","name":"Kapit Bahay","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1470586,36.12996911]},"properties":{"stars":"3","name":"The Steakhouse at Camelot","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.182324,36.112044]},"properties":{"stars":"3.5","name":"Tommy Rocker's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.279582,36.128563]},"properties":{"stars":"3","name":"Durango Lodge","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.136389,36.175]},"properties":{"stars":"3","name":"Cafe Ba-Ba-Reeba","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.171459,36.127308]},"properties":{"stars":"2.5","name":"Nathan's Famous","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2484239,36.1958835]},"properties":{"stars":"4","name":"Panera Bread","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.173015,36.128269]},"properties":{"stars":"3.5","name":"NM Cafe","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.333833,36.15735]},"properties":{"stars":"4","name":"Hachi","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.136389,36.175]},"properties":{"stars":"2","name":"Chili's Too","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.136389,36.175]},"properties":{"stars":"2.5","name":"Gordon Biersch","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.186442,36.118699]},"properties":{"stars":"2.5","name":"Hamada of Japan","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2001047,36.10189101]},"properties":{"stars":"3","name":"Courtyard Cafe","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.0526182,36.10074129]},"properties":{"stars":"4","name":"Sushi Twister","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.143347,36.171127]},"properties":{"stars":"3","name":"Paradise Buffet & Cafe Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1684081,36.1135342]},"properties":{"stars":"2.5","name":"Sidewalk Cafe","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1516104,36.1345821]},"properties":{"stars":"3","name":"888 Noodle Bar","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.114902,36.151796]},"properties":{"stars":"2","name":"Courtyard Buffet","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1134551,36.0996154]},"properties":{"stars":"4","name":"Las Famosas de Jose","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.241332,36.055414]},"properties":{"stars":"3.5","name":"BBQ Shak","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.136389,36.175]},"properties":{"stars":"3","name":"Al Dente","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.168455,36.103191]},"properties":{"stars":"2.5","name":"Nathan's Famous","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2103065,36.238878]},"properties":{"stars":"3.5","name":"Aloha Hawaiian BBQ","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.211199,36.125587]},"properties":{"stars":"3.5","name":"Penang Malaysian Cuisine","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.064099,36.143945]},"properties":{"stars":"4","name":"Taqueria Santander","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.138595,36.169089]},"properties":{"stars":"3","name":"Kitty's Cafe","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.243649,36.071857]},"properties":{"stars":"4","name":"The Cracked Egg","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.3146327,36.10060967]},"properties":{"stars":"4","name":"Great Harvest Bread Company","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.144061,36.171235]},"properties":{"stars":"4","name":"Binion's Ranch Steak House","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1723638,36.1031723]},"properties":{"stars":"3","name":"Panda Express","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1693962,36.1033743]},"properties":{"stars":"3.5","name":"Pearl","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2877293,36.2903141]},"properties":{"stars":"4","name":"Market Grille Cafe","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1944248,36.1258871]},"properties":{"stars":"4","name":"Thai Style Noodle House","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1766143,36.09535564]},"properties":{"stars":"3.5","name":"Tender","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1593311,36.1629138]},"properties":{"stars":"3","name":"Dairy Queen / Orange Julius Treat Center","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.146372,36.124423]},"properties":{"stars":"3","name":"Trader Vic's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1565929,36.14573502]},"properties":{"stars":"2","name":"IHOP","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1182839,36.017627]},"properties":{"stars":"2","name":"Sweet Water Prime Seafood","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2622033,36.1968609]},"properties":{"stars":"3.5","name":"Jasmine Thai Gourmet","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.213272,36.1265592]},"properties":{"stars":"2.5","name":"Pho Hung Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2792265,36.052079]},"properties":{"stars":"3","name":"China A GoGo","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1764154,36.09256306]},"properties":{"stars":"3.5","name":"Aureole","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.175557,36.098909]},"properties":{"stars":"3","name":"Dick's Last Resort","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1733685,36.10442219]},"properties":{"stars":"3","name":"Diablo's Cantina","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2192076,36.1265452]},"properties":{"stars":"4","name":"J & J Szechuan Cuisine","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1711298,36.128561]},"properties":{"stars":"3","name":"Teru Sushi","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1557732,36.14813295]},"properties":{"stars":"4","name":"Fellini's Ristorante","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1725888,36.10920769]},"properties":{"stars":"4.5","name":"Earl of Sandwich","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2803993,36.1139221]},"properties":{"stars":"3.5","name":"Brian's Beach Sushi","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1357269,36.1182191]},"properties":{"stars":"3","name":"Chow King","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.135927,36.1181399]},"properties":{"stars":"4","name":"Valerio's Tropical Bake Shop","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1732183,36.11783958]},"properties":{"stars":"3.5","name":"Trevi","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1106001,36.1960298]},"properties":{"stars":"4","name":"Taqueria el Palenque","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.152093,36.1088013]},"properties":{"stars":"2.5","name":"SanToki Korean BBQ & Shabu Bar","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.172535,36.11829]},"properties":{"stars":"2","name":"Imperial Hawaiian Luau","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1507033,36.02117841]},"properties":{"stars":"2.5","name":"Almaza Hookah Cafe","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.160679,36.1161559]},"properties":{"stars":"3","name":"The Restaurant at Platinum","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.189863,36.1265155]},"properties":{"stars":"2.5","name":"Pho Little Saigon","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1732166,36.1041893]},"properties":{"stars":"4","name":"Rubio's Fresh Mexican Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.12081,36.0410492]},"properties":{"stars":"4","name":"Go Raw Cafe","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.136795,36.0987077]},"properties":{"stars":"3","name":"Sai India Curry","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2795189,36.0219691]},"properties":{"stars":"3.5","name":"Montana Meat Company","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1769688,36.09496641]},"properties":{"stars":"3.5","name":"Backstage Deli","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.20272,36.10089]},"properties":{"stars":"3.5","name":"Big Al's Oyster Bar","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2793808,36.0533669]},"properties":{"stars":"4","name":"T-Bar Sushi","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2827383,36.0555607]},"properties":{"stars":"3.5","name":"Sumo Sushi 2","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1184733,36.0151363]},"properties":{"stars":"3","name":"Makino","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.331852,36.159976]},"properties":{"stars":"3","name":"Olive Garden Italian Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1929753,36.1247684]},"properties":{"stars":"4","name":"Yunnan Garden","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.136389,36.175]},"properties":{"stars":"4","name":"Greek American Grille","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2512854,36.1433538]},"properties":{"stars":"4.5","name":"Heidi's Brooklyn Deli","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.19581,36.114375]},"properties":{"stars":"2.5","name":"Nathan's Famous","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2892847,36.1646182]},"properties":{"stars":"3.5","name":"Gordon Biersch Brewery Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1688167,36.11001863]},"properties":{"stars":"3.5","name":"Fresh Grill & Bar","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1530086,36.0130882]},"properties":{"stars":"4","name":"Yum Yum BBQ","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.054666,36.2350009]},"properties":{"stars":"3.5","name":"Popeye's Famous Fried Chicken and Biscuits","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.067143,36.240065]},"properties":{"stars":"4","name":"Harry's Dora Maria Family Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2440417,36.05103716]},"properties":{"stars":"3.5","name":"Roberto's Taco Shop","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.17154,36.0512]},"properties":{"stars":"3","name":"Samurai Sam's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1725201,36.1100794]},"properties":{"stars":"3.5","name":"Koi","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.211199,36.125587]},"properties":{"stars":"3.5","name":"Bazic Bar & Restoyaky","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.119135,36.087212]},"properties":{"stars":"3","name":"Sofias Pizza","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1808133,36.2612478]},"properties":{"stars":"4","name":"Jersey Mike's Subs","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1776615,36.0686142]},"properties":{"stars":"2.5","name":"Louis's Fish Camp","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2797333,36.1191125]},"properties":{"stars":"4","name":"Amore Taste of Chicago","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1671331,36.1069705]},"properties":{"stars":"3.5","name":"Delights","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1376378,36.08170954]},"properties":{"stars":"2.5","name":"Ruby's Diner","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2105683,36.1261521]},"properties":{"stars":"3.5","name":"Ay-Chung Noodle","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1261,36.2119]},"properties":{"stars":"2","name":"The Cannery Row Buffet","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1750136,36.11724286]},"properties":{"stars":"4","name":"Payard <U+0081>P<U+00E2>tisserie & Bistro","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.152417,36.144096]},"properties":{"stars":"4","name":"Pamplemousse Le Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.3055866,36.1929381]},"properties":{"stars":"4","name":"Upper Crust Pizza","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.3320249,36.1591171]},"properties":{"stars":"3.5","name":"Islands Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.21134,36.11274]},"properties":{"stars":"4","name":"The Orleans Oyster Bar","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.171991,36.124829]},"properties":{"stars":"2.5","name":"The Buffet at Treasure Island","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.136389,36.175]},"properties":{"stars":"2.5","name":"Lily's Persian & Mediterranean Cuisine","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.155171,36.1444613]},"properties":{"stars":"3.5","name":"Thai Pepper","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.145874,36.160555]},"properties":{"stars":"4.5","name":"Potato Valley Cafe","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.244158,36.047306]},"properties":{"stars":"3.5","name":"Oyshi Sushi","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1481494,36.1148145]},"properties":{"stars":"3","name":"Verona Pizza","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.155365,36.147371]},"properties":{"stars":"3.5","name":"El Nopal","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.279599,36.0843559]},"properties":{"stars":"4","name":"Jr's Place","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.161211,36.161409]},"properties":{"stars":"4.5","name":"H&H BBQ","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1809762,36.1143876]},"properties":{"stars":"3","name":"Buzios Seafood Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.138026,36.089494]},"properties":{"stars":"2","name":"Home Turf","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.3509522,36.1592907]},"properties":{"stars":"2.5","name":"Mark Rich's New York Pizza & Pasta","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.334816,36.1551327]},"properties":{"stars":"4","name":"Capriotti's Sandwich Shop","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.175816,36.011877]},"properties":{"stars":"3.5","name":"Don Vito's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1465866,36.12459632]},"properties":{"stars":"3","name":"Dan Marino's Fine Food & Spirits","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.217721,36.1590151]},"properties":{"stars":"3.5","name":"Fellini's Ristorante Italiano","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1735733,36.10266711]},"properties":{"stars":"3.5","name":"Fulton Fish Market","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1192951,36.0161814]},"properties":{"stars":"4","name":"Cafe Rio","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.278537,36.057858]},"properties":{"stars":"4","name":"Putter's Bar & Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.255162,36.066304]},"properties":{"stars":"4","name":"BJ's Cocktail Lounge West","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.3075865,36.1145538]},"properties":{"stars":"3","name":"Adam's Ribs","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1772583,36.09454564]},"properties":{"stars":"2","name":"More Buffet at Luxor","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.171677,36.05446]},"properties":{"stars":"3","name":"Buffalo Wild Wings","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1761162,36.0959062]},"properties":{"stars":"3.5","name":"Company American Bistro","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.136389,36.175]},"properties":{"stars":"3","name":"Don Miguel's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1261,36.2119]},"properties":{"stars":"4","name":"Shane's Rib Shack","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1542695,36.1186973]},"properties":{"stars":"4","name":"Musashi Japanese Steakhouse","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1179769,36.0184198]},"properties":{"stars":"4","name":"Island Sushi and Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.186442,36.118699]},"properties":{"stars":"2.5","name":"Rub Bbq","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2067011,36.1104125]},"properties":{"stars":"3","name":"TGI Friday's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2430774,36.0367597]},"properties":{"stars":"3","name":"The Lodge at Shelborne","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2067011,36.1104125]},"properties":{"stars":"2.5","name":"Sao Paulo","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.171309,36.11599166]},"properties":{"stars":"3.5","name":"Tequila Bar and Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1680907,36.1196717]},"properties":{"stars":"3","name":"Casino Cafe","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2038275,35.9986631]},"properties":{"stars":"3","name":"The Lodge At Cactus","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.15036,36.01979]},"properties":{"stars":"3.5","name":"Roberto's Taco Shop","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.044944,36.242231]},"properties":{"stars":"4.5","name":"Rickenbackers Cafe","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1465531,36.1710451]},"properties":{"stars":"4","name":"San Francisco Shrimp Bar and Deli","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1579672,36.1582642]},"properties":{"stars":"4.5","name":"Bistro Divino","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1190076,36.2386502]},"properties":{"stars":"3.5","name":"Waverly's Steak House","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1727107,36.1094088]},"properties":{"stars":"2.5","name":"La Salsa Cantina","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.242475,36.116075]},"properties":{"stars":"3.5","name":"Einstein Bros","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1689885,36.12460358]},"properties":{"stars":"3.5","name":"Morels French Steakhouse & Bistro","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.233117,36.238728]},"properties":{"stars":"2","name":"Imperial Asian Buffet","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1233358,36.0207731]},"properties":{"stars":"4","name":"Shucks Tavern","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2943771,36.1150899]},"properties":{"stars":"3.5","name":"Shucks Tavern & Oyster Bar","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1748529,36.0115126]},"properties":{"stars":"3.5","name":"Baja Miguel's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.146372,36.124423]},"properties":{"stars":"3","name":"The Caravan Cafe","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1435569,36.1692708]},"properties":{"stars":"4","name":"McDonald's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.136389,36.175]},"properties":{"stars":"1.5","name":"Lucky Star Chinese & Japanese Buffet","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1705922,36.1231252]},"properties":{"stars":"3","name":"Jade At the Palazzo","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.172601,36.115606]},"properties":{"stars":"2.5","name":"Paradise Garden Buffet","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1732166,36.1041893]},"properties":{"stars":"3.5","name":"McDonald's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2600354,36.1909636]},"properties":{"stars":"4","name":"Galerias Gourmet","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.116175,36.006758]},"properties":{"stars":"3.5","name":"Spicy Pickle","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.175101,36.1444276]},"properties":{"stars":"3.5","name":"Pasta Cucina","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1378443,36.1161392]},"properties":{"stars":"3","name":"Thai Place","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.137903,36.13884]},"properties":{"stars":"3.5","name":"El Patron Mexican Restaurant & Oyster Bar","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1422063,36.1425179]},"properties":{"stars":"3","name":"Las Palmas Mariachi Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.146372,36.124423]},"properties":{"stars":"5","name":"The Paiza Club","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2254338,36.0868399]},"properties":{"stars":"3.5","name":"50's Diner","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.168415,36.124582]},"properties":{"stars":"3.5","name":"Carnevino","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1748396,36.06812776]},"properties":{"stars":"3.5","name":"California Pizza Kitchen","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.168578,36.12347839]},"properties":{"stars":"3.5","name":"Espressamente Illy","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.259958,36.204018]},"properties":{"stars":"3.5","name":"Becker's Steakhouse","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1772393,36.06848501]},"properties":{"stars":"3.5","name":"Blue Martini","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.312508,36.1154536]},"properties":{"stars":"3.5","name":"Lindo Michoacan","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.17155,36.051991]},"properties":{"stars":"3.5","name":"Joe's New York Pizza","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1615956,36.1374016]},"properties":{"stars":"3","name":"Barista Bagels","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.138026,36.089494]},"properties":{"stars":"2.5","name":"Blue Burrito Grille","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1366241,36.141121]},"properties":{"stars":"3.5","name":"DJ Bibingkahan","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.145593,36.172777]},"properties":{"stars":"3.5","name":"Cal Club Snack Bar","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.304085,36.1909769]},"properties":{"stars":"3.5","name":"Maru Korean BBQ & Sushi","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1671393,36.12647801]},"properties":{"stars":"3.5","name":"Table 10","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1768402,36.0687779]},"properties":{"stars":"4","name":"California Pizza Kitchen","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1721706,36.0151319]},"properties":{"stars":"4","name":"Pepe's Pizza","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.15036,36.01979]},"properties":{"stars":"4","name":"Hougan's Racing Sandwich Shop","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.14,36.18]},"properties":{"stars":"3.5","name":"Ago","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2060563,36.1008788]},"properties":{"stars":"4","name":"Abyssinia Ethipian Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.144061,36.171235]},"properties":{"stars":"3","name":"Binion's Original Coffee Shop","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1060718,36.22059233]},"properties":{"stars":"4.5","name":"Russell's Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1711298,36.128561]},"properties":{"stars":"2.5","name":"Shake N' Burger","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.169667,36.11949]},"properties":{"stars":"2","name":"Cafe at Harrah's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1829873,36.1462673]},"properties":{"stars":"3","name":"The V Thai Cuisine","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.294935,36.1446524]},"properties":{"stars":"3","name":"Cafe Rio","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1776615,36.0686142]},"properties":{"stars":"4","name":"Louis's Las Vegas","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.208187,36.149049]},"properties":{"stars":"4.5","name":"Amena Bakery & Deli","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.136389,36.175]},"properties":{"stars":"2.5","name":"Times Square To Go","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1421459,36.08893912]},"properties":{"stars":"3","name":"L & L Hawaiian Barbecue","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.287007,36.288706]},"properties":{"stars":"2.5","name":"Carino's Italian Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2973739,36.1134051]},"properties":{"stars":"2.5","name":"Fatburger","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1529193,36.1371122]},"properties":{"stars":"3.5","name":"TJ's Steakhouse","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1533034,36.0121499]},"properties":{"stars":"3","name":"RE Tapas","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2259683,36.2395721]},"properties":{"stars":"4","name":"Great Links Hot Dogs & Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1687632,36.12437826]},"properties":{"stars":"4","name":"CUT","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1696112,36.1214517]},"properties":{"stars":"3.5","name":"Towers Deli","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2464634,36.195559]},"properties":{"stars":"4","name":"In-N-Out Burger","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1823137,36.1407035]},"properties":{"stars":"4","name":"Restaurant Charlie","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.136389,36.175]},"properties":{"stars":"3","name":"Cici's Pizza","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2781678,36.0564145]},"properties":{"stars":"4","name":"Teriyaki Madness","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1190023,36.1409739]},"properties":{"stars":"3.5","name":"Roberto's Taco Shop","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1750795,36.1444275]},"properties":{"stars":"2.5","name":"Cabo Mexican Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2434379,36.1519035]},"properties":{"stars":"4.5","name":"TJ's Deli","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1822024,36.10131547]},"properties":{"stars":"4","name":"In-N-Out Burger","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.136178,36.1051599]},"properties":{"stars":"3.5","name":"Yayo Taco","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1759299,36.06815239]},"properties":{"stars":"4","name":"Brio Tuscan Grille","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.178028,36.068926]},"properties":{"stars":"4","name":"Yard House","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1834151,36.04206201]},"properties":{"stars":"2.5","name":"Sundance Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1655364,36.1152568]},"properties":{"stars":"3.5","name":"Suede Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1684081,36.1135342]},"properties":{"stars":"3.5","name":"Nosh","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.206454,36.279407]},"properties":{"stars":"3","name":"Little Dumpling Chinese & Thai Cuisine","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1677567,36.12397744]},"properties":{"stars":"4","name":"SUSHISAMBA Las Vegas","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1615956,36.1374016]},"properties":{"stars":"2","name":"Circus Buffet","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1626825,36.1372759]},"properties":{"stars":"3","name":"Pizzeria","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1189623,36.0123098]},"properties":{"stars":"3.5","name":"The New Orleans Connection","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.119046,36.06513]},"properties":{"stars":"4","name":"Peppers Mexican Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.175206,36.104801]},"properties":{"stars":"4","name":"Brand Steakhouse & Lounge","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.177001,36.11199]},"properties":{"stars":"3.5","name":"Yellowtail","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.201741,36.126586]},"properties":{"stars":"4","name":"The Whale Island","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.22472,36.126887]},"properties":{"stars":"3.5","name":"China Mama Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.136389,36.175]},"properties":{"stars":"2","name":"Lucky 7s Buffet","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.138026,36.089494]},"properties":{"stars":"3.5","name":"Giorgio Ristorante E Caffe","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.314551,36.1284289]},"properties":{"stars":"3","name":"Rosati's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1644913,36.1937687]},"properties":{"stars":"4","name":"Gritz Cafe","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2509056,36.1962809]},"properties":{"stars":"4","name":"Create","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2069805,35.995344]},"properties":{"stars":"3.5","name":"Xtreme Sushi","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.119197,36.025359]},"properties":{"stars":"2.5","name":"American Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2059767,36.1260764]},"properties":{"stars":"3.5","name":"Little Crown & Anchor Pub","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.279414,36.111402]},"properties":{"stars":"3","name":"Espee's Gourmet Tamales","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1713943,36.1156902]},"properties":{"stars":"2.5","name":"Java Coast Cafe","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2791715,36.1248977]},"properties":{"stars":"2.5","name":"Island Style B.B.Q.","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.206858,36.142107]},"properties":{"stars":"3","name":"Barbecue Masters Tavern","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1185146,36.0153561]},"properties":{"stars":"4","name":"True Island BBQ","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.136389,36.175]},"properties":{"stars":"2.5","name":"Senor Miguel's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.146372,36.124423]},"properties":{"stars":"2.5","name":"Steakhouse at Bill's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1823137,36.1407035]},"properties":{"stars":"3.5","name":"Woo","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2914106,36.1607779]},"properties":{"stars":"3","name":"Sea Stone","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1696112,36.1214517]},"properties":{"stars":"4","name":"Pinot Brasserie Bakery","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2627634,36.1432711]},"properties":{"stars":"3","name":"8ONO8 Musubi","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2431228,36.0897171]},"properties":{"stars":"3.5","name":"Jimmy John's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2669135,36.2732242]},"properties":{"stars":"4","name":"Sushi Loca","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1533034,36.0121499]},"properties":{"stars":"4","name":"Catfish Alley","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.286765,36.282752]},"properties":{"stars":"3","name":"Buffalo Wild Wings","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1725031,36.12717449]},"properties":{"stars":"3.5","name":"YOLOS","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2797227,36.1439209]},"properties":{"stars":"4","name":"Lucio Ristorante","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.136389,36.175]},"properties":{"stars":"2.5","name":"Studio Wok","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.138026,36.089494]},"properties":{"stars":"2","name":"Prickly Pear Cafe","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.0881146,36.1165487]},"properties":{"stars":"3.5","name":"Wild West Buffet","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2432983,36.0357089]},"properties":{"stars":"3.5","name":"Cheeburger Cheeburger","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2512854,36.1433538]},"properties":{"stars":"3.5","name":"Sushi Dan","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2429995,36.0446569]},"properties":{"stars":"3.5","name":"Rice n Noodle","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1834365,36.04191453]},"properties":{"stars":"4","name":"Twin Creeks","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.243892,36.0471379]},"properties":{"stars":"3","name":"Hurricane Grill & Wings","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.298266,36.0789703]},"properties":{"stars":"4","name":"Panna Thai","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.146372,36.124423]},"properties":{"stars":"3","name":"Solaro","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.177184,36.06826246]},"properties":{"stars":"4","name":"Tommy Bahama Restaurant & Bar - Las Vegas","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.136389,36.175]},"properties":{"stars":"3.5","name":"Wolfgang Puck Express","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1711298,36.128561]},"properties":{"stars":"3","name":"DJT","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.199059,36.114303]},"properties":{"stars":"3.5","name":"Simon Restaurant and Lounge","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.287767,36.056045]},"properties":{"stars":"2","name":"Aces Bar and Russo's Italian Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.243642,36.0494888]},"properties":{"stars":"2.5","name":"Pizza Hut","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2618162,36.196487]},"properties":{"stars":"3.5","name":"McDonald's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1592718,36.0802868]},"properties":{"stars":"2.5","name":"Burger King","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1713943,36.1156902]},"properties":{"stars":"3","name":"Voga","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1186676,36.19966125]},"properties":{"stars":"2.5","name":"Garduno's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1809762,36.1143876]},"properties":{"stars":"2.5","name":"McFadden's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1823137,36.1407035]},"properties":{"stars":"3.5","name":"Mainland","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1768802,36.0675793]},"properties":{"stars":"3","name":"Claim Jumper","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.287149,36.291612]},"properties":{"stars":"4","name":"Sammy's Woodfired Pizza and Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2063462,36.27932042]},"properties":{"stars":"2.5","name":"Draco Wings","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.3062846,36.1148228]},"properties":{"stars":"4","name":"Zaba's Mexican Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2095461,36.1264366]},"properties":{"stars":"4.5","name":"Raku","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1498508,36.08358083]},"properties":{"stars":"2.5","name":"Great Steak & Potato","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1533426,36.0765176]},"properties":{"stars":"3.5","name":"Flatbreadz","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.291282,36.168849]},"properties":{"stars":"2.5","name":"St. Tropez International Buffet","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2757916,36.1434155]},"properties":{"stars":"4","name":"Bobo China","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2518177,36.27337594]},"properties":{"stars":"3.5","name":"Vega's Cafe","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1544866,36.0007947]},"properties":{"stars":"4.5","name":"Village Pub & Poker","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2254682,36.1429917]},"properties":{"stars":"4","name":"Well Being In The Box","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2398152,36.2476774]},"properties":{"stars":"2.5","name":"Feast Buffet","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2627634,36.1432711]},"properties":{"stars":"3.5","name":"Red Velvet Cafe","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.198017,36.039711]},"properties":{"stars":"3","name":"New Day Cafe","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2564721,36.2627888]},"properties":{"stars":"3.5","name":"The Cracked Egg","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.205231,36.1255979]},"properties":{"stars":"3.5","name":"Honey Pig","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1397463,36.1150242]},"properties":{"stars":"4","name":"Raising Cane's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2610867,36.1135597]},"properties":{"stars":"3.5","name":"Goat Post Tropical Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2263653,36.1431452]},"properties":{"stars":"3.5","name":"Centro America Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.114144,36.115518]},"properties":{"stars":"2.5","name":"La Costa Grill Restaurant Bar & Night Club","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.206043,36.279651]},"properties":{"stars":"3.5","name":"Geisha House Steak & Sushi","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.136389,36.175]},"properties":{"stars":"1.5","name":"Riviera seasonal buffet table","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1959972,36.1442497]},"properties":{"stars":"3.5","name":"Essence of Thai","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.136552,36.103565]},"properties":{"stars":"1.5","name":"Adam's Ribs","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1790262,36.12523332]},"properties":{"stars":"3.5","name":"Palio Pronto","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.267485,36.143368]},"properties":{"stars":"3.5","name":"Krazy Buffet","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1179154,36.0993008]},"properties":{"stars":"3.5","name":"Burger Stop","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.183955,36.261157]},"properties":{"stars":"3","name":"Pancit Adobo","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1182839,36.017627]},"properties":{"stars":"1.5","name":"STEELES","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1736796,36.12316083]},"properties":{"stars":"3.5","name":"BLT Burger","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.117929,36.021448]},"properties":{"stars":"4.5","name":"In-N-Out Burger","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.3286729,36.221024]},"properties":{"stars":"3","name":"Dragon Wok","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.144506,36.170349]},"properties":{"stars":"3.5","name":"Lillie's Asian Cuisine","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1918357,36.0399661]},"properties":{"stars":"3.5","name":"Del Taco","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.0408638,36.0561907]},"properties":{"stars":"2.5","name":"La Tortilla Fresh Mexican Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.167725,36.103399]},"properties":{"stars":"4.5","name":"Joel Robuchon","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.117185,36.028936]},"properties":{"stars":"3.5","name":"Lemongrass Caf<U+00E9>","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2665755,36.271407]},"properties":{"stars":"3.5","name":"Red Robin Gourmet Burgers","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2424505,36.1433639]},"properties":{"stars":"3","name":"Kikuhana Japanese Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2814295,36.05515401]},"properties":{"stars":"4","name":"Buffalo Wild Wings","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2938223,36.1149279]},"properties":{"stars":"4","name":"Northside Nathan's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.144363,36.1663575]},"properties":{"stars":"3.5","name":"City Centre Cafe","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.053217,36.196696]},"properties":{"stars":"4","name":"La Hacienda Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1449273,36.1220305]},"properties":{"stars":"3","name":"Axum Ethiopian","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.278464,36.1428]},"properties":{"stars":"3","name":"The Mad Greek","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.3249823,36.1084416]},"properties":{"stars":"3","name":"Siena Bistro","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1711298,36.128561]},"properties":{"stars":"3","name":"Zine Noodles Dim Sum","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.17204,36.106542]},"properties":{"stars":"3","name":"China Star Buffet","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.171085,36.043483]},"properties":{"stars":"3.5","name":"Famous Dave's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1721598,36.12606526]},"properties":{"stars":"3.5","name":"Stratta","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.175396,36.057472]},"properties":{"stars":"4","name":"Screwballs Sports Lounge","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1594976,36.2391823]},"properties":{"stars":"1.5","name":"Wendy's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.278503,36.05657]},"properties":{"stars":"3.5","name":"Rosati's Pizza","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.088341,36.071413]},"properties":{"stars":"4","name":"Blue Fin Sushi & Roll","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.172602,36.103699]},"properties":{"stars":"3.5","name":"Outback Steakhouse","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2837833,36.1389598]},"properties":{"stars":"2.5","name":"Captain's Cove","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.3092463,36.11354318]},"properties":{"stars":"3.5","name":"Fuddruckers","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.120315,36.0574572]},"properties":{"stars":"3.5","name":"Capriotti's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.134978,36.013812]},"properties":{"stars":"3.5","name":"Los Burritos","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2790394,36.306775]},"properties":{"stars":"4","name":"Rosati's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.3250841,36.1248839]},"properties":{"stars":"4","name":"Hokkaido Teppanyaki Steak House","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1690687,36.12443395]},"properties":{"stars":"3.5","name":"LAVO Italian Restaurant & Lounge","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1506875,36.0883812]},"properties":{"stars":"2.5","name":"Great American Bagel","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1506875,36.0883812]},"properties":{"stars":"2.5","name":"Sbarro","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.21134,36.11274]},"properties":{"stars":"3.5","name":"Mah Jong","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1834372,36.0411727]},"properties":{"stars":"3","name":"Seasons Buffet","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1684369,36.12454871]},"properties":{"stars":"4","name":"Trattoria Reggiano","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.146372,36.124423]},"properties":{"stars":"5","name":"Bar Charlie","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1177785,36.0095858]},"properties":{"stars":"4","name":"Montesano's Eateria","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2797596,36.12902061]},"properties":{"stars":"2.5","name":"Roberto's Taco Shop","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2703357,36.01908848]},"properties":{"stars":"2.5","name":"Inaka Sushi","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1059228,36.0586694]},"properties":{"stars":"4.5","name":"Jersey Mike's Subs","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.283688,36.055622]},"properties":{"stars":"3.5","name":"Marco's Pizza","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.278723,36.071411]},"properties":{"stars":"3","name":"Super Mex Restaurant & Cantina","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.284216,36.1587575]},"properties":{"stars":"2.5","name":"Bilbo's Bar & Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1904204,36.0405285]},"properties":{"stars":"4","name":"Bilbo's III Bar & Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.241332,36.055414]},"properties":{"stars":"3","name":"Grand China","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.0794033,36.2414968]},"properties":{"stars":"3.5","name":"Farmer Boys","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1776615,36.0686142]},"properties":{"stars":"3","name":"Grape Vegas","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1720087,36.15936622]},"properties":{"stars":"3.5","name":"Mix Zone Cafe","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.206768,36.116544]},"properties":{"stars":"3.5","name":"Gimik da Lounge","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1747074,36.0113116]},"properties":{"stars":"3.5","name":"Primarily Prime Rib","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.169758,36.121558]},"properties":{"stars":"3","name":"San Gennaro Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2790461,36.1125219]},"properties":{"stars":"4","name":"Gina's Bistro","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2704084,36.0198613]},"properties":{"stars":"2.5","name":"Papa John's Pizza","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2243858,36.0489038]},"properties":{"stars":"3.5","name":"Mandarin Express","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.178605,36.068584]},"properties":{"stars":"4","name":"Texas de Brazil","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1766297,36.1451859]},"properties":{"stars":"4","name":"Maui Rose Hawaiian BBQ","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1732167,36.12758725]},"properties":{"stars":"4.5","name":"Nordstrom Cafe","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2435598,36.1252746]},"properties":{"stars":"3","name":"Applebee's Neighborhood Grill & Bar","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1592718,36.0802868]},"properties":{"stars":"1.5","name":"Subway","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1167309,36.0998803]},"properties":{"stars":"3.5","name":"Yoshidaya","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.244707,36.1005777]},"properties":{"stars":"3.5","name":"Tiger Sushi","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2794069,36.1238325]},"properties":{"stars":"4.5","name":"Zaytoon Mediterranean Market and Kabob","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.351342,36.159014]},"properties":{"stars":"3","name":"John Cutter","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.3084925,36.1139419]},"properties":{"stars":"3","name":"Cafe Deia","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1505728,36.13525532]},"properties":{"stars":"3","name":"Superbook Deli","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1529193,36.1371122]},"properties":{"stars":"2.5","name":"The Buffet","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2973533,36.0944116]},"properties":{"stars":"4","name":"WaffleS Cafe","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2424229,36.1992487]},"properties":{"stars":"3.5","name":"Hawaiian BBQ","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.31953,36.05798]},"properties":{"stars":"2.5","name":"Rhodes Ranch Club House Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1067983,36.0719464]},"properties":{"stars":"4.5","name":"Sunrise Coffee","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1104653,36.07135433]},"properties":{"stars":"4","name":"Ping Pong Thai Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1986027,36.0387056]},"properties":{"stars":"3.5","name":"Ohana Hawaiian BBQ","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.114902,36.151796]},"properties":{"stars":"3.5","name":"Little Bangkok Thai Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.138026,36.089494]},"properties":{"stars":"2.5","name":"Budweiser Racing Track Bar & Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1823137,36.1418626]},"properties":{"stars":"3","name":"Pizzeria da Enzo","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1709543,36.1065949]},"properties":{"stars":"2.5","name":"Kapit Bahay","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.224318,36.127754]},"properties":{"stars":"4","name":"Bosa 1","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.333584,36.156094]},"properties":{"stars":"3.5","name":"LBS Burger","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.224964,36.069826]},"properties":{"stars":"3.5","name":"Tropical Smoothie Cafe","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1597713,36.1557597]},"properties":{"stars":"2","name":"Cook's BBQ","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.175557,36.098909]},"properties":{"stars":"3","name":"Regale Ristorante Italiano","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1758946,36.09701407]},"properties":{"stars":"3.5","name":"T&T - Tacos and Tequila","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.213867,36.126501]},"properties":{"stars":"4","name":"Won Mi","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2435889,36.0455949]},"properties":{"stars":"3","name":"Jenni Pho","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1187014,36.0165803]},"properties":{"stars":"3","name":"Taza Indian Kitchen","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.136056,36.012764]},"properties":{"stars":"3","name":"Honmachi","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2418447,36.1442339]},"properties":{"stars":"2.5","name":"Bollywood Grill Indian Cusine","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1095943,36.158231]},"properties":{"stars":"3.5","name":"Pizza Patron","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2054322,36.1261038]},"properties":{"stars":"3.5","name":"Woo Che","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.131645,36.021088]},"properties":{"stars":"4","name":"Steve-O's New York Pizza","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1715469,36.05444717]},"properties":{"stars":"3.5","name":"Dickey's Barbecue Pit","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.259773,36.194505]},"properties":{"stars":"3","name":"Shari's Rock & Roll Diner","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.3051701,36.1149939]},"properties":{"stars":"3.5","name":"Famous Dave's BBQ","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1767584,36.1044875]},"properties":{"stars":"2.5","name":"Sbarro","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.241601,36.194482]},"properties":{"stars":"3","name":"Outback Steakhouse","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.061512,36.1091694]},"properties":{"stars":"3.5","name":"Original Tommy's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2071829,36.1463381]},"properties":{"stars":"3.5","name":"Napoli Pizzeria","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2077903,36.1546096]},"properties":{"stars":"3.5","name":"Olive Garden Italian Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2924059,36.1568895]},"properties":{"stars":"4","name":"Via Brasil Steakhouse","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.144061,36.171235]},"properties":{"stars":"4","name":"Binion's Horseshoe Deli","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1615956,36.1374016]},"properties":{"stars":"3","name":"The Garden Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1315065,36.1653094]},"properties":{"stars":"3.5","name":"Bay City Diner","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1454799,36.16939051]},"properties":{"stars":"2.5","name":"Red Sushi Hibachi Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2069805,35.995344]},"properties":{"stars":"2.5","name":"Aloha A Go Go","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2445146,36.2183699]},"properties":{"stars":"3","name":"Olive Garden Italian Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1399572,36.08668489]},"properties":{"stars":"2","name":"Moe's Southwest Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.17033,36.123618]},"properties":{"stars":"4","name":"Grand Lux Cafe","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1865864,36.11548217]},"properties":{"stars":"3.5","name":"Sports Deli","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.062655,36.1608317]},"properties":{"stars":"4","name":"In-N-Out Burger","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.178936,36.1438599]},"properties":{"stars":"4.5","name":"Wayne's Sushi Bar","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2910289,36.1757303]},"properties":{"stars":"2.5","name":"Rampart Buffet","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2069805,35.995344]},"properties":{"stars":"4.5","name":"Off the Strip Bistro & Bar","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1359573,36.034953]},"properties":{"stars":"3.5","name":"Timbers Bar & Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1648858,36.1314439]},"properties":{"stars":"3","name":"The Mad Greek Cafe","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1380271,36.08159339]},"properties":{"stars":"3","name":"Auntie Anne's Pretzels","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2304131,36.2576752]},"properties":{"stars":"2","name":"Festival Buffet","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1898805,36.1956979]},"properties":{"stars":"2.5","name":"Feast Buffet","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.16908,36.123559]},"properties":{"stars":"3.5","name":"Canyon Ranch Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1818353,36.2912219]},"properties":{"stars":"2","name":"Camacho's Cantina","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2311991,36.2371631]},"properties":{"stars":"3.5","name":"Mezzo Bistro and Wine","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1711298,36.128561]},"properties":{"stars":"3.5","name":"Switch Steak","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1520552,36.0428966]},"properties":{"stars":"4.5","name":"Miko's Izakaya","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.165913,36.127516]},"properties":{"stars":"4","name":"Botero","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.3020572,36.10063433]},"properties":{"stars":"4.5","name":"In-N-Out Burger","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1659163,36.1275008]},"properties":{"stars":"4","name":"Society Cafe Encore","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.170815,36.1274245]},"properties":{"stars":"4","name":"Luciano's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.0570679,36.1085525]},"properties":{"stars":"4","name":"Carve","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.0570679,36.1085525]},"properties":{"stars":"3","name":"Casa Cocina","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.0570679,36.1085525]},"properties":{"stars":"3","name":"Snaps","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.178472,36.28633]},"properties":{"stars":"3.5","name":"Sierra Gold","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1928809,36.11635402]},"properties":{"stars":"3.5","name":"Noodle Exchange","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.174196,36.011426]},"properties":{"stars":"3.5","name":"Coronado Cafe","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.278208,36.112737]},"properties":{"stars":"4","name":"Kai Sushi and Steakhouse","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.126973,36.219109]},"properties":{"stars":"2","name":"McDonald's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.171051,36.12650593]},"properties":{"stars":"3.5","name":"H2 EAU","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2185573,36.1688235]},"properties":{"stars":"3","name":"India's Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.11687,36.072421]},"properties":{"stars":"4","name":"Egg Works","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.166312,36.12757]},"properties":{"stars":"3.5","name":"Wazuzu","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.0796624,36.1670736]},"properties":{"stars":"4.5","name":"Fat Boy","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2245664,36.1280756]},"properties":{"stars":"3.5","name":"Forbes KTV Restaurant & Bar","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1659216,36.1268103]},"properties":{"stars":"4","name":"Sinatra","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2910289,36.1757303]},"properties":{"stars":"3","name":"J C Wooloughan Irish Pub","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2183823,36.1257764]},"properties":{"stars":"2.5","name":"BBQ King","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.118622,36.115194]},"properties":{"stars":"2.5","name":"Buffet at Asia","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.3077909,36.1138449]},"properties":{"stars":"3","name":"Aranya Thai Bistro","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1722594,36.0410251]},"properties":{"stars":"3.5","name":"Galanga Thai Eatery","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1505439,36.08316991]},"properties":{"stars":"2","name":"California Pizza Kitchen","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.251761,36.061812]},"properties":{"stars":"3","name":"Mimi's Cafe","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1676,36.103295]},"properties":{"stars":"2.5","name":"Stage Deli","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.160294,36.184536]},"properties":{"stars":"3.5","name":"M & M Chicken and Waffles","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1947756,36.12583513]},"properties":{"stars":"4","name":"Hawaiian Style Poke","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.320321,36.159417]},"properties":{"stars":"2.5","name":"McDonald's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2002933,36.144034]},"properties":{"stars":"2.5","name":"McDonald's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1020992,36.1448234]},"properties":{"stars":"4","name":"Sahara Saloon","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.177875,36.11706]},"properties":{"stars":"2.5","name":"Beijing Noodle No. 9","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2823852,36.30256691]},"properties":{"stars":"3","name":"Sassy Sal's BBQ","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1857339,36.14793071]},"properties":{"stars":"3","name":"Quiznos","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.207338,36.088774]},"properties":{"stars":"4.5","name":"Mr. Mama's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.3053069,36.1135909]},"properties":{"stars":"2.5","name":"Ibo Turkish and Mediterranean Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.192665,36.11576]},"properties":{"stars":"2.5","name":"TGI Friday's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1391984,36.08282213]},"properties":{"stars":"2","name":"Burke in the Box","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.0918871,36.1143211]},"properties":{"stars":"4","name":"Long Life Vege Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.243799,36.061677]},"properties":{"stars":"4","name":"Capriotti's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.184915,36.12607]},"properties":{"stars":"2.5","name":"HARRY O's BBQ","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.3036,36.2811]},"properties":{"stars":"3.5","name":"Deli Den","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2772047,36.3067315]},"properties":{"stars":"3","name":"The Lodge at Grand Teton","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1353046,36.0101596]},"properties":{"stars":"3","name":"Cici's Pizza","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.230569,36.159674]},"properties":{"stars":"2.5","name":"Dennys","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2782153,36.04165708]},"properties":{"stars":"4.5","name":"Island Flavor","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1889467,36.0774591]},"properties":{"stars":"3.5","name":"Sunset Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.276246,36.21907]},"properties":{"stars":"3","name":"Little Caesars","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1179542,36.0996917]},"properties":{"stars":"4","name":"Kabob Express","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1943705,36.11658884]},"properties":{"stars":"3","name":"Ports O Call Buffet","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2659777,36.1683449]},"properties":{"stars":"2.5","name":"Cafe Siena","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1157458,36.1298281]},"properties":{"stars":"3.5","name":"Elena's Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.11937,36.085343]},"properties":{"stars":"3","name":"Gyro Time","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1410747,36.1164875]},"properties":{"stars":"3","name":"Wok On In","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.291282,36.168849]},"properties":{"stars":"3","name":"T.G.I. Friday's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.120023,36.055832]},"properties":{"stars":"4","name":"Ohana Hawaiian Bbq","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1559363,36.10788]},"properties":{"stars":"3","name":"Alexis Cafe","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1287195,36.0568121]},"properties":{"stars":"3.5","name":"Sakun Thai","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1809645,36.2919185]},"properties":{"stars":"2.5","name":"TGI Friday's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2986392,36.0765586]},"properties":{"stars":"3.5","name":"Geisha House Steak & Sushi","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.147904,36.114988]},"properties":{"stars":"3.5","name":"Mr. Beijing","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1370841,36.1066864]},"properties":{"stars":"3","name":"El Patio Mexico","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1982164,36.12595131]},"properties":{"stars":"3.5","name":"Sushi Kaya","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.252315,36.063237]},"properties":{"stars":"4","name":"Sammy's Woodfired Pizza and Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1505882,36.238438]},"properties":{"stars":"5","name":"Poke Express","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.13359,36.115524]},"properties":{"stars":"3","name":"Big Mama's & Papa's Pizzeria","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1763677,36.0680069]},"properties":{"stars":"3.5","name":"Bar Louie","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.20848,36.073079]},"properties":{"stars":"3.5","name":"Rhythm Kitchen","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.289207,36.16462828]},"properties":{"stars":"3.5","name":"The Cheesecake Factory","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.195684,36.114539]},"properties":{"stars":"1.5","name":"Blue Agave","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-114.990361,36.2779044]},"properties":{"stars":"4","name":"The Oyster Bar at Terzetto","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2509355,36.1591089]},"properties":{"stars":"4","name":"Red Apple Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.172501,36.1100668]},"properties":{"stars":"3.5","name":"P F Chang's China Bistro","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1906168,36.145787]},"properties":{"stars":"2.5","name":"Vinny-Boy's Italian Market Place","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.25354,36.1433]},"properties":{"stars":"4","name":"Thai Wasabi","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.3161938,36.218368]},"properties":{"stars":"2.5","name":"Rosati's Pizza","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.3252675,36.2187129]},"properties":{"stars":"3","name":"The Edge of Town","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.257743,36.26483]},"properties":{"stars":"3.5","name":"Cafe Rio","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.295766,36.1005923]},"properties":{"stars":"3","name":"Dennys","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.180625,36.292489]},"properties":{"stars":"3","name":"Feast Buffet","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2668393,36.2713297]},"properties":{"stars":"3.5","name":"Michoacan Gourmet Mexican Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2062795,36.1167652]},"properties":{"stars":"4","name":"Dong Ting Spring","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1829873,36.1462673]},"properties":{"stars":"3","name":"Food Express","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2566567,36.264515]},"properties":{"stars":"2.5","name":"On the Border Mexican Grill & Cantina","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.170129,36.118346]},"properties":{"stars":"1.5","name":"Emperor's Buffet","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.256869,36.2638103]},"properties":{"stars":"3","name":"Indian Curry Bowl","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1184241,36.2747539]},"properties":{"stars":"3","name":"Delucias Pizzeria","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.138026,36.089494]},"properties":{"stars":"2","name":"360 Gourmet Burrito","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.214682,36.158189]},"properties":{"stars":"4","name":"Top Notch Barbeque","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1218139,36.2011605]},"properties":{"stars":"3.5","name":"Hick's H&H BBQ Pit Stop","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.160131,36.1887789]},"properties":{"stars":"3.5","name":"Pit Boss BBQ","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.297067,36.068112]},"properties":{"stars":"3","name":"PT's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2782,36.042461]},"properties":{"stars":"4","name":"Familia Pizzeria","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1768961,36.2392191]},"properties":{"stars":"3.5","name":"Little Dumpling Asian Buffet","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1735161,36.1030009]},"properties":{"stars":"3.5","name":"Broadway Burger Bar & Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1722497,36.0564689]},"properties":{"stars":"3.5","name":"La Cosina Mexican Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.177855,36.117268]},"properties":{"stars":"3","name":"Serendipity 3","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1952595,36.038774]},"properties":{"stars":"3.5","name":"Famous Daves","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2583377,36.1960261]},"properties":{"stars":"3","name":"Evos","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1922304,36.1680995]},"properties":{"stars":"2.5","name":"Springs Cafe by Wolfgang Puck","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2074073,36.1299918]},"properties":{"stars":"3.5","name":"Sarfino's Pizzeria","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1416356,36.0425894]},"properties":{"stars":"2.5","name":"Mama Cimino's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.297066,36.144766]},"properties":{"stars":"3.5","name":"Chipotle","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.162926,36.135911]},"properties":{"stars":"1.5","name":"Hot Dogs at Slots of Fun","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1727367,36.1142391]},"properties":{"stars":"3.5","name":"Bally's Steakhouse","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1735161,36.1030009]},"properties":{"stars":"3","name":"Jody Maroni's Sausage Kingdom","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.289948,36.175228]},"properties":{"stars":"2.5","name":"Promenade Cafe","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.138026,36.089494]},"properties":{"stars":"2.5","name":"Cadillac Ranch","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2790536,36.0587117]},"properties":{"stars":"2","name":"Popeyes Chicken and Biscuits","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1730752,36.1231538]},"properties":{"stars":"2.5","name":"Pizzeria Fracesco's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.243317,36.078623]},"properties":{"stars":"4","name":"Wienerschnitzel","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2999764,36.14715261]},"properties":{"stars":"4","name":"Archi's Thai Cafe","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.204802,36.034193]},"properties":{"stars":"3","name":"Panda Express","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1222548,36.1000026]},"properties":{"stars":"3.5","name":"Sammy's LA Pastrami & Burgers","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1325897,36.1295416]},"properties":{"stars":"3","name":"Rare 120","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.115865,36.240241]},"properties":{"stars":"4","name":"Chipotle's Mexican Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.171859,36.2395163]},"properties":{"stars":"2.5","name":"IHOP","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.196044,36.130824]},"properties":{"stars":"4","name":"Blue Nile","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.154011,36.23896]},"properties":{"stars":"3.5","name":"Ruby Tuesday","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2252203,36.1146152]},"properties":{"stars":"2.5","name":"Sandai Sushi","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1025184,36.0786216]},"properties":{"stars":"4","name":"Carlito's Burritos","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.206161,36.1440005]},"properties":{"stars":"3.5","name":"Chipotle Mexican Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.236636,36.114921]},"properties":{"stars":"4","name":"Brooklyn Billy's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.155708,36.102907]},"properties":{"stars":"4.5","name":"Due Pizzeria","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1236952,36.1697096]},"properties":{"stars":"4","name":"Tinoco's Kitchen","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.219839,36.1260199]},"properties":{"stars":"3.5","name":"Anna's Garden","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1711298,36.128561]},"properties":{"stars":"2","name":"World's Fare Buffet","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.251338,36.05519]},"properties":{"stars":"4","name":"Volcano Grille","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1725031,36.12717449]},"properties":{"stars":"2.5","name":"Casa Nicola","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2589028,36.1808173]},"properties":{"stars":"4","name":"Parma By Chef Marc","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2422629,36.1790447]},"properties":{"stars":"4","name":"Super B Burrito","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2083588,36.27772522]},"properties":{"stars":"3.5","name":"CiCi's Pizza","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.180169,36.2612231]},"properties":{"stars":"3","name":"Denny's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1693962,36.1033743]},"properties":{"stars":"3.5","name":"Cabana Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.119419,36.099564]},"properties":{"stars":"4","name":"Dessy B's Steak House","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.197296,36.172493]},"properties":{"stars":"3.5","name":"Johnny Rockets","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2775151,36.1441379]},"properties":{"stars":"3.5","name":"Roma Deli II and Wine Shop","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.298266,36.0789703]},"properties":{"stars":"4","name":"Hokaido Sushi","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.3290609,36.2216289]},"properties":{"stars":"3","name":"Vit's Pizza","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.177269,36.14478683]},"properties":{"stars":"2","name":"McDonalds","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.189818,36.143955]},"properties":{"stars":"4.5","name":"Mount Everest India's Cuisine","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.189491,36.125948]},"properties":{"stars":"3.5","name":"Krung Siam Thai Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.208687,36.218227]},"properties":{"stars":"3.5","name":"Red Feather Gourmet","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.154714,36.238898]},"properties":{"stars":"3","name":"3 Tomatoes & A Mozzarella","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.186442,36.118699]},"properties":{"stars":"1.5","name":"Hamada's Asiana","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1769145,36.10665561]},"properties":{"stars":"2.5","name":"barMASA","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1785827,36.10627719]},"properties":{"stars":"3.5","name":"Jean Georges Steakhouse","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1742268,36.10688395]},"properties":{"stars":"3.5","name":"Sirio Ristorante","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1732075,36.10678861]},"properties":{"stars":"3.5","name":"American Fish","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1765013,36.10757739]},"properties":{"stars":"4","name":"Sage","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1761294,36.10732731]},"properties":{"stars":"2.5","name":"ARIA Cafe","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.175775,36.107941]},"properties":{"stars":"3","name":"The Buffet at ARIA","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1757699,36.1077099]},"properties":{"stars":"3.5","name":"Lemongrass","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1716626,36.12107224]},"properties":{"stars":"3","name":"Denny's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1743555,36.10980503]},"properties":{"stars":"4","name":"Scarpetta","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.172596,36.101813]},"properties":{"stars":"4","name":"Hakkasan Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.138026,36.089494]},"properties":{"stars":"3.5","name":"Johnny McGuire's Deli","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1774972,36.1441362]},"properties":{"stars":"3.5","name":"Grand Caf<U+00E9>","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2776621,36.0215743]},"properties":{"stars":"3","name":"Jacky Chan","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.171051,36.12622862]},"properties":{"stars":"3.5","name":"Subway","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.224712,36.1232846]},"properties":{"stars":"3.5","name":"Pho 87","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1823137,36.1418626]},"properties":{"stars":"3","name":"Canonita Express","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.146372,36.124423]},"properties":{"stars":"2","name":"Sammy's Beach Bar & Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1014161,36.0724006]},"properties":{"stars":"3.5","name":"Aloha Hawaiian BBQ","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.0406679,36.1067341]},"properties":{"stars":"2.5","name":"Cannery Row Buffet","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1956491,36.17244986]},"properties":{"stars":"2.5","name":"Panda Express","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.174078,36.121194]},"properties":{"stars":"3","name":"Paradise Cafe","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1686692,36.12355948]},"properties":{"stars":"3.5","name":"First Food & Bar","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.21134,36.11274]},"properties":{"stars":"2.5","name":"Denny's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.26053,36.1743199]},"properties":{"stars":"4","name":"Tacos El Compita #2","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.15036,36.01979]},"properties":{"stars":"4","name":"El Picante","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2048129,36.1586703]},"properties":{"stars":"3.5","name":"A&W All-American Food","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1560311,36.1472468]},"properties":{"stars":"3.5","name":"Tower Pizzeria","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1190076,36.2386502]},"properties":{"stars":"3.5","name":"Victory's Bar & Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1446238,36.2755528]},"properties":{"stars":"2","name":"Pizza Hut","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1455849,36.1727435]},"properties":{"stars":"3.5","name":"Pasta Pirate","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.154932,36.238361]},"properties":{"stars":"3.5","name":"Las Pupusas","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2248077,36.1277487]},"properties":{"stars":"3.5","name":"HK Star","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1184164,36.0254142]},"properties":{"stars":"3.5","name":"Pho Saigon 8","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2029596,36.1150732]},"properties":{"stars":"3.5","name":"Da Lat","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1191946,36.1003269]},"properties":{"stars":"3","name":"Dennys","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.3511842,36.15911521]},"properties":{"stars":"3.5","name":"China One","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2876782,36.29106246]},"properties":{"stars":"3","name":"Krazy Sushi","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.243004,36.098354]},"properties":{"stars":"4","name":"Elements Kitchen & Martini Bar","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.3055469,36.193188]},"properties":{"stars":"3","name":"Samurai Sam's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.171549,36.055269]},"properties":{"stars":"4","name":"Weinerschnitzel","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.138026,36.089494]},"properties":{"stars":"3","name":"Quizno's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.159705,36.135258]},"properties":{"stars":"2.5","name":"Cheesesteaks Etc.","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.138026,36.089494]},"properties":{"stars":"3","name":"Anthony's Coal Fired Pizza","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.24816,36.195285]},"properties":{"stars":"4","name":"Market Grille Cafe","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.201181,36.126728]},"properties":{"stars":"3.5","name":"Sura BBQ Buffet","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1713943,36.1156902]},"properties":{"stars":"3","name":"The Burger Joint","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2072287,36.1634312]},"properties":{"stars":"3.5","name":"Sourdough Cafe","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1727807,36.0908025]},"properties":{"stars":"3","name":"Mizuya","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.169758,36.121558]},"properties":{"stars":"4","name":"Bella Panini","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1502912,36.0847518]},"properties":{"stars":"2","name":"Pizza Hut Express","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1433842,36.1698382]},"properties":{"stars":"3","name":"Magnolia's Veranda","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.206628,36.239064]},"properties":{"stars":"3","name":"Harvest Cafe","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2108408,36.1442519]},"properties":{"stars":"2.5","name":"Pacific Buffet","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.3084925,36.1139419]},"properties":{"stars":"2.5","name":"Tropical Smoothie Cafe","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.3238103,36.2184424]},"properties":{"stars":"3.5","name":"Sushi Bomb","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1371252,36.1037874]},"properties":{"stars":"4.5","name":"Baja Bar & Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.152279,36.1134879]},"properties":{"stars":"2.5","name":"S7 Buffet","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.268453,36.207427]},"properties":{"stars":"3.5","name":"Garfield's Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.137672,36.128998]},"properties":{"stars":"3.5","name":"Mack Ribz BBQ & Louisiana Fried Chicken","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1260876,36.17116998]},"properties":{"stars":"4","name":"Firefly","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.3145846,36.1289377]},"properties":{"stars":"4","name":"Mastrioni's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2066735,36.1148713]},"properties":{"stars":"4","name":"Tverskaya Russian Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2766402,36.055317]},"properties":{"stars":"2","name":"Burger King","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.137619,36.1588681]},"properties":{"stars":"3.5","name":"Huntridge Pharmacy & Soda Fountain","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.242713,36.036676]},"properties":{"stars":"3","name":"Nagoya Japanese Restaurant & Korean BBQ","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2025182,36.10305008]},"properties":{"stars":"3","name":"Fuddruckers","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.119668,36.115115]},"properties":{"stars":"4","name":"Carl's Jr.","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2440943,36.0458007]},"properties":{"stars":"3.5","name":"Lazy Joe's Fish & Chips","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.3073116,36.0860344]},"properties":{"stars":"3","name":"Maciano's Pizza & Pastaria","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1711298,36.128561]},"properties":{"stars":"3","name":"Khotan","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2672312,36.0206629]},"properties":{"stars":"3","name":"Xo Chinese Food","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2093648,36.1180786]},"properties":{"stars":"3","name":"Queen Of Sheba","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2987804,36.2112472]},"properties":{"stars":"2.5","name":"Royal Kabob Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2690556,36.1437655]},"properties":{"stars":"4","name":"Kan Pai Sushi","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2068006,35.9952905]},"properties":{"stars":"3.5","name":"Barcelona Tapas Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.143369,36.17014405]},"properties":{"stars":"3.5","name":"Chicago Brewing Co.","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1546169,36.1439559]},"properties":{"stars":"2.5","name":"McDonald's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.197906,36.125908]},"properties":{"stars":"3.5","name":"Yagyu Yakiniku","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.305973,36.191844]},"properties":{"stars":"1.5","name":"McDonalds","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1629623,36.2388918]},"properties":{"stars":"4","name":"Boardhouse Serious Sandwiches","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1533438,36.2392965]},"properties":{"stars":"3.5","name":"Teriyaki Madness","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1164484,36.27869075]},"properties":{"stars":"4","name":"Carl's Jr.","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.119349,36.084465]},"properties":{"stars":"3.5","name":"Carl's Jr.","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.280423,36.055891]},"properties":{"stars":"4","name":"Carl's Jr.","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2448385,36.172541]},"properties":{"stars":"4","name":"Carl's Jr.","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.0626614,36.1737819]},"properties":{"stars":"3.5","name":"Carl's Jr.","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.137318,36.1301119]},"properties":{"stars":"4","name":"Carl's Jr.","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.065233,36.146396]},"properties":{"stars":"2.5","name":"Carl's Jr","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2956618,36.14455713]},"properties":{"stars":"4","name":"Carl's Jr.","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1373615,36.1084263]},"properties":{"stars":"4","name":"High Roller Deli","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2435768,36.2179898]},"properties":{"stars":"2","name":"Carl's Jr.","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.207124,36.10035]},"properties":{"stars":"2","name":"Carl's Jr.","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2790052,36.12619775]},"properties":{"stars":"4.5","name":"Carl's Jr.","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2083645,36.099494]},"properties":{"stars":"2","name":"China Star Buffet","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2022722,36.1057107]},"properties":{"stars":"3","name":"Sbarro","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1735894,36.10711231]},"properties":{"stars":"4","name":"MOzen Bistro","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1727646,36.1039997]},"properties":{"stars":"3.5","name":"Hard Rock Cafe","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1727967,36.1121766]},"properties":{"stars":"2.5","name":"Nathan's Famous","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.0905562,36.1163431]},"properties":{"stars":"3","name":"The Saucy Tomato","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1910187,36.0404249]},"properties":{"stars":"4.5","name":"In-N-Out Burger","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.13865,36.169148]},"properties":{"stars":"3.5","name":"The Flame Steakhouse","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1522116,36.2380013]},"properties":{"stars":"4","name":"EllaEm's Soul Food","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1966896,36.1722752]},"properties":{"stars":"4.5","name":"Auntie Anne's Soft Pretzel","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.203097,36.157919]},"properties":{"stars":"2.5","name":"McDonald's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.0049216,36.0875587]},"properties":{"stars":"2.5","name":"Roberto's Taco Shop","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.278353,36.108418]},"properties":{"stars":"4","name":"Ciao Ciao Pizza","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.175836,36.095563]},"properties":{"stars":"2.5","name":"Company Kitchen and Pub House","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1423943,36.1421289]},"properties":{"stars":"4","name":"Namaste Indian Cuisine","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1185519,36.0169498]},"properties":{"stars":"3.5","name":"Pizzeria Enzo Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.3011167,36.09948111]},"properties":{"stars":"4","name":"Corner Thai Kitchen","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.172532,36.118221]},"properties":{"stars":"3","name":"Ginseng 3","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.173336,36.119556]},"properties":{"stars":"2.5","name":"Sea Harbour","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1569185,36.1010293]},"properties":{"stars":"4","name":"Grind Burger Bar and Lounge","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1517943,36.1526639]},"properties":{"stars":"4","name":"Albo Pizza","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.136831,36.105583]},"properties":{"stars":"3.5","name":"Boardhouse Serious Sandwiches","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.109284,36.1300968]},"properties":{"stars":"1.5","name":"McDonald's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2774591,36.0541671]},"properties":{"stars":"4","name":"Glazier's Food Marketplace","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.3011309,36.1460967]},"properties":{"stars":"2.5","name":"Jollibee","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.16338,36.135689]},"properties":{"stars":"2.5","name":"Mcdonald's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2076699,36.1527015]},"properties":{"stars":"2.5","name":"Jumbo Super Buffet","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1722956,36.0998842]},"properties":{"stars":"3.5","name":"Legends Steak and Seafood","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1722956,36.0998842]},"properties":{"stars":"2.5","name":"Havana Go Go","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2800882,36.29887519]},"properties":{"stars":"4","name":"Leticia's Mexican Cocina","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2735809,36.12528259]},"properties":{"stars":"4","name":"MIX 94.1's Bite Of Las Vegas","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.225189,36.1266465]},"properties":{"stars":"3.5","name":"E-Jo Korean Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.278458,36.134956]},"properties":{"stars":"4","name":"Mad Pita Express","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.13913,36.168245]},"properties":{"stars":"3.5","name":"Mamita's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1908324,36.1445244]},"properties":{"stars":"4.5","name":"Taqueria Los Parados","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.089966,36.020555]},"properties":{"stars":"4.5","name":"Capriotti's Sandwich Shop","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2799856,36.2984179]},"properties":{"stars":"3.5","name":"Streets of New York","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.223372,36.0620363]},"properties":{"stars":"3.5","name":"Port of Subs","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1727235,36.1054442]},"properties":{"stars":"3.5","name":"McDonald's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1912658,36.1265135]},"properties":{"stars":"2.5","name":"Cajun Crawfish","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.211622,36.171184]},"properties":{"stars":"4","name":"Tropical Smoothie Cafe","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1951173,36.2395594]},"properties":{"stars":"3.5","name":"Bambinis Pizzeria & Rotisserie","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.3134441,36.10050402]},"properties":{"stars":"4","name":"China A GoGo","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.274574,36.130313]},"properties":{"stars":"4","name":"Porchlight Grille","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.225806,36.055251]},"properties":{"stars":"3.5","name":"Ambrosia Caf<U+00E9>","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1735405,36.10951566]},"properties":{"stars":"3","name":"Pink's Hot Dogs","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.136389,36.175]},"properties":{"stars":"3","name":"The Bagel Cafe","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.117046,36.017362]},"properties":{"stars":"3.5","name":"Griddlecakes","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1725257,36.11129865]},"properties":{"stars":"3","name":"Cabo Wabo Cantina","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1138313,36.24064501]},"properties":{"stars":"3.5","name":"Famous Dave's BBQ","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.146372,36.124423]},"properties":{"stars":"2.5","name":"Villa Fresh Italian Kitchen","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.225012,36.1272875]},"properties":{"stars":"4","name":"Wendy's Noodle Cafe","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.307356,36.175667]},"properties":{"stars":"4.5","name":"TPC Grille","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.23255,36.2396982]},"properties":{"stars":"4","name":"Super Burrito","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1583024,36.1586702]},"properties":{"stars":"4","name":"Lola's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2681693,36.0202523]},"properties":{"stars":"3.5","name":"Rounders","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1659163,36.1275008]},"properties":{"stars":"3.5","name":"Pizza Place","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.174634,36.102099]},"properties":{"stars":"3","name":"The Sporting House Bar & Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.206374,36.279206]},"properties":{"stars":"2","name":"Goldilocks Bake Shop","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.0260778,36.2796304]},"properties":{"stars":"2.5","name":"Iron Skillet","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.241662,36.189324]},"properties":{"stars":"4.5","name":"Cugino's Pizzeria","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.180398,36.29306968]},"properties":{"stars":"4","name":"MRKT","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2877003,36.2777245]},"properties":{"stars":"4","name":"Waffles Cafe","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1898638,36.1957624]},"properties":{"stars":"1.5","name":"Coco's Bakery & Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.17677,36.104605]},"properties":{"stars":"3","name":"d.Vino","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.181823,36.2912318]},"properties":{"stars":"3.5","name":"The Original Pancake House","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.173179,36.108999]},"properties":{"stars":"3","name":"Beso Steakhouse","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1743503,36.10620487]},"properties":{"stars":"4","name":"Mandarin Oriental Tea Lounge","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1378386,36.1162576]},"properties":{"stars":"4","name":"Kabuki Dining Bar","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.144266,36.1706341]},"properties":{"stars":"4","name":"Chart House","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2079863,36.0944424]},"properties":{"stars":"3.5","name":"Dad's Grilled Cheese","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1193117,36.01596967]},"properties":{"stars":"4","name":"Grimaldi's Pizzeria","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.167501,36.099809]},"properties":{"stars":"3","name":"Mad Onion","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.120315,36.0574572]},"properties":{"stars":"3","name":"Einstein Bros Bagels","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.174227,36.121618]},"properties":{"stars":"3","name":"BB King's Blues Club","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.146372,36.124423]},"properties":{"stars":"3.5","name":"Silk Road","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2792788,36.05299965]},"properties":{"stars":"3.5","name":"Benjarong Authentic Thai Cuisine","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.175769,36.10845843]},"properties":{"stars":"4","name":"Julian Serrano","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1763677,36.0680069]},"properties":{"stars":"3.5","name":"Cana Latin Kitchen & Bar","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2068724,36.2783624]},"properties":{"stars":"3","name":"Chili's Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1982229,36.2390184]},"properties":{"stars":"3","name":"Denny's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1711298,36.128561]},"properties":{"stars":"3","name":"Union Restaurant & Lounge","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.280642,36.1988527]},"properties":{"stars":"4","name":"Fuji San","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1376144,36.1261213]},"properties":{"stars":"3.5","name":"Kusina Ni Lorraine","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.16522,36.099004]},"properties":{"stars":"4","name":"Coco's Family Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1770871,36.10676312]},"properties":{"stars":"4","name":"Blossom","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1711298,36.128561]},"properties":{"stars":"4.5","name":"Amore Patisserie","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.191825,36.144269]},"properties":{"stars":"4","name":"Herbs & Rye","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1711298,36.128561]},"properties":{"stars":"3.5","name":"Sweet Chill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2731257,36.0668593]},"properties":{"stars":"4.5","name":"Baguette Cafe","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1711298,36.128561]},"properties":{"stars":"3","name":"Skybox Sports Bar & Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.171338,36.121239]},"properties":{"stars":"2.5","name":"Wasabi Jane's Rice & Noodle Works","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2428492,36.2490797]},"properties":{"stars":"4.5","name":"Sushi Avenue 2","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.223622,36.188807]},"properties":{"stars":"4","name":"La Reina Mexican Food & Bakery","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.171418,36.121222]},"properties":{"stars":"2.5","name":"Johnny Rockets","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1700211,36.12539669]},"properties":{"stars":"4","name":"India Masala","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2792274,36.0521807]},"properties":{"stars":"3.5","name":"808 Sushi","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.153742,36.015643]},"properties":{"stars":"3","name":"Rosati's Pizza","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.242815,36.254519]},"properties":{"stars":"4","name":"Varadero Cuban Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.206901,36.072508]},"properties":{"stars":"4","name":"Not Your Average Deli","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.3023396,36.2067953]},"properties":{"stars":"3.5","name":"New York Chinese Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.266568,36.021245]},"properties":{"stars":"3.5","name":"Don Tortaco","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.240864,36.1265659]},"properties":{"stars":"3.5","name":"Pho Village","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1167655,36.0997192]},"properties":{"stars":"4","name":"Las Gorditas","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2984943,36.06892544]},"properties":{"stars":"2.5","name":"Pumi Express","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.053995,36.241805]},"properties":{"stars":"4","name":"Blueberry Hill Family Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.25354,36.1433]},"properties":{"stars":"2.5","name":"Sofia's Pizza","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.304218,36.100457]},"properties":{"stars":"3","name":"Sushi Banzai","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.255162,36.066304]},"properties":{"stars":"4","name":"Capriotti's Sandwich Shop","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2411327,36.1151835]},"properties":{"stars":"3.5","name":"Thai Original BBQ Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1712445,36.11788299]},"properties":{"stars":"4","name":"Hash House A Go Go","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.3163394,36.2184026]},"properties":{"stars":"3.5","name":"Tokyo Sushi House","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2014914,36.10198284]},"properties":{"stars":"4","name":"Canal Street","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1740551,36.10792411]},"properties":{"stars":"4.5","name":"Mastro's Ocean Club","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2096005,36.1587612]},"properties":{"stars":"4","name":"Afandi Restaurant and Market","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2512854,36.1433538]},"properties":{"stars":"3","name":"Momoyama Sushi","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.085027,36.135765]},"properties":{"stars":"3.5","name":"Metro Pizza","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2965319,36.102015]},"properties":{"stars":"4","name":"Sagos Baja Tavern & Lounge","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1803659,36.2588182]},"properties":{"stars":"3.5","name":"Winchell's Pub & Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1163468,36.2408161]},"properties":{"stars":"3","name":"Winchell's Pub & Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.0813235,36.2246517]},"properties":{"stars":"4","name":"Hitchin Post Saloon & Steakhouse","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2103554,36.1585842]},"properties":{"stars":"3","name":"Jalapeno Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.242545,36.098582]},"properties":{"stars":"4","name":"Carmine's Pizza Kitchen","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1869825,36.1153361]},"properties":{"stars":"3.5","name":"Martorano's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.204361,36.279336]},"properties":{"stars":"3.5","name":"Lulu Hawaiian Bbq","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1359253,36.11814117]},"properties":{"stars":"4","name":"Red Ribbon","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.170438,36.110035]},"properties":{"stars":"2.5","name":"Planet Hollywood","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.225314,36.18817]},"properties":{"stars":"2.5","name":"Popeyes Chicken & Biscuits","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2061218,36.194201]},"properties":{"stars":"4","name":"Five Star Tavern","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1193584,36.0808431]},"properties":{"stars":"3.5","name":"Del Taco","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2422955,36.192231]},"properties":{"stars":"5","name":"Bonzai Bob's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.0622374,36.1741602]},"properties":{"stars":"4","name":"Miles Bake Shop & Hawaiian Foods","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.077736,36.2417354]},"properties":{"stars":"2.5","name":"Port of Subs","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.279682,36.124942]},"properties":{"stars":"2.5","name":"Sicily's Pizza","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.3238117,36.2184532]},"properties":{"stars":"3","name":"Subway","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.205566,36.194808]},"properties":{"stars":"4.5","name":"Subway","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.040472,36.195696]},"properties":{"stars":"4","name":"La Flor De Michoacan Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1209361,36.1442156]},"properties":{"stars":"2","name":"Pizza Patron","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1247257,36.0206422]},"properties":{"stars":"3.5","name":"L & L Hawaiian Barbecue","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.227134,36.0999899]},"properties":{"stars":"3.5","name":"Laduca's New York Italian Deli","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.097806,36.215043]},"properties":{"stars":"3","name":"Sofia's Pizza","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1354528,36.1444737]},"properties":{"stars":"4.5","name":"Lj Bar & Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2830925,36.1988149]},"properties":{"stars":"3.5","name":"Zaba's Mexican Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.150514,36.1966899]},"properties":{"stars":"4.5","name":"Westside Bistro","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2084223,36.0946503]},"properties":{"stars":"2.5","name":"Pizza Hut","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.119543,36.27573062]},"properties":{"stars":"4","name":"Subway","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2523959,36.0625875]},"properties":{"stars":"3","name":"Chili's Grill & Bar","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.0664849,36.1143587]},"properties":{"stars":"3","name":"McDonalds","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1900328,35.9836861]},"properties":{"stars":"3","name":"Capriotti's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2427746,36.0627978]},"properties":{"stars":"3","name":"Panda Express","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2056724,36.1581103]},"properties":{"stars":"3","name":"Panda Express","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.154172,36.258925]},"properties":{"stars":"4","name":"Sonic","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.206889,36.072516]},"properties":{"stars":"4.5","name":"Phat Phrank's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2897277,36.16409898]},"properties":{"stars":"4","name":"Grimaldi's Pizzeria","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2065226,36.2770944]},"properties":{"stars":"3","name":"Goldfinger's Bar & Grille","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1691493,36.0549288]},"properties":{"stars":"3.5","name":"Chicken Now","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1163972,36.0559736]},"properties":{"stars":"2","name":"Roberto's Taco Shop","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1203369,36.2761369]},"properties":{"stars":"3.5","name":"PT's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.207495,36.08535]},"properties":{"stars":"3","name":"Angelina's Pizzeria","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2428913,36.2490667]},"properties":{"stars":"3.5","name":"Wingstop","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.242873,36.249119]},"properties":{"stars":"3","name":"Johnny Rockets","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.191485,36.204648]},"properties":{"stars":"2.5","name":"Cabo Mexican Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2510793,36.2393882]},"properties":{"stars":"3.5","name":"Popeyes","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1722435,36.0142747]},"properties":{"stars":"3.5","name":"Del Taco","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2058108,36.1749298]},"properties":{"stars":"3.5","name":"Red Brick Pizza","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2882246,36.2781865]},"properties":{"stars":"2.5","name":"Domino's Pizza","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.093923,36.072148]},"properties":{"stars":"4","name":"El Panzon Tacos Y Tortas","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2068052,36.2774476]},"properties":{"stars":"4","name":"Salad Creations","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.15736,36.168754]},"properties":{"stars":"3","name":"Espresso King Kafe 2","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2069002,36.2750387]},"properties":{"stars":"4","name":"Super Taco Mexican Food","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.281564,36.2187749]},"properties":{"stars":"2","name":"Mack Bros Bakery Cafe","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2251758,36.238185]},"properties":{"stars":"2.5","name":"Panda Express","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2066271,36.0332529]},"properties":{"stars":"2.5","name":"Subway","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2542311,36.2736777]},"properties":{"stars":"3.5","name":"Timbers - Azure","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.3002591,36.0996599]},"properties":{"stars":"3","name":"Foothills Lodge","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.298426,36.0692189]},"properties":{"stars":"3","name":"Subway","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2979685,36.1250539]},"properties":{"stars":"3.5","name":"New York Chinese Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.0623932,36.222454]},"properties":{"stars":"4","name":"Roberto's Taco Shop","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.14393,36.27666]},"properties":{"stars":"3","name":"Taco Bell","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2004648,36.15901999]},"properties":{"stars":"3","name":"CiCi's Pizza","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.223389,36.126019]},"properties":{"stars":"4.5","name":"Aqua Restaurant and Lounge","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.230569,36.159674]},"properties":{"stars":"3.5","name":"Tacos Los Toritos","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1462954,36.2393899]},"properties":{"stars":"2.5","name":"Taste of Paradise","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2091854,36.2467584]},"properties":{"stars":"4","name":"Dragon Bowl","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2428468,36.0767759]},"properties":{"stars":"3.5","name":"Subway","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.301434,36.099711]},"properties":{"stars":"3.5","name":"Carl's Jr","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.061494,36.175354]},"properties":{"stars":"3.5","name":"Church's Chicken","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.108235,36.130393]},"properties":{"stars":"4.5","name":"El Guanaco Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1247219,36.0207475]},"properties":{"stars":"3.5","name":"Wienerschnitzel","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2227297,36.08081978]},"properties":{"stars":"3.5","name":"Beso","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2251714,36.2570768]},"properties":{"stars":"3","name":"Robertos Taco Shop","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1432435,36.2763339]},"properties":{"stars":"1.5","name":"KFC","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.197258,36.1725319]},"properties":{"stars":"3","name":"Chicken Now","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.029625,36.097408]},"properties":{"stars":"4","name":"Alexander's Pizza","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.314902,36.086515]},"properties":{"stars":"4","name":"PT's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.328162,36.221721]},"properties":{"stars":"3.5","name":"Timbers - Novat","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.0995169,36.1008539]},"properties":{"stars":"4","name":"Antojos Df","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.270352,36.271468]},"properties":{"stars":"4","name":"McDonald's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1173165,36.2752639]},"properties":{"stars":"3","name":"Jack in the Box","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.178994,36.239289]},"properties":{"stars":"3.5","name":"Wingstop","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.24364,36.071844]},"properties":{"stars":"3.5","name":"Amigos Tacos","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2979786,36.0772993]},"properties":{"stars":"3.5","name":"Empire Bagels","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.242542,36.152795]},"properties":{"stars":"4","name":"Rinconcito Guanaco","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2491012,36.0647343]},"properties":{"stars":"3.5","name":"McDonald's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2432315,36.04334]},"properties":{"stars":"2.5","name":"Jack in the Box","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1498465,36.2391229]},"properties":{"stars":"2.5","name":"Popeye's Chicken & Biscuit","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.136169,36.011942]},"properties":{"stars":"4","name":"Yanni's Gyros","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2519907,36.06363709]},"properties":{"stars":"3.5","name":"Chipotle Mexican Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.19914,36.03648]},"properties":{"stars":"2","name":"Taco Bell","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.242913,36.218691]},"properties":{"stars":"3","name":"AA Hawaiian Bbq","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1193523,36.020712]},"properties":{"stars":"4","name":"Rubio's Fresh Mexican Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2881526,36.2779396]},"properties":{"stars":"1.5","name":"Quiznos","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2412101,36.2029769]},"properties":{"stars":"4","name":"San Salvador Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.3151684,36.2910319]},"properties":{"stars":"4","name":"Subway","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2330307,36.1596183]},"properties":{"stars":"3","name":"Tropical Smoothie Cafe","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2428612,36.072377]},"properties":{"stars":"2.5","name":"Port of Subs","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.296681,36.219354]},"properties":{"stars":"2.5","name":"Subway","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.0995169,36.1008539]},"properties":{"stars":"4","name":"Blue Dogs Pub","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2290633,36.099828]},"properties":{"stars":"2.5","name":"Subway","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.287454,36.159541]},"properties":{"stars":"3.5","name":"Baja Fresh Mexican Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.256172,36.264155]},"properties":{"stars":"3.5","name":"Panda Express","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1431971,36.16582108]},"properties":{"stars":"2","name":"Panda Express","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.0619887,36.1665949]},"properties":{"stars":"4.5","name":"Wingstop","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.0693311,36.1163187]},"properties":{"stars":"3.5","name":"Pepe's Tacos 3","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2427084,36.2153551]},"properties":{"stars":"3.5","name":"Cici's Pizza","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1259564,36.1588445]},"properties":{"stars":"3","name":"Olocuilta Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.07741,36.100001]},"properties":{"stars":"4","name":"Mariscos Vallarta","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1564851,36.1031106]},"properties":{"stars":"2.5","name":"Subway","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.0876811,36.07063605]},"properties":{"stars":"4","name":"Rush Hour Tavern","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2995489,36.1157997]},"properties":{"stars":"3.5","name":"Sammy's Woodfired Pizza and Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1191229,36.2402332]},"properties":{"stars":"3","name":"Panda Express","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.241693,36.064115]},"properties":{"stars":"4","name":"Eddie D's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2794069,36.1238325]},"properties":{"stars":"4","name":"Burrito's Juarez","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.237825,36.11492]},"properties":{"stars":"3.5","name":"Texas Bbq Cafe","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1433842,36.1698382]},"properties":{"stars":"2","name":"Subway","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.288576,36.288938]},"properties":{"stars":"3","name":"Timbers - Durango","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.0317472,36.0835722]},"properties":{"stars":"3","name":"Popeyes Chicken","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.0317472,36.0835722]},"properties":{"stars":"3","name":"Subway","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2066449,36.2618043]},"properties":{"stars":"3.5","name":"Marco's Pizza ","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.08093,36.240966]},"properties":{"stars":"2.5","name":"Juke Joint Bar & Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.146372,36.124423]},"properties":{"stars":"4.5","name":"Island Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.156241,36.167659]},"properties":{"stars":"4","name":"Mundo Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2084771,36.0839728]},"properties":{"stars":"4","name":"Farmer Boys","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1977794,36.0372403]},"properties":{"stars":"3.5","name":"Subway","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1157352,36.1718896]},"properties":{"stars":"4.5","name":"Los Huicholes","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.079768,36.15748]},"properties":{"stars":"4","name":"Panda Express","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1785522,36.2878295]},"properties":{"stars":"2.5","name":"Domino's Pizza","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1423943,36.1421289]},"properties":{"stars":"4","name":"Ma Dang","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2876391,36.2900356]},"properties":{"stars":"2.5","name":"Port Of Subs","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2068752,36.2799228]},"properties":{"stars":"2.5","name":"McDonald's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2655165,36.2631315]},"properties":{"stars":"3.5","name":"Onyx Restaurant At  Bogey's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.224332,36.060423]},"properties":{"stars":"3.5","name":"Roberto's Taco Shop","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2665268,36.272939]},"properties":{"stars":"2.5","name":"Pacific Buffet","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.06516,36.12974]},"properties":{"stars":"3.5","name":"Taco Bell","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.082813,36.1590223]},"properties":{"stars":"4","name":"El Birotazo","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.178241,36.2874941]},"properties":{"stars":"2.5","name":"Arby's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2672312,36.0206629]},"properties":{"stars":"4","name":"Pizza Hut","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2042283,36.2614384]},"properties":{"stars":"3.5","name":"Jack in the Box","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2049958,36.2094607]},"properties":{"stars":"2.5","name":"Denny's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.204305,35.999183]},"properties":{"stars":"3.5","name":"Roberto's Taco Shop","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.0250163,36.1953433]},"properties":{"stars":"3.5","name":"Viva El Taco","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2060499,36.2796007]},"properties":{"stars":"4.5","name":"Port of Subs","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.17494,36.07643]},"properties":{"stars":"4.5","name":"Nestle Tollhouse Cafe","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.243177,36.061687]},"properties":{"stars":"2","name":"Popeye's Chicken & Biscuits","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2111012,36.1587715]},"properties":{"stars":"3.5","name":"Heidi's Brooklyn Deli","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.3036,36.2811]},"properties":{"stars":"3.5","name":"China One","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.180898,36.29212675]},"properties":{"stars":"3","name":"Johnny Rockets","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2704078,36.0198631]},"properties":{"stars":"3.5","name":"Subway","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2079082,36.2769088]},"properties":{"stars":"3.5","name":"Panda Express","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1729418,36.1183949]},"properties":{"stars":"3.5","name":"Lasalsa Cantina Mexican Fare","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.181957,36.237905]},"properties":{"stars":"3.5","name":"China Wok","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.171549,36.055269]},"properties":{"stars":"3.5","name":"La Cocina","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1797608,36.27502084]},"properties":{"stars":"4","name":"Five Star Tavern","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1017728,36.1154286]},"properties":{"stars":"3.5","name":"Sonic Drive-In","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1104392,36.2688537]},"properties":{"stars":"3.5","name":"Mi Familia Mexican Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.0623508,36.1678477]},"properties":{"stars":"4.5","name":"Capriotti's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.146372,36.124423]},"properties":{"stars":"3","name":"Nathan's Famous","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.184999,36.041673]},"properties":{"stars":"3","name":"Johnny Rockets","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.144668,36.17062]},"properties":{"stars":"4.5","name":"Vic & Anthony's Steakhouse","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.133138,36.2832]},"properties":{"stars":"3","name":"Morrissey's Irish Pub","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1721327,36.0553457]},"properties":{"stars":"3","name":"Quiznos Sub","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.171551,36.053964]},"properties":{"stars":"3","name":"Panda Express","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.0681141,36.1742667]},"properties":{"stars":"3.5","name":"Casa Tlaquepaque","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.282161,36.302559]},"properties":{"stars":"2.5","name":"Little Caesars Pizza","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1193695,36.08534241]},"properties":{"stars":"2.5","name":"Sbarro Pizza","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2923366,36.1584097]},"properties":{"stars":"3.5","name":"Roberto's Taco Shop","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.206948,36.072137]},"properties":{"stars":"3","name":"Popeye's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.279878,36.059982]},"properties":{"stars":"3","name":"Jack in the Box","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.0620135,36.168513]},"properties":{"stars":"3.5","name":"Cici's Pizza","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2422325,36.2024961]},"properties":{"stars":"3.5","name":"Las Gorditas Los Pinguinos","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.31953,36.05798]},"properties":{"stars":"3.5","name":"Pizza Hut","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1602533,36.2180975]},"properties":{"stars":"3.5","name":"Robertos Taco Shop","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.0326458,36.08358524]},"properties":{"stars":"1.5","name":"Pizza Hut","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2053944,36.1261436]},"properties":{"stars":"3","name":"Woo Che Asian Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2848169,36.2910556]},"properties":{"stars":"4","name":"Robertos Taco Shop","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.206521,36.275002]},"properties":{"stars":"3","name":"Sonic Drive-In","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1799033,36.2747934]},"properties":{"stars":"3.5","name":"Los Burritos","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1730081,36.1282071]},"properties":{"stars":"2.5","name":"Ichiban","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.286422,36.220388]},"properties":{"stars":"4","name":"Roberto's Taco Shop","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1190076,36.2386502]},"properties":{"stars":"3","name":"Vino's Ristorante & Deli","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1190908,36.0211192]},"properties":{"stars":"4","name":"Sin City Sushi","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1750617,36.10767672]},"properties":{"stars":"4","name":"Wolfgang Puck Pizzeria & Cucina","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.136389,36.175]},"properties":{"stars":"3.5","name":"Smokilicious Bar-B-Q","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.176019,36.094254]},"properties":{"stars":"3.5","name":"Hussong's Cantina","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2085076,36.11731625]},"properties":{"stars":"3.5","name":"Shalimar Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.243814,36.0616932]},"properties":{"stars":"3.5","name":"Qdoba","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1446238,36.2755528]},"properties":{"stars":"4","name":"Roberto's Taco Shop","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.144873,36.127192]},"properties":{"stars":"3.5","name":"Dukem Ethiopian Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2812874,36.05581682]},"properties":{"stars":"3.5","name":"Mac Shack Spring Valley","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.175557,36.098909]},"properties":{"stars":"2","name":"McDonald's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1725943,36.099777]},"properties":{"stars":"3.5","name":"Bacio","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.242545,36.098582]},"properties":{"stars":"3","name":"Harold's Chicken & Fish","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1502912,36.0847518]},"properties":{"stars":"1.5","name":"Wolfgang Puck Express","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.173583,36.1088082]},"properties":{"stars":"3.5","name":"Todd English P.U.B.","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.172435,36.1181689]},"properties":{"stars":"2.5","name":"Quesadilla","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1502912,36.0847518]},"properties":{"stars":"2.5","name":"Baja Fresh","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2079863,36.0944424]},"properties":{"stars":"3","name":"Shin Yakitori House","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.134212,36.071228]},"properties":{"stars":"3.5","name":"Flame Kabob","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.152222,36.1369156]},"properties":{"stars":"4","name":"Garden of the Dragon","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1717649,36.12472674]},"properties":{"stars":"2.5","name":"Pho at The Coffee Shop","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1548748,36.1221933]},"properties":{"stars":"2.5","name":"McDonald's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2436769,36.1231056]},"properties":{"stars":"3.5","name":"IHOP","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2627634,36.1432711]},"properties":{"stars":"3.5","name":"Levy's Bagels & Deli","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1462365,36.17121662]},"properties":{"stars":"4","name":"Du-Par's Restaurant and Bakery","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.259312,36.196218]},"properties":{"stars":"3.5","name":"Smashburger","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1534203,36.1658902]},"properties":{"stars":"4","name":"Slidin' Thru","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.172998,36.128213]},"properties":{"stars":"3.5","name":"El Segundo Sol","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.136561,36.104474]},"properties":{"stars":"3.5","name":"Cafe Rio","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.298266,36.0789703]},"properties":{"stars":"3.5","name":"Rambo's Kitchen","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.160858,36.114765]},"properties":{"stars":"4","name":"Rising Sun","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.256656,36.265008]},"properties":{"stars":"4","name":"Raising Cane's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.0622366,36.1740407]},"properties":{"stars":"4","name":"Thai Cuisine","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1910858,36.19734743]},"properties":{"stars":"2.5","name":"Texas Star Oyster Bar","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1726202,36.1183787]},"properties":{"stars":"3.5","name":"Big Hurt's Snack Shack","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.144266,36.1706341]},"properties":{"stars":"2.5","name":"Golden Nugget Buffet","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.243289,36.058757]},"properties":{"stars":"4","name":"Raising Cane's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.152728,36.159147]},"properties":{"stars":"3.5","name":"Bar + Bistro @ the Arts Factory","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.207463,36.071196]},"properties":{"stars":"3","name":"Chicken Bonz","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1698896,36.10278945]},"properties":{"stars":"3","name":"Bonanno's New York Pizzeria","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.116662,36.266706]},"properties":{"stars":"4","name":"Hawaiian Barbeque","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.082339,36.1307842]},"properties":{"stars":"2.5","name":"Checkers","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.298295,36.0771123]},"properties":{"stars":"4.5","name":"DW Bistro","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.301818,36.1449499]},"properties":{"stars":"3.5","name":"Siena Italian Authentic Trattoria and Deli","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1269965,36.1001186]},"properties":{"stars":"4","name":"Badger Cafe","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.241332,36.055414]},"properties":{"stars":"3.5","name":"Bona Pizza","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1538688,36.10901626]},"properties":{"stars":"3.5","name":"Johnny Smalls","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2804655,36.2994759]},"properties":{"stars":"3","name":"Papa John's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1638136,36.13694673]},"properties":{"stars":"2.5","name":"Rock & Rita's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1449309,36.1220442]},"properties":{"stars":"3","name":"Delicious & Best Chinese Food","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2874864,36.2896115]},"properties":{"stars":"3","name":"El Pollo Loco","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2865776,36.2777317]},"properties":{"stars":"4","name":"North End Pizza","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.161534,36.11292]},"properties":{"stars":"4","name":"Tuscany Gardens","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1726202,36.1183787]},"properties":{"stars":"4","name":"Buffet of Buffets","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1010795,36.0726428]},"properties":{"stars":"3","name":"Robertos Taco Shop","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1714831,36.0356261]},"properties":{"stars":"3.5","name":"Taters n' Salads","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.134842,36.2840296]},"properties":{"stars":"4.5","name":"In-N-Out Burger","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1415145,36.1109405]},"properties":{"stars":"2.5","name":"University Diner","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.153225,36.04279791]},"properties":{"stars":"4","name":"Bachi Burger","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1801327,36.2755303]},"properties":{"stars":"3.5","name":"Hungry Howies","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1776744,36.10675956]},"properties":{"stars":"3","name":"Breeze Cafe","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.151508,36.238255]},"properties":{"stars":"4","name":"808 Hawaii Mixed Plate","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2437389,36.04714719]},"properties":{"stars":"4","name":"Soyo Korean Barstaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.139599,36.169116]},"properties":{"stars":"4","name":"The Beat Coffeehouse","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.174415,36.10969946]},"properties":{"stars":"4","name":"STK","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.136178,36.1051599]},"properties":{"stars":"4.5","name":"The Lunch Box","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1533426,36.0765176]},"properties":{"stars":"4.5","name":"Peas & Carrots","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.135144,36.0129039]},"properties":{"stars":"2","name":"McDonald's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1732654,36.12769353]},"properties":{"stars":"2.5","name":"Johnny Rockets","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1768402,36.0687779]},"properties":{"stars":"2.5","name":"Nu Sanctuary Lounge","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2974352,36.089564]},"properties":{"stars":"4","name":"Surang's Thai Kitchen","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2632794,36.27183834]},"properties":{"stars":"3.5","name":"North Forty Saloon and BBQ","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.306784,36.112015]},"properties":{"stars":"2.5","name":"San Gennaro Feast","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.31953,36.05798]},"properties":{"stars":"3.5","name":"Straight Up Gaming & Martini Lounge","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2244727,36.0478554]},"properties":{"stars":"4.5","name":"Rice Trax Teriyaki Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.241754,36.199364]},"properties":{"stars":"3.5","name":"Which Wich","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1778316,36.0930659]},"properties":{"stars":"4.5","name":"Gary Canter's Delicatessen - Mandalay Bay","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.3334327,36.1591166]},"properties":{"stars":"3.5","name":"L & L Hawaiian Barbecue","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2970706,36.08382209]},"properties":{"stars":"3.5","name":"Tony's Mexican Food","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.136056,36.012764]},"properties":{"stars":"3.5","name":"Match","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1758965,36.01154119]},"properties":{"stars":"3","name":"Del Mar Deli","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.242389,36.112856]},"properties":{"stars":"4","name":"Forte European Tapas Bar and Bistro","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.173115,36.0166929]},"properties":{"stars":"3.5","name":"Double Play Sports Bar","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2793938,36.1979578]},"properties":{"stars":"3.5","name":"The Sushi","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.261682,36.1967]},"properties":{"stars":"2.5","name":"McDonalds","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2983515,36.11521621]},"properties":{"stars":"3.5","name":"Sweet Tomatoes","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1659216,36.1268103]},"properties":{"stars":"4","name":"Encore Beach Club","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.177901,36.1171675]},"properties":{"stars":"3","name":"Munchbar","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1370841,36.1066864]},"properties":{"stars":"3.5","name":"Teriyaki Time","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.297066,36.144766]},"properties":{"stars":"4","name":"Chipotle","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.282548,36.1735789]},"properties":{"stars":"4","name":"The Restaurant at Angel Park","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1366586,36.1457682]},"properties":{"stars":"2.5","name":"Carmine's Pizza Kitchen","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.3037626,36.1931903]},"properties":{"stars":"3.5","name":"Chronic Tacos","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1207443,36.2185745]},"properties":{"stars":"3.5","name":"Lucy's Bar & Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1533034,36.0121499]},"properties":{"stars":"2.5","name":"C R Buns","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.3006961,36.1455794]},"properties":{"stars":"3.5","name":"Aristocrat BBQ & Noodle House","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2896297,36.16418023]},"properties":{"stars":"4","name":"Sambalatte Torrefazione","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2659777,36.1988542]},"properties":{"stars":"3.5","name":"Hanshiktaco","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1728464,36.13077937]},"properties":{"stars":"4","name":"Curbside Cafe","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.282161,36.302559]},"properties":{"stars":"4","name":"Mom's Good Eats","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.3343868,36.15679595]},"properties":{"stars":"4","name":"Yard House","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.206417,36.179939]},"properties":{"stars":"4.5","name":"KoMex Fusion","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2667505,36.27077549]},"properties":{"stars":"3.5","name":"L&L Hawaiian Barbecue","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2070725,36.261503]},"properties":{"stars":"3.5","name":"Hogs Heaven Barbecue","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2355,36.3007]},"properties":{"stars":"3","name":"Cafe Rio","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2876795,36.29099607]},"properties":{"stars":"3.5","name":"Chipotle","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2991358,36.1445054]},"properties":{"stars":"3","name":"Pyaar India Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1914209,36.12616201]},"properties":{"stars":"3.5","name":"Mr. Sandwich","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.30696,36.099561]},"properties":{"stars":"3.5","name":"Off the Strip Just Real Food","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1505356,36.1054255]},"properties":{"stars":"3.5","name":"The Black Door","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.298085,36.14342]},"properties":{"stars":"3.5","name":"Shawarma Vegas","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2627511,36.14325986]},"properties":{"stars":"4","name":"Swish","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1920337,36.1261443]},"properties":{"stars":"3","name":"Lee's Sandwiches","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2812173,36.05597308]},"properties":{"stars":"3.5","name":"Robertos Taco Shop","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2096534,36.1270432]},"properties":{"stars":"4","name":"Monta Ramen","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2975745,36.0977777]},"properties":{"stars":"2.5","name":"Tropical Smoothie Cafe","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1355153,36.1146847]},"properties":{"stars":"4","name":"Baja Fresh","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2960155,36.1438104]},"properties":{"stars":"3.5","name":"Smashburger","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2067556,36.1566746]},"properties":{"stars":"3.5","name":"PT's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1444854,36.1663944]},"properties":{"stars":"3","name":"Quiznos","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.198971,36.130804]},"properties":{"stars":"3.5","name":"Naked City Pizza on Arville","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1150025,36.1308785]},"properties":{"stars":"4","name":"Stick E Rice","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1402898,36.1711573]},"properties":{"stars":"3.5","name":"Golden Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.197924,36.127175]},"properties":{"stars":"4","name":"Kinh Do","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.3006961,36.1455794]},"properties":{"stars":"2.5","name":"Tropical Smoothie Cafe","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1717699,36.1193389]},"properties":{"stars":"3.5","name":"KGB: Kerry's Gourmet Burgers","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2690556,36.1437655]},"properties":{"stars":"4.5","name":"Broadway Pizzeria","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1725943,36.099777]},"properties":{"stars":"3","name":"South Beach Cafe & Deli","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.136389,36.175]},"properties":{"stars":"4","name":"Fukuburger Truck","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2975957,36.1251674]},"properties":{"stars":"3","name":"Little Caesar's Pizza","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.0462282,36.1580626]},"properties":{"stars":"4","name":"China A Go Go","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.181741,36.2911653]},"properties":{"stars":"3.5","name":"Pasta Cucina","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1045666,36.1302246]},"properties":{"stars":"2","name":"Saffron","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.136169,36.011942]},"properties":{"stars":"3","name":"Hot Dog Heaven","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.302719,36.144875]},"properties":{"stars":"4","name":"Firefly","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2067011,36.1104125]},"properties":{"stars":"3.5","name":"Famous Famiglia Pizzeria","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.288397,36.288727]},"properties":{"stars":"3","name":"Arby's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1981743,36.1263719]},"properties":{"stars":"4","name":"HK Seafood Garden","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.267818,36.0556322]},"properties":{"stars":"3.5","name":"Subway","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.314551,36.1284289]},"properties":{"stars":"4","name":"Subway","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1910048,36.1443241]},"properties":{"stars":"3.5","name":"Ricos Tacos","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2785988,36.3076324]},"properties":{"stars":"3.5","name":"House of Vino","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1944048,36.1441999]},"properties":{"stars":"4","name":"Los Tacos","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2062374,36.2793217]},"properties":{"stars":"1.5","name":"Wings Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.153241,36.01212]},"properties":{"stars":"3.5","name":"New Day Cafe","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.172213,36.069845]},"properties":{"stars":"3","name":"Miller's Alehouse","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1185146,36.0153561]},"properties":{"stars":"3","name":"Elixir Organic Cafe & Lounge","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2632509,36.1436259]},"properties":{"stars":"3","name":"Egg World","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2825394,36.1980478]},"properties":{"stars":"4","name":"Nittaya's Secret Kitchen","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.11937,36.085343]},"properties":{"stars":"4.5","name":"Port Of Subs","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.256851,36.263186]},"properties":{"stars":"3.5","name":"SmashBurger","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2453617,36.1618764]},"properties":{"stars":"4.5","name":"Strip N Dip Chicken Strips","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1645721,36.1479553]},"properties":{"stars":"2","name":"Big Daddy's Pizzeria","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.290218,36.075572]},"properties":{"stars":"2.5","name":"Angelina's Pizzeria","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1179769,36.0184198]},"properties":{"stars":"4.5","name":"Poke Express","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.0934543,36.1155323]},"properties":{"stars":"4.5","name":"La Takiza","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1556873,36.0132829]},"properties":{"stars":"3","name":"Mama D's Pizzeria","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2982296,36.0952055]},"properties":{"stars":"4","name":"Thai Style Noodle House 2","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.180169,36.2612231]},"properties":{"stars":"2.5","name":"Alfonso's Mexican Food","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.136389,36.175]},"properties":{"stars":"3","name":"LBS Patty Wagon","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.119197,36.025359]},"properties":{"stars":"3","name":"Teriyaki Boy Healthy Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2519887,36.0554519]},"properties":{"stars":"3.5","name":"The Brentwood Cafe And Tavern","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1624488,36.1356507]},"properties":{"stars":"2","name":"Quizno's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1192695,36.143846]},"properties":{"stars":"3.5","name":"El Pollo Loco","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.291282,36.168849]},"properties":{"stars":"3.5","name":"Salvatore's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.241332,36.055414]},"properties":{"stars":"3","name":"L&L Hawaiian Barbecue","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.139599,36.169116]},"properties":{"stars":"4","name":"Cheffinis Hot Dogs","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2873742,36.2842642]},"properties":{"stars":"2.5","name":"Burger King","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.3140301,36.1154163]},"properties":{"stars":"3","name":"Mega Cafe","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2419755,36.1433968]},"properties":{"stars":"4","name":"Satoya","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.126522,36.158457]},"properties":{"stars":"4.5","name":"Tacos El Gordo","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.046233,36.15798]},"properties":{"stars":"3.5","name":"Aloha A Go Go - Hawaiian Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.118684,36.01658]},"properties":{"stars":"3","name":"JaiHo Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2435629,36.0509873]},"properties":{"stars":"2.5","name":"Brothers Italian Bistro","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1175779,36.26403648]},"properties":{"stars":"3.5","name":"Rosati's Pizza","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.244522,36.1635637]},"properties":{"stars":"3.5","name":"Che Inka Chicken","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.284605,36.30235544]},"properties":{"stars":"4","name":"Jack in the Box","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1624488,36.1356507]},"properties":{"stars":"2.5","name":"Big Burger","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1798487,36.04285314]},"properties":{"stars":"3","name":"Taco Bell","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.157168,36.131896]},"properties":{"stars":"3","name":"Cafe325","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2366829,36.1588556]},"properties":{"stars":"3.5","name":"Joseph's Cuisine","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2872836,36.2838114]},"properties":{"stars":"3.5","name":"Subway","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.0652478,36.1003339]},"properties":{"stars":"2","name":"Yummy House","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.225858,36.254862]},"properties":{"stars":"3","name":"Fatburger","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.202312,36.143923]},"properties":{"stars":"4.5","name":"Rani's World Foods","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1648858,36.1314439]},"properties":{"stars":"3","name":"Rock n Roll Sushi","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1182612,36.0540651]},"properties":{"stars":"3.5","name":"100% Natural Mexican Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.145397,36.167037]},"properties":{"stars":"3.5","name":"Courthouse Bar & Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1387114,36.1692159]},"properties":{"stars":"3.5","name":"Cafe Cortez","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1175013,36.1988592]},"properties":{"stars":"2.5","name":"Dairy Queen/Orange Julius","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1185523,36.0998697]},"properties":{"stars":"3.5","name":"Cici's Pizza","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1724579,36.0902336]},"properties":{"stars":"3.5","name":"Subway","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1539905,36.1531479]},"properties":{"stars":"4","name":"Amanecer Salvadoreno Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1185519,36.0169498]},"properties":{"stars":"3","name":"Teriwoki","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2250086,36.1269247]},"properties":{"stars":"3.5","name":"Yi Mei Champion Taiwan Deli","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2327223,36.1592455]},"properties":{"stars":"4.5","name":"Flame Kabob","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1725943,36.099777]},"properties":{"stars":"4","name":"Biscayne Steak","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2250095,36.1270191]},"properties":{"stars":"3.5","name":"Shan Dong Chinese Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2598102,36.06860323]},"properties":{"stars":"4","name":"PT's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2421223,36.0758928]},"properties":{"stars":"4","name":"Scooter's Pub","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.128214,36.086917]},"properties":{"stars":"2.5","name":"Villa Pizza","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.278523,36.057847]},"properties":{"stars":"3.5","name":"Stacks and Yolks","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.225306,36.055363]},"properties":{"stars":"2.5","name":"Smokey Mountain BBQ","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.136389,36.175]},"properties":{"stars":"4","name":"Flowrider Truck","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1998792,36.1443712]},"properties":{"stars":"4.5","name":"El Pollo Mobile","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.118069,36.018425]},"properties":{"stars":"4","name":"Island Breeze","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.257788,36.197235]},"properties":{"stars":"4.5","name":"Windy City Beefs-N-Dogs","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1560759,36.1651684]},"properties":{"stars":"3.5","name":"Subway","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2248077,36.1277487]},"properties":{"stars":"4","name":"Asian BBQ & Noodles","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1701939,36.1226902]},"properties":{"stars":"3.5","name":"Otto Enoteca Pizzeria","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.207618,36.126851]},"properties":{"stars":"4","name":"U & Me Cafe","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2006442,36.1154188]},"properties":{"stars":"3.5","name":"Kaizen Fusion Roll & Sushi","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1484842,36.1150822]},"properties":{"stars":"4","name":"9091","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.0930155,36.1156656]},"properties":{"stars":"3.5","name":"Golden China Chinese Cuisine","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1807301,36.1320625]},"properties":{"stars":"3","name":"Wienerschnitzel","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.173583,36.1088082]},"properties":{"stars":"3","name":"The Pods By Wolfgang Puck","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1714324,36.10982351]},"properties":{"stars":"3","name":"PBR Rock Bar & Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1119711,36.1002158]},"properties":{"stars":"4","name":"Bentley's Coffee","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.196028,36.1441542]},"properties":{"stars":"3.5","name":"Thai Express @ Sahara","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2791233,36.3074953]},"properties":{"stars":"3.5","name":"Taco Bell","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.286492,36.2915193]},"properties":{"stars":"3","name":"Pizza Hut","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.291282,36.168849]},"properties":{"stars":"3.5","name":"SC Prime Steakhouse","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1171278,36.2603405]},"properties":{"stars":"2.5","name":"Alfonso's Mexican Food","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2872836,36.2838114]},"properties":{"stars":"3.5","name":"Einstein Bros Bagels","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2499061,36.2403938]},"properties":{"stars":"2.5","name":"Joey's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.222697,36.203113]},"properties":{"stars":"2.5","name":"Rebel's Pizza - Smoke Ranch","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.136389,36.175]},"properties":{"stars":"3.5","name":"Engine 1 Pizza","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.154103,36.107456]},"properties":{"stars":"3.5","name":"Addiction Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2977607,36.0979917]},"properties":{"stars":"2.5","name":"East West Pizzeria","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1353351,36.0286035]},"properties":{"stars":"3.5","name":"Laurita's Taco Shop","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2241091,36.1884232]},"properties":{"stars":"4","name":"MO's Pizzeria","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.136389,36.175]},"properties":{"stars":"5","name":"Snow Ono Shave Ice","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2599732,36.20377]},"properties":{"stars":"4","name":"BabyStacks Cafe","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1711298,36.128561]},"properties":{"stars":"4.5","name":"Lulu's On The Move","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1194493,36.1130431]},"properties":{"stars":"4","name":"Crab Corner","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2509056,36.1962809]},"properties":{"stars":"4","name":"Firehouse Subs","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.192834,36.144252]},"properties":{"stars":"4","name":"Weera Thai Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1727967,36.1121766]},"properties":{"stars":"3.5","name":"SEA: The Thai Experience","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.250134,36.24172]},"properties":{"stars":"4","name":"Saffron Flavors of India","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2979202,36.11228943]},"properties":{"stars":"4.5","name":"Biaggio's Pizzeria","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1365916,36.1589085]},"properties":{"stars":"3","name":"Tacos Mexico","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.314419,36.121194]},"properties":{"stars":"4","name":"PT's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1183081,36.2163714]},"properties":{"stars":"4.5","name":"Mariana's Supermarkets","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.179164,36.28654]},"properties":{"stars":"3.5","name":"Waffles Cafe","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1508167,36.087605]},"properties":{"stars":"2","name":"Fox Sports Sky Box Lounge","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.276372,36.130323]},"properties":{"stars":"4","name":"Morettis Eatery","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.29416,36.143726]},"properties":{"stars":"3","name":"Subway","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.0798046,36.1809595]},"properties":{"stars":"3","name":"Roberto's Taco Shop","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2414071,36.05545548]},"properties":{"stars":"4","name":"Subway","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2857966,36.15802574]},"properties":{"stars":"4.5","name":"Patisserie Manon","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1904917,35.98292885]},"properties":{"stars":"3","name":"8th Ave Pizza","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2424433,36.2029728]},"properties":{"stars":"3.5","name":"Cafe Diem","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2469299,36.197656]},"properties":{"stars":"3.5","name":"Pancit Adobo","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1768802,36.0675793]},"properties":{"stars":"2.5","name":"Wurstle Gourmet Sausages","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1699304,36.14406861]},"properties":{"stars":"3.5","name":"Mood Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2433426,36.0471607]},"properties":{"stars":"3","name":"DQ Grill & Chill Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.226293,36.239527]},"properties":{"stars":"2.5","name":"Qdoba Mexican Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2067058,35.9954]},"properties":{"stars":"4","name":"Rise & Shine","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1179154,36.0993008]},"properties":{"stars":"3.5","name":"Taqueria El Tizon Grill 2","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.172998,36.128213]},"properties":{"stars":"3.5","name":"Jac & Ray","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1892,36.1472]},"properties":{"stars":"3","name":"Spicy City","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1169844,36.009253]},"properties":{"stars":"3.5","name":"Nacho Daddy","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.30239,36.101065]},"properties":{"stars":"3.5","name":"Buzz BBQ","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1725943,36.099777]},"properties":{"stars":"3.5","name":"Nikki Beach","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2253636,36.0484289]},"properties":{"stars":"3.5","name":"Prima Pizza & Cafe","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.259655,36.189172]},"properties":{"stars":"3","name":"Carl's Jr","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1114719,36.23969756]},"properties":{"stars":"4.5","name":"In-N-Out Burger","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2079525,36.032665]},"properties":{"stars":"3.5","name":"Carl's Jr","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2068006,35.9952905]},"properties":{"stars":"3","name":"Nicolo's Cucina Italiana","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2568054,36.19562912]},"properties":{"stars":"4","name":"Teriyaki Madness","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2443777,36.04433418]},"properties":{"stars":"4.5","name":"Vegas Express Sushi","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.243934,36.04577]},"properties":{"stars":"3","name":"Emjay's New York Pizza","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1675398,36.12596543]},"properties":{"stars":"3.5","name":"Lakeside","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.225858,36.254862]},"properties":{"stars":"3","name":"Coco's Bakery & Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.24188,36.061723]},"properties":{"stars":"3.5","name":"McDonald's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.213867,36.126501]},"properties":{"stars":"4","name":"2010 Fusion Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2413137,36.1809428]},"properties":{"stars":"3.5","name":"Sorrento Pizza","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.151201,36.08481209]},"properties":{"stars":"2.5","name":"Wendy's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.153581,36.262122]},"properties":{"stars":"2","name":"PT's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.3124785,36.1881115]},"properties":{"stars":"4","name":"Technique Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.215478,36.2198939]},"properties":{"stars":"2.5","name":"Wild Horse Cafe","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.146423,36.1439997]},"properties":{"stars":"4","name":"Hot Dog Haus","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2039271,36.1261519]},"properties":{"stars":"3","name":"Pho Thai Binh","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1525326,36.1512851]},"properties":{"stars":"3.5","name":"Harry O's BBQ","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.3001633,36.1154213]},"properties":{"stars":"3.5","name":"Einstein Bros Bagels","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1732124,36.109622]},"properties":{"stars":"4","name":"Holsteins Shakes and Buns","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1738726,36.1097544]},"properties":{"stars":"3.5","name":"Comme <U+00C7>a","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1188776,36.0280037]},"properties":{"stars":"3.5","name":"Super B Burrito","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.137613,36.10351]},"properties":{"stars":"3.5","name":"Smashburger","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.197013,36.126411]},"properties":{"stars":"3.5","name":"Noodle Pot","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1747074,36.0113116]},"properties":{"stars":"3.5","name":"Steak 'n Shake","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1707596,36.12336781]},"properties":{"stars":"3","name":"I Love Burgers","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.294264,36.11439]},"properties":{"stars":"3.5","name":"Brooksy's Bar & Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1751638,36.10987566]},"properties":{"stars":"4","name":"Wicked Spoon","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1738726,36.1097544]},"properties":{"stars":"3.5","name":"Jaleo","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1732124,36.109622]},"properties":{"stars":"3","name":"China Poblano","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.173755,36.10386311]},"properties":{"stars":"4","name":"Twist by Pierre Gagnaire","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.173887,36.109883]},"properties":{"stars":"4","name":"Estiatorio Milos","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.21134,36.11274]},"properties":{"stars":"3","name":"Dragon House","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1173366,36.02204615]},"properties":{"stars":"3","name":"Pho Little Saigon","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.0406679,36.1067341]},"properties":{"stars":"3","name":"TGI Friday's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2437638,36.0577809]},"properties":{"stars":"3","name":"Del Taco","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1748496,36.11151943]},"properties":{"stars":"4","name":"Secret Pizza","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2595642,36.2185429]},"properties":{"stars":"4","name":"Harold's Chicken & Fish","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1189623,36.0123098]},"properties":{"stars":"3.5","name":"Chicken D'Lish","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.17462,36.10979988]},"properties":{"stars":"3.5","name":"Blue Ribbon Sushi Bar and Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.098291,36.1811254]},"properties":{"stars":"3.5","name":"Las Islitas","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.117383,36.0194669]},"properties":{"stars":"3","name":"Monstah Lobstah","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2114903,36.1260725]},"properties":{"stars":"4","name":"Three Villages Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1742197,36.10956362]},"properties":{"stars":"3.5","name":"Va Bene Caffe","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1731471,36.1098769]},"properties":{"stars":"3.5","name":"The Henry","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.136389,36.175]},"properties":{"stars":"4","name":"Sloppi Jo's Roving Eatery","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.146372,36.124423]},"properties":{"stars":"3","name":"Pizzeria de Enzo","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.116866,36.0194285]},"properties":{"stars":"3.5","name":"Baja Fresh Mexican Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1711298,36.128561]},"properties":{"stars":"3.5","name":"Beach Caf<U+00E9>","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1732212,36.1092162]},"properties":{"stars":"3.5","name":"D.O.C.G. Enoteca","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1741339,36.10963296]},"properties":{"stars":"3.5","name":"The Overlook Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1615956,36.1374016]},"properties":{"stars":"3.5","name":"Westside Deli","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1648858,36.1314439]},"properties":{"stars":"3.5","name":"Shish Kabob House","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.0917302,36.1144544]},"properties":{"stars":"4","name":"Filfila Mediterranean Cafe","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1717699,36.1193389]},"properties":{"stars":"2.5","name":"McDonald's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2125772,36.1548687]},"properties":{"stars":"3","name":"Island Style Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2441573,35.99843283]},"properties":{"stars":"4","name":"Our Families Country Cafe","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2072241,36.03343924]},"properties":{"stars":"3","name":"Cafe Rio","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.235618,36.057032]},"properties":{"stars":"4","name":"T-Bird Lounge & Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.172945,36.118399]},"properties":{"stars":"4","name":"P.J. Clarke's New York Chophouse","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.189211,36.095691]},"properties":{"stars":"4","name":"Cafe Volare","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.154021,36.127342]},"properties":{"stars":"4","name":"ENVY Lounge","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1614533,36.1438684]},"properties":{"stars":"3.5","name":"Red Label","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.164896,36.129868]},"properties":{"stars":"4","name":"La Cave Wine and Food Hideaway","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.138026,36.089494]},"properties":{"stars":"2.5","name":"Port of Subs","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1736045,36.10999572]},"properties":{"stars":"4.5","name":"<U+00E9> by Jos<U+00E9> Andr<U+00E9>s","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.197924,36.127175]},"properties":{"stars":"2.5","name":"Kapuso Kapamilya Karaoke Bar","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2816937,36.2006526]},"properties":{"stars":"4.5","name":"German Bread Bakery","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2794278,36.14222768]},"properties":{"stars":"4","name":"Bambino's East Coast Pizzeria","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.0936899,36.1153722]},"properties":{"stars":"4","name":"Best Billiards","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.15036,36.01979]},"properties":{"stars":"3","name":"Taco Tio","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1970606,36.1263632]},"properties":{"stars":"3.5","name":"Las Vegas Chinatown Plaza","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1186879,36.1438794]},"properties":{"stars":"2.5","name":"Pupuseria Cabanas","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.0881146,36.1165487]},"properties":{"stars":"5","name":"Poppa Naps BBQ","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.280912,36.056075]},"properties":{"stars":"3.5","name":"Chicken Bonz","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2896852,36.0612353]},"properties":{"stars":"4","name":"TastyBunz","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.141921,36.068048]},"properties":{"stars":"4.5","name":"Slidin' Thru HQ","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.082142,36.143775]},"properties":{"stars":"4.5","name":"Abuela's Tacos","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2791323,36.1223442]},"properties":{"stars":"3","name":"Chicago Jimmy's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.0762536,36.149751]},"properties":{"stars":"3.5","name":"TSS Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.3250841,36.1248839]},"properties":{"stars":"4","name":"Due Forni","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.154021,36.127342]},"properties":{"stars":"3","name":"E Go Cafe","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2803993,36.1139221]},"properties":{"stars":"3.5","name":"Flame Kabob","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.145874,36.160555]},"properties":{"stars":"3","name":"The Verdict's Inn","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2445436,36.05633308]},"properties":{"stars":"4","name":"Grimaldi's - Coal Brick-Oven Pizzeria","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.3041999,36.1931046]},"properties":{"stars":"4","name":"Port of Subs","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.0999753,36.0833352]},"properties":{"stars":"4","name":"Dang Dee Thai Cuisine","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1809645,36.2919185]},"properties":{"stars":"4","name":"Rubio's Fresh Mexican Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1913887,36.13170799]},"properties":{"stars":"2.5","name":"Apollo's Pizza Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2217331,36.114779]},"properties":{"stars":"2.5","name":"Lucio Ristorante","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1457004,36.1443182]},"properties":{"stars":"4.5","name":"E-Jo Korean Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1373615,36.1084263]},"properties":{"stars":"3.5","name":"Whazzup Pizza","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.151261,36.108898]},"properties":{"stars":"4","name":"Azuza Hookah Lounge & Cafe","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.171282,36.11289]},"properties":{"stars":"3.5","name":"Chateau Beer Garden","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1211777,36.07102585]},"properties":{"stars":"4","name":"Pizza Company","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1361526,36.0296647]},"properties":{"stars":"4","name":"DiMartino's Italian Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1725316,36.11201526]},"properties":{"stars":"3","name":"Sugar Factory American Brasserie","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2249961,36.0698545]},"properties":{"stars":"4","name":"Kyara Japanese Tapas","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2424147,36.2014246]},"properties":{"stars":"3.5","name":"China A Go Go","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.22433,36.06687]},"properties":{"stars":"3.5","name":"Taco Bell","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1163972,36.0559736]},"properties":{"stars":"3.5","name":"Marias Taco Shop","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.175383,36.093647]},"properties":{"stars":"4","name":"R<U+00ED> R<U+00E1>","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2164008,36.0298322]},"properties":{"stars":"4","name":"T-Bird Lounge","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2267948,36.0995124]},"properties":{"stars":"3","name":"Fat Moe's Pizza & Wings","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2177429,36.16836822]},"properties":{"stars":"4","name":"Ron's Steakhouse","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.118069,36.018425]},"properties":{"stars":"2","name":"Philly Steak and Pizza Express","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.208014,36.094661]},"properties":{"stars":"4","name":"Sushi House Goyemon","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1370794,36.1087848]},"properties":{"stars":"4","name":"Cedars Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1085145,36.1296022]},"properties":{"stars":"4","name":"Coconut Bistro","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2411278,36.1269027]},"properties":{"stars":"4","name":"Pho Saigon","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1146464,36.23958537]},"properties":{"stars":"4","name":"Pasta China","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2438386,36.1522539]},"properties":{"stars":"2.5","name":"New York Hot Dogs","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.146372,36.124423]},"properties":{"stars":"3","name":"Ciao Ciao Cafe & Bar","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.048489,36.145089]},"properties":{"stars":"4","name":"Rivas Mexican Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1735161,36.1030009]},"properties":{"stars":"3.5","name":"NYP- Pizzeria","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.116294,36.24038369]},"properties":{"stars":"2","name":"Sakura Japanese Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1784884,36.1092406]},"properties":{"stars":"3","name":"Market Cafe Vdara","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.257044,36.26441002]},"properties":{"stars":"3.5","name":"Teriyaki Madness","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.136389,36.175]},"properties":{"stars":"3.5","name":"BBQ Boy and Catering","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2511034,36.2198728]},"properties":{"stars":"4","name":"Wine 5 Cafe","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.186568,36.118776]},"properties":{"stars":"2.5","name":"BK Whopper Bar","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1711298,36.128561]},"properties":{"stars":"3","name":"Muncheeze","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.0478066,36.14527367]},"properties":{"stars":"2.5","name":"Robertos Taco Shop","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.290218,36.075572]},"properties":{"stars":"3.5","name":"O'Aces Bar and Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.084904,36.1329483]},"properties":{"stars":"3","name":"Grand Caf<U+00E9>","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2792238,36.1253118]},"properties":{"stars":"3.5","name":"BeeGee Kitchen","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.15036,36.02395515]},"properties":{"stars":"4","name":"Garden Cafe","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1597711,36.1557547]},"properties":{"stars":"4","name":"Pura Vida Bakery & Bystro","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1778053,36.06814985]},"properties":{"stars":"3.5","name":"Double Helix","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2079142,36.1239576]},"properties":{"stars":"3.5","name":"DJ Hollywood's Pizza & Gyros","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1163393,36.24045207]},"properties":{"stars":"3.5","name":"Five Guys Burgers and Fries","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.186257,36.100345]},"properties":{"stars":"2","name":"McDonald's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.27811,36.1143948]},"properties":{"stars":"4.5","name":"Carlos' Kitchen","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.21134,36.11274]},"properties":{"stars":"3.5","name":"Subway","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2432036,36.1010837]},"properties":{"stars":"2.5","name":"Bistro Mobile","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.278458,36.134956]},"properties":{"stars":"4.5","name":"Pan Asian","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2778306,36.1297417]},"properties":{"stars":"3.5","name":"Durangos Mexican Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.137684,36.1041275]},"properties":{"stars":"3.5","name":"Jugoo Chinese Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2433403,36.1010389]},"properties":{"stars":"3.5","name":"Los Jarochos Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.3132027,36.1002396]},"properties":{"stars":"3.5","name":"Star Mexican Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.3289807,36.3257568]},"properties":{"stars":"2.5","name":"A Cut Above Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2855925,36.1671901]},"properties":{"stars":"4","name":"Brio Tuscan Grille","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.136389,36.175]},"properties":{"stars":"3.5","name":"Haulin Balls","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.0901521,36.2400213]},"properties":{"stars":"3.5","name":"Stonehouse Bar & Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.136389,36.175]},"properties":{"stars":"3.5","name":"Carefree Catering","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2512997,36.2322557]},"properties":{"stars":"3","name":"Manhattan Pizza IV","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1525713,36.15123534]},"properties":{"stars":"4.5","name":"Viva Las Arepas","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.3003535,36.1151576]},"properties":{"stars":"4","name":"Firehouse Subs","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1371441,36.1577649]},"properties":{"stars":"3.5","name":"Dona Norma Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2898407,36.16044617]},"properties":{"stars":"3.5","name":"East Side Pizza","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1718069,36.0355978]},"properties":{"stars":"4","name":"Deliria","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.209933,36.1263678]},"properties":{"stars":"4","name":"Big Wong Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2976001,36.1010348]},"properties":{"stars":"1.5","name":"KFC/Long John Silvers","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2861774,36.16767281]},"properties":{"stars":"4","name":"Leon<U+00E9> Caf<U+00E9>","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1992107,36.0929847]},"properties":{"stars":"4","name":"Sabi's Kitchen & Catering","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2481396,36.195266]},"properties":{"stars":"4","name":"Viet Bistro","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.136389,36.175]},"properties":{"stars":"4","name":"Ben's BBQ & Smokehouse","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2439415,36.2156072]},"properties":{"stars":"3.5","name":"Krazy Buffet","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.293014,36.157183]},"properties":{"stars":"4","name":"The Martini","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2440954,36.1611026]},"properties":{"stars":"4","name":"China One","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.0621037,36.1622362]},"properties":{"stars":"1.5","name":"Dragon Buffet","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.169277,36.1025618]},"properties":{"stars":"4.5","name":"Mansion Dining Room","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1503951,36.1212218]},"properties":{"stars":"4.5","name":"Sicili's Pizza","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.3327977,36.15605433]},"properties":{"stars":"2.5","name":"Grand Caf<U+00E9>","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.0847123,36.13381552]},"properties":{"stars":"3.5","name":"Feast Buffet","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.174417,36.1444402]},"properties":{"stars":"3.5","name":"Food Express Chinese Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1719319,36.12748753]},"properties":{"stars":"3.5","name":"Red Velvet Caf<U+00E9>","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1394105,36.1002267]},"properties":{"stars":"3.5","name":"Roly's Bakery","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1171167,36.016461]},"properties":{"stars":"4.5","name":"Cr<U+00EA>pe Expectations","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2622382,36.1434735]},"properties":{"stars":"4.5","name":"The Las Vegas Grille","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1940752,36.1264205]},"properties":{"stars":"4","name":"Hot N Juicy Crawfish","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.147406,36.2389062]},"properties":{"stars":"3.5","name":"Aurelio's Pizza","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.17348,36.074457]},"properties":{"stars":"3","name":"Jack in the Box","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.21134,36.11274]},"properties":{"stars":"2.5","name":"Coasta Cantina","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2659777,36.1683449]},"properties":{"stars":"3","name":"221 Wine Bar","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2869756,36.1684421]},"properties":{"stars":"3","name":"Radio City Pizzeria","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.243219,36.059173]},"properties":{"stars":"3.5","name":"Carl's Jr","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2079082,36.2769088]},"properties":{"stars":"2","name":"Subway","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1648858,36.1314439]},"properties":{"stars":"4.5","name":"Tacos El Gordo","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2301669,36.0715625]},"properties":{"stars":"3.5","name":"Yellow Lunch Box","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1007958,36.101045]},"properties":{"stars":"4.5","name":"Kunchorn Thai Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2244853,36.2030945]},"properties":{"stars":"3.5","name":"Vegas CheeseSteaks","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2408336,36.1140789]},"properties":{"stars":"3.5","name":"Prince Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1088419,36.12954704]},"properties":{"stars":"3","name":"Big Paul's BBQ","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.197258,36.1725319]},"properties":{"stars":"4","name":"Tony's Mexican Food","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.150433,36.105934]},"properties":{"stars":"1.5","name":"World Famous Tuscany Pizza","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1187611,36.0545017]},"properties":{"stars":"3.5","name":"Don Tortaco Mexican Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2424022,36.09892272]},"properties":{"stars":"4","name":"Russo's Pizza Kitchen","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.0661981,36.14271809]},"properties":{"stars":"4","name":"China Gourmet","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.0909203,36.1139613]},"properties":{"stars":"4","name":"Beijing Noodle Cafe","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1722098,36.0474692]},"properties":{"stars":"2.5","name":"Burger King","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.17044,36.099039]},"properties":{"stars":"2.5","name":"South Beach Marketplace","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2515564,36.1592703]},"properties":{"stars":"3.5","name":"Windy City Beefs 'N Dogs II","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.244994,36.2042]},"properties":{"stars":"3","name":"BaBa's Chinese Kitchen","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.0639891,36.1768232]},"properties":{"stars":"3.5","name":"Napoli Pizza","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.136898,36.17448]},"properties":{"stars":"4.5","name":"Taqueria El Buen Pastor","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.137672,36.128998]},"properties":{"stars":"3","name":"Jammin Jerk Hut","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2077993,36.1311926]},"properties":{"stars":"4.5","name":"Na Na Thai Kitchen","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2512854,36.1433538]},"properties":{"stars":"4","name":"Go Wild Sushi & Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2614678,36.2697496]},"properties":{"stars":"3.5","name":"BJ's Restaurant & Brewhouse","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.101374,36.099678]},"properties":{"stars":"2","name":"Domino's Pizza","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2914104,36.1607777]},"properties":{"stars":"3.5","name":"Baja California Restaurant & Cantina","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1457253,36.1665451]},"properties":{"stars":"3","name":"Capriotti's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2987479,36.1158067]},"properties":{"stars":"3.5","name":"Five Guys Burgers and Fries","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.279651,36.116513]},"properties":{"stars":"1.5","name":"Subway","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1186202,36.0347903]},"properties":{"stars":"3.5","name":"Jimmy's NYC Pizzeria","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.297852,36.106481]},"properties":{"stars":"3.5","name":"By The Inch Pizza Caffe","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.276078,36.1439128]},"properties":{"stars":"3","name":"Cici's Pizza","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1269814,36.1959883]},"properties":{"stars":"4.5","name":"El Cazador","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2423923,36.2177628]},"properties":{"stars":"2.5","name":"Bangkok 9","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2067011,36.1104125]},"properties":{"stars":"4.5","name":"Great Bao","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2245664,36.1280756]},"properties":{"stars":"3.5","name":"Cravin' Cajun","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.10591,36.160158]},"properties":{"stars":"3.5","name":"Country Kitchen","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1252048,36.220343]},"properties":{"stars":"4","name":"Mr. Willy's Chicken & Fish","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.175779,36.095927]},"properties":{"stars":"3","name":"Rice & Company","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.149962,36.057686]},"properties":{"stars":"3.5","name":"Spicy Pickle","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.211199,36.125592]},"properties":{"stars":"4","name":"Island Malaysian Cuisine Halal","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2789909,36.1355542]},"properties":{"stars":"4","name":"Del Mar Cafe","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2846638,36.3025767]},"properties":{"stars":"3.5","name":"Del Taco","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1364895,36.1060358]},"properties":{"stars":"4","name":"28GO The Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1988518,36.1286647]},"properties":{"stars":"3","name":"Sofia's Cafe","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1774856,36.0681348]},"properties":{"stars":"3.5","name":"English's Quintessentially British","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2304131,36.135635]},"properties":{"stars":"3.5","name":"Sin City Wings","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.213915,36.1267101]},"properties":{"stars":"4","name":"Cafe de Japon","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2445968,36.1008769]},"properties":{"stars":"4","name":"Long Jin Chinese Cuisine","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.260023,36.1908145]},"properties":{"stars":"4","name":"Mi Tierra Mexican Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2366394,36.1590182]},"properties":{"stars":"3.5","name":"Campus Commons Food Court","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1624487,36.1356506]},"properties":{"stars":"4","name":"R Steak & Seafood","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.310497,36.163934]},"properties":{"stars":"3.5","name":"Panda Express","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.135356,36.142588]},"properties":{"stars":"3.5","name":"Tacos Los Toritos","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2211756,36.0999019]},"properties":{"stars":"3.5","name":"El Gordito","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1720418,36.1163675]},"properties":{"stars":"2.5","name":"Bonanno's New York Pizzeria","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.170403,36.108742]},"properties":{"stars":"3.5","name":"Lobster Me - Miracle Mile Shops","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1467609,36.17183264]},"properties":{"stars":"4","name":"Island Sushi and Grill Express","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.211622,36.171184]},"properties":{"stars":"3","name":"Don Beto Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1981452,36.1153808]},"properties":{"stars":"2.5","name":"Cathay House","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.206039,36.15075]},"properties":{"stars":"5","name":"Love Empanadas","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.280865,36.100579]},"properties":{"stars":"3.5","name":"Subway","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.168028,36.1276112]},"properties":{"stars":"4","name":"Grimaldi's Pizzeria","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.3216348,36.16042237]},"properties":{"stars":"3","name":"China Tango Bistro","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2982993,36.1470835]},"properties":{"stars":"4.5","name":"Buldogis Gourmet Hot Dogs","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.065912,36.137773]},"properties":{"stars":"3.5","name":"Fatburger","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1536602,36.1089964]},"properties":{"stars":"3.5","name":"35 Steaks","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.136389,36.175]},"properties":{"stars":"3.5","name":"Sausagefest Food Truck","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2676299,36.2714625]},"properties":{"stars":"3.5","name":"SinCity Burgers","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2881563,36.28625416]},"properties":{"stars":"3","name":"Carl's Jr.","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1463616,36.1716577]},"properties":{"stars":"3.5","name":"Hash House A Go Go","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.20777,36.00232]},"properties":{"stars":"2.5","name":"Taco Bell","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1624212,36.13189669]},"properties":{"stars":"4.5","name":"The Barrymore","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.172065,36.0669963]},"properties":{"stars":"4.5","name":"Upper Deck Grill and Sports Lounge","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.298064,36.143428]},"properties":{"stars":"4.5","name":"Hummus Bar","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1645721,36.1479553]},"properties":{"stars":"4","name":"Daddy's Delights","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.177855,36.117294]},"properties":{"stars":"3","name":"CENTRAL BY MICHEL RICHARD","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2892949,36.16367115]},"properties":{"stars":"4","name":"Embers","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2515658,36.0629898]},"properties":{"stars":"3.5","name":"Jason's Deli","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1983146,36.1263392]},"properties":{"stars":"3.5","name":"Anime Ramen & Teriyaki","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2982967,36.1012667]},"properties":{"stars":"3.5","name":"Boca Do Brasil","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.25354,36.1433]},"properties":{"stars":"3","name":"Lilly's Thai & Vietnamese Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1746842,36.09233893]},"properties":{"stars":"4","name":"Sports Book Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.0789297,36.2408526]},"properties":{"stars":"2","name":"Italian Delights","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1711298,36.128561]},"properties":{"stars":"3.5","name":"La Pizza","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.150469,36.042912]},"properties":{"stars":"3","name":"DQ Grill & Chill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1006059,36.0723096]},"properties":{"stars":"2.5","name":"Quiznos","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1415145,36.1109405]},"properties":{"stars":"3.5","name":"Hazel M Wilson Commons","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2304131,36.2576752]},"properties":{"stars":"2.5","name":"Grand Caf<U+00E9>","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.138026,36.089494]},"properties":{"stars":"3.5","name":"Popeye's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.3047985,36.1003949]},"properties":{"stars":"4","name":"Sunset Pizzeria","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1809645,36.2919185]},"properties":{"stars":"2","name":"Cabo Mexican Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2433426,36.0471607]},"properties":{"stars":"3","name":"Dairy Queen","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1711298,36.2608162]},"properties":{"stars":"3.5","name":"The Chuck Wagon Catering Truck","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.045194,36.095174]},"properties":{"stars":"4.5","name":"Legends Sports Bar & Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.151932,36.041378]},"properties":{"stars":"4","name":"China a Go Go","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1398801,36.16880181]},"properties":{"stars":"4","name":"Le Thai","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.172557,36.1156338]},"properties":{"stars":"4","name":"Margaritaville Casino","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1408463,36.17005539]},"properties":{"stars":"4","name":"Cous Cous Mediterranean Cafe","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1408463,36.17005539]},"properties":{"stars":"2.5","name":"Heart Attack Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1996833,36.04089797]},"properties":{"stars":"4.5","name":"The Diner at LVM Resort","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.174568,36.127307]},"properties":{"stars":"3.5","name":"Chipotle","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2032516,36.1153832]},"properties":{"stars":"3.5","name":"Marbella Tapas","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.280644,36.201019]},"properties":{"stars":"2.5","name":"Papa John's Pizza","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2068006,35.9952905]},"properties":{"stars":"2.5","name":"Hot Dog Heaven","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1768402,36.0687779]},"properties":{"stars":"2.5","name":"Coconuts Beach Bar & Mexican Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2869529,36.1672912]},"properties":{"stars":"3.5","name":"Bottles & Burgers By Double Helix","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2046839,36.1448801]},"properties":{"stars":"3.5","name":"Don Tortacos","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1922304,36.1680995]},"properties":{"stars":"3.5","name":"Divine Cafe at the Springs Preserve","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1538512,36.1090109]},"properties":{"stars":"2","name":"LTO Pizza & More","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.24534,36.071018]},"properties":{"stars":"3.5","name":"Wahoo's Fish Tacos","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2084753,36.0336846]},"properties":{"stars":"4","name":"Ohjah Japanese Steakhouse Sushi & Hibachi","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.3152746,36.100299]},"properties":{"stars":"4","name":"Papa Murphy's Take 'n Bake Pizza","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1192573,36.0262317]},"properties":{"stars":"4","name":"Greens and Proteins","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.172121,36.116349]},"properties":{"stars":"3","name":"Johnny Rockets","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.211569,36.126036]},"properties":{"stars":"1.5","name":"J's Noodle","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1019211,36.08590317]},"properties":{"stars":"2","name":"El Rancho Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1711298,36.128561]},"properties":{"stars":"4","name":"Ichi M<U+00E0>s Truck","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2076425,36.1297365]},"properties":{"stars":"3.5","name":"El Paisano Taqueria","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1627872,36.1440399]},"properties":{"stars":"2.5","name":"Pumpkin & Pecan Shish Kabob Shop","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1571572,36.11474547]},"properties":{"stars":"4.5","name":"Fogo de Ch<U+00E3>o Brazilian Steakhouse","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1718069,36.0355978]},"properties":{"stars":"3.5","name":"Deli Pizza Cafe","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.209365,36.118178]},"properties":{"stars":"4","name":"The Boiling Crab","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2099519,36.12662053]},"properties":{"stars":"4","name":"Trattoria Nakamura-Ya","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.279439,36.1238755]},"properties":{"stars":"3.5","name":"Norm's Eggs Cafe","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.146372,36.124423]},"properties":{"stars":"3.5","name":"Panda Express","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.277036,36.174425]},"properties":{"stars":"4.5","name":"Big Burgers & Pizza","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2244853,36.2030945]},"properties":{"stars":"4.5","name":"The Redneck Kitchen","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.155708,36.102907]},"properties":{"stars":"2.5","name":"Vegas Best Pizza","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1209151,36.24019217]},"properties":{"stars":"4.5","name":"Old School Pizzeria","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.203317,36.125886]},"properties":{"stars":"3.5","name":"Pho Old Saigon","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.17044,36.099039]},"properties":{"stars":"3.5","name":"Pellegrino Pizza & Deli","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.171282,36.11289]},"properties":{"stars":"4","name":"Paris Brasserie","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1779473,36.0692146]},"properties":{"stars":"3","name":"I Love Burgers","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2062221,36.1969016]},"properties":{"stars":"2.5","name":"Pupuser<U+00ED>a El Zunzal","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2254261,36.11462474]},"properties":{"stars":"3","name":"Happy's Pizza","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.3038687,36.19307667]},"properties":{"stars":"3","name":"Griddlecakes","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1465996,36.17183519]},"properties":{"stars":"4","name":"Oscar's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.146372,36.124423]},"properties":{"stars":"3","name":"Lynyrd Skynyrd BBQ and Beer","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1752584,36.09842202]},"properties":{"stars":"3.5","name":"ABX American Burger Works","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2419522,36.0621587]},"properties":{"stars":"4","name":"Egg Works","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1691493,36.0549288]},"properties":{"stars":"2.5","name":"Burger King","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.3115031,36.1588974]},"properties":{"stars":"4","name":"Dom DeMarco's Pizzeria & Bar","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2659777,36.1988542]},"properties":{"stars":"4","name":"Roamin' Dough","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.172557,36.1156338]},"properties":{"stars":"3.5","name":"Pizza Joint","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1970778,36.12548903]},"properties":{"stars":"4","name":"Da Sheng Chinese Cuisine","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2417425,36.0786511]},"properties":{"stars":"4","name":"Firehouse Subs","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2252439,36.055404]},"properties":{"stars":"3","name":"The Taste of Chicago","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.100413,36.072381]},"properties":{"stars":"3.5","name":"Parsley Mediterranean Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1756607,36.1146578]},"properties":{"stars":"4.5","name":"Stan Fulton Bistro","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1361526,36.0296647]},"properties":{"stars":"3.5","name":"Don Antonio's Pizzeria","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2973242,36.0949113]},"properties":{"stars":"3.5","name":"Ihop","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.3253482,36.1242459]},"properties":{"stars":"3.5","name":"Daily Kitchen and Wellness Bar","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.3082101,36.1146625]},"properties":{"stars":"4","name":"McDonald's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.177114,36.131979]},"properties":{"stars":"4.5","name":"Rollin Smoke Barbeque","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.17204,36.106542]},"properties":{"stars":"3.5","name":"Catfish Alley","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2304131,36.2576752]},"properties":{"stars":"3","name":"Pasta Cucina","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2113493,36.12576916]},"properties":{"stars":"3.5","name":"Kung Fu Chef","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1696112,36.1214517]},"properties":{"stars":"4","name":"Public House","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1205761,36.0109654]},"properties":{"stars":"2","name":"Carluccio's Italian Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2066271,36.0332529]},"properties":{"stars":"2.5","name":"Domino's Pizza","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.179164,36.28654]},"properties":{"stars":"2.5","name":"China A Go Go","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.162763,36.23892554]},"properties":{"stars":"3.5","name":"Don Tortaco Mexican Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.279266,36.055015]},"properties":{"stars":"2","name":"Little Caesars Pizza","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.146372,36.124423]},"properties":{"stars":"4","name":"The Grill At Valentino","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1611066,36.1400616]},"properties":{"stars":"3","name":"The Marketplace","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1750461,36.09898453]},"properties":{"stars":"3","name":"Buca di Beppo","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.242347,36.146244]},"properties":{"stars":"3","name":"The Mad Greek Cafe","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1155836,36.26798018]},"properties":{"stars":"3.5","name":"China A Go Go","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.17044,36.099039]},"properties":{"stars":"3","name":"Cafe Nikki","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1765221,36.1130109]},"properties":{"stars":"3.5","name":"Hyde Bellagio","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1164571,36.26474573]},"properties":{"stars":"2.5","name":"McDonalds","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.3133335,36.15792488]},"properties":{"stars":"4.5","name":"Firehouse Subs","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.3075865,36.1145538]},"properties":{"stars":"3","name":"South Chicago Deli and House of Pizza","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1722248,36.045999]},"properties":{"stars":"3","name":"Buca Di Beppo","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.129004,36.21877]},"properties":{"stars":"4.5","name":"Don Tortaco","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2057642,36.27964666]},"properties":{"stars":"3.5","name":"Cugino's Pizzeria","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.17155,36.051991]},"properties":{"stars":"4","name":"Five Guys Burgers and Fries","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2564739,36.2627872]},"properties":{"stars":"3.5","name":"The Taco Spot","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.154214,36.120094]},"properties":{"stars":"4","name":"Mr B's Bar & Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2076887,36.12542213]},"properties":{"stars":"3","name":"The Underworld Grill & Bar","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2819509,36.2003921]},"properties":{"stars":"4","name":"Bobby's Bagel Bistro","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1529515,36.04263626]},"properties":{"stars":"4.5","name":"Subway","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2614822,36.1136569]},"properties":{"stars":"4","name":"BabyStacks Cafe","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2409932,36.12676642]},"properties":{"stars":"3.5","name":"Woonam Jung","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1657932,36.1304091]},"properties":{"stars":"4.5","name":"Tower Suite Cafe","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1933052,36.1247621]},"properties":{"stars":"3","name":"Hunan Jiu Jia","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2793898,36.1121084]},"properties":{"stars":"4","name":"The Village Mediterranean Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.186442,36.118699]},"properties":{"stars":"3.5","name":"KJ Dim Sum & Seafood","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2579025,36.26434433]},"properties":{"stars":"4","name":"Subway","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2431381,36.03615569]},"properties":{"stars":"3.5","name":"Rainbow Pho Express","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.270268,36.29733]},"properties":{"stars":"4","name":"Algobertos","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2429424,36.2490667]},"properties":{"stars":"3.5","name":"Capriotti's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1367778,36.0987051]},"properties":{"stars":"3.5","name":"Nigerian Cuisine","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2816439,36.20009658]},"properties":{"stars":"4","name":"Naka Sushi","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.174098,36.09128]},"properties":{"stars":"3.5","name":"Slice of Vegas","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1195097,36.11447678]},"properties":{"stars":"3","name":"McDonald's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1042295,36.1163597]},"properties":{"stars":"3","name":"Maestro's Pizzeria","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.0652579,36.129574]},"properties":{"stars":"4","name":"China Roll","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.149411,36.0858828]},"properties":{"stars":"3","name":"Track Lounge","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.08005,36.2406]},"properties":{"stars":"3","name":"Taco Bell","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.0812182,36.1663559]},"properties":{"stars":"5","name":"La Tradicion","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1367851,36.104435]},"properties":{"stars":"3.5","name":"Pita Pit","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1468916,36.2389527]},"properties":{"stars":"4","name":"Jun's Korean Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1974681,36.12632118]},"properties":{"stars":"2","name":"Harbor Palace Seafood Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2250114,36.1272234]},"properties":{"stars":"3.5","name":"Hong Kong Garden Seafood & BBQ Cafe","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1485634,36.10067306]},"properties":{"stars":"3","name":"Super B Burrito","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1410442,36.1700884]},"properties":{"stars":"3.5","name":"Luna Rossa","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2098129,36.1486584]},"properties":{"stars":"4","name":"Royal Cuisine","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2017756,36.1265262]},"properties":{"stars":"4","name":"Ramen Sora","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.0925631,36.1292353]},"properties":{"stars":"4","name":"Kathy's Southern Cooking","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2416392,36.1269391]},"properties":{"stars":"3","name":"K Jun Chicken","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.156119,36.238891]},"properties":{"stars":"3.5","name":"A&W All-American Food","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1194493,36.1130431]},"properties":{"stars":"4","name":"La Parrilla","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.154643,36.167252]},"properties":{"stars":"3.5","name":"Keep Memory Alive Cafe","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1634847,36.1130255]},"properties":{"stars":"4","name":"Ellis Island Cafe","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1198297,36.1959125]},"properties":{"stars":"5","name":"MB China","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2810967,36.11446812]},"properties":{"stars":"4","name":"Sushi Koma","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1765442,36.08997726]},"properties":{"stars":"3","name":"Crossroads at House of Blues","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1474047,36.08088423]},"properties":{"stars":"4","name":"El Patio Catering","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2622033,36.1968609]},"properties":{"stars":"2.5","name":"Mix Zone Cafe 2","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1148529,36.15786743]},"properties":{"stars":"2.5","name":"Courtyard Grill & Buffet","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1441195,36.1691036]},"properties":{"stars":"2.5","name":"The Grille Inside The Golden Nugget","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1701939,36.1226902]},"properties":{"stars":"3.5","name":"Pizzeria Da Enzo","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1934884,36.12648815]},"properties":{"stars":"4","name":"Tacos La Carreta","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2427252,36.2160339]},"properties":{"stars":"3.5","name":"Don Tortaco Mexican Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1697784,36.10294117]},"properties":{"stars":"4","name":"Sugar Factory","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2058086,36.1688765]},"properties":{"stars":"4","name":"Los Tarascos Tacos","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.177114,36.131979]},"properties":{"stars":"4","name":"Koolthai Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.136389,36.175]},"properties":{"stars":"3.5","name":"Rio Buffet","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.0615845,36.1655426]},"properties":{"stars":"2.5","name":"IHOP","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1502129,36.04318062]},"properties":{"stars":"4","name":"Pizza Natali","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2071428,36.07244699]},"properties":{"stars":"4","name":"Caf<U+00E9> Berlin","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2968895,36.09584878]},"properties":{"stars":"3.5","name":"Elevation Burger","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1427714,36.169971]},"properties":{"stars":"4","name":"Don B's Steakhouse","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.148563,36.173981]},"properties":{"stars":"4","name":"Jason's Deli","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.13762,36.13926104]},"properties":{"stars":"2.5","name":"Pizza Hut","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.0448263,36.1958019]},"properties":{"stars":"3","name":"Tropicana Pizza","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2088673,36.0944572]},"properties":{"stars":"3.5","name":"The Daily Egg","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2542311,36.2736777]},"properties":{"stars":"3","name":"Verdi Restaurant Pizza","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.136561,36.104474]},"properties":{"stars":"2.5","name":"3pm Cafe","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1797927,36.2628439]},"properties":{"stars":"3","name":"Lotus Thai Kitchen","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.0653839,36.24007034]},"properties":{"stars":"3","name":"Dot's Southern Kitchen","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.128906,36.057248]},"properties":{"stars":"5","name":"Daraa Halal Market","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.082654,36.1551211]},"properties":{"stars":"3","name":"Golden Corral","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1749074,36.11763191]},"properties":{"stars":"4","name":"Gordon Ramsay Steak","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1729431,36.02763367]},"properties":{"stars":"3.5","name":"Putters","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.0624771,36.19098282]},"properties":{"stars":"3.5","name":"Granny's Kitchen ...... Soul Food","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.137672,36.128998]},"properties":{"stars":"2.5","name":"Flavor Flav's House of Flavor","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1542819,36.11046377]},"properties":{"stars":"2.5","name":"Fuel Caf<U+00E9>","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1748371,36.1179352]},"properties":{"stars":"2.5","name":"Lobster Chowder Company","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2913214,36.1603422]},"properties":{"stars":"3.5","name":"Wahoo's Fish Tacos","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1790128,36.1974721]},"properties":{"stars":"4","name":"Mega Tom's Burgers","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2096005,36.1587612]},"properties":{"stars":"3.5","name":"Chi Town Dogs","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1186299,36.14441298]},"properties":{"stars":"4","name":"Cherry Berries","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.207661,36.13174]},"properties":{"stars":"4","name":"I-Naba","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1187329,36.0162554]},"properties":{"stars":"2.5","name":"Urban Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1372058,36.1426225]},"properties":{"stars":"4.5","name":"Subway","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.100466,36.086743]},"properties":{"stars":"5","name":"City Express - Sinclair","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.138026,36.089494]},"properties":{"stars":"3","name":"Cabo Wabo Cantina","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.0212329,36.27896808]},"properties":{"stars":"4","name":"Mo's Race Day Cafe","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2595825,36.21853256]},"properties":{"stars":"4","name":"Las Pupusas Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.0611449,36.1692249]},"properties":{"stars":"3.5","name":"Asian Garden","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.150589,36.158472]},"properties":{"stars":"4","name":"Simpo Sandwich","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1696112,36.1214517]},"properties":{"stars":"3","name":"Chicken Now Venetian","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2869305,36.1685938]},"properties":{"stars":"3.5","name":"Kabuki Japanese Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2075436,36.1268272]},"properties":{"stars":"4","name":"Booming Spot Mini Pot","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.297978,36.09753504]},"properties":{"stars":"4","name":"Mashisoyo","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.138092,36.03188706]},"properties":{"stars":"2.5","name":"Burger Dogs","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2976559,36.0947119]},"properties":{"stars":"4.5","name":"Raw Food Express","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2792238,36.1253118]},"properties":{"stars":"4","name":"CJ's Italian Ice & Custard","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1250763,36.12891388]},"properties":{"stars":"4","name":"Rat Pack Bar And Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.236766,36.158588]},"properties":{"stars":"4","name":"Kaba Curry","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1561175,36.1459136]},"properties":{"stars":"3.5","name":"Aztec Inn","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.062589,36.165791]},"properties":{"stars":"4.5","name":"Roberto's Taco Shop","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.175396,36.057472]},"properties":{"stars":"4","name":"RePete's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2627014,36.1153007]},"properties":{"stars":"1.5","name":"Buffalo's Pizza","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.241529,36.126747]},"properties":{"stars":"3","name":"Chapa Ghetti","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.205555,36.15080125]},"properties":{"stars":"5","name":"Sno Shack Hawaiian Shave Ice","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1342851,36.15847333]},"properties":{"stars":"4","name":"Goto Pares Atbp","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.241332,36.055414]},"properties":{"stars":"2.5","name":"DT's Filipino Food & Karaoke","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.3008052,36.1465377]},"properties":{"stars":"4","name":"Bachi Burger","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.278554,36.22110608]},"properties":{"stars":"2","name":"A&W All American Food","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2259262,36.1265774]},"properties":{"stars":"3.5","name":"Taiwan Kitchen","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.136143,36.013144]},"properties":{"stars":"3.5","name":"Shabu Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2086334,36.15869904]},"properties":{"stars":"4","name":"Dita's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.152902,36.12840195]},"properties":{"stars":"2.5","name":"Aces","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1721598,36.11643684]},"properties":{"stars":"3.5","name":"Center Cut Steakhouse","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1706648,36.1247554]},"properties":{"stars":"2","name":"Se<U+00F1>or Frog's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2820623,36.30272724]},"properties":{"stars":"4","name":"Seafood Station","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.154298,36.01469444]},"properties":{"stars":"3.5","name":"Don Tortaco Mexican Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.0580442,36.24108887]},"properties":{"stars":"3.5","name":"IHOP","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1703644,36.12761515]},"properties":{"stars":"1.5","name":"Carlos' n Charlie's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1797061,36.2750621]},"properties":{"stars":"3","name":"Roberto's Taco Shop","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.195761,36.127743]},"properties":{"stars":"5","name":"Soul Food Cafe Express","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.224318,36.127754]},"properties":{"stars":"3.5","name":"Lucky Fish Sushi & Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2097501,36.1262018]},"properties":{"stars":"4.5","name":"Kabuto","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.208687,36.218227]},"properties":{"stars":"4","name":"Ascar Cafe","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1768768,36.11194592]},"properties":{"stars":"4","name":"Jean Philippe Patisserie","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.102399,36.085437]},"properties":{"stars":"3.5","name":"Roma Garden","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1722323,36.067199]},"properties":{"stars":"2","name":"Ranch House Kitchen","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.117954,36.01807318]},"properties":{"stars":"3.5","name":"Inka Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1456451,36.12484206]},"properties":{"stars":"2.5","name":"Dal Toro Ristorante","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2329681,36.2401661]},"properties":{"stars":"3.5","name":"Golden China Chinese Cuisine","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2435575,36.0718741]},"properties":{"stars":"4","name":"Roberto's Taco Shop","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1958932,36.1440251]},"properties":{"stars":"4","name":"Baan Mae Toy","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2426231,36.19527408]},"properties":{"stars":"3.5","name":"Joes Crab Shack","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1463616,36.1716577]},"properties":{"stars":"4","name":"Pop Up Pizza","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1640127,36.12572243]},"properties":{"stars":"3.5","name":"Mizumi","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.12748,36.05172]},"properties":{"stars":"4","name":"Burger King","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1163455,36.277801]},"properties":{"stars":"4.5","name":"Papa Murphy's Pizza","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.207568,36.0990337]},"properties":{"stars":"2","name":"Foods 2 Go","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1864851,36.1186984]},"properties":{"stars":"3.5","name":"VooDoo Steak","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.117119,36.016485]},"properties":{"stars":"4","name":"Beach Hut Deli","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2182851,36.1265084]},"properties":{"stars":"3.5","name":"DaKao Quan","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1190076,36.2386502]},"properties":{"stars":"2.5","name":"Vino's Pizzeria","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1919022,36.19393539]},"properties":{"stars":"4","name":"Wildburger","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1727442,36.10790446]},"properties":{"stars":"3.5","name":"Rockin' Taco Mexican Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.187333,36.100396]},"properties":{"stars":"3","name":"Tacos Mexico","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.207512,36.123589]},"properties":{"stars":"3.5","name":"Tasty Station","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1615118,36.1356446]},"properties":{"stars":"2.5","name":"Banana Leaf Caf<U+00E9>","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2349091,36.30267536]},"properties":{"stars":"3.5","name":"Chilis Bar and Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2248317,36.1593232]},"properties":{"stars":"4","name":"Time-Out Sports Bar & Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2115631,36.12539669]},"properties":{"stars":"4.5","name":"Veggie House","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.31602,36.29161513]},"properties":{"stars":"3","name":"Mr Jim's Pizza","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2327243,36.1591404]},"properties":{"stars":"3.5","name":"Chipotle Mexican Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2438998,36.04487441]},"properties":{"stars":"2","name":"Church's Chicken","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1711298,36.128561]},"properties":{"stars":"3.5","name":"Coast 2 Coast Food Truck","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.146372,36.124423]},"properties":{"stars":"3","name":"Bagatelle Las Vegas","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2956118,36.2684007]},"properties":{"stars":"4","name":"A La Mode","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1727284,36.1089133]},"properties":{"stars":"3","name":"McDonald's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1469487,36.17235662]},"properties":{"stars":"3.5","name":"Zabas Mexican Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2500796,36.1970662]},"properties":{"stars":"4","name":"Five Guys Burgers and Fries","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2794814,36.1439835]},"properties":{"stars":"4.5","name":"Pasquales Ristorante","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.308663,36.114442]},"properties":{"stars":"4.5","name":"Custom Built Pizza","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2251892,36.12664795]},"properties":{"stars":"4","name":"Fresh Cup","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2058661,36.27981964]},"properties":{"stars":"4","name":"Goldilocks","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1565018,36.01253128]},"properties":{"stars":"3.5","name":"Subway","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1176201,36.09944318]},"properties":{"stars":"3","name":"China One","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1193237,36.01107788]},"properties":{"stars":"4","name":"Freddy's Frozen Custard & Steakburgers","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1555023,36.14784241]},"properties":{"stars":"4.5","name":"Sandwich Carvery 108","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2110596,36.15876007]},"properties":{"stars":"4","name":"Pako Taco Mex Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1196545,36.20262893]},"properties":{"stars":"3.5","name":"Farmer Boys","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1659357,36.1079121]},"properties":{"stars":"3","name":"As<U+00ED>an Fresh","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1741057,36.10978887]},"properties":{"stars":"4","name":"LuckyRice Night Market","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.115738,36.175599]},"properties":{"stars":"4.5","name":"Taqueria El Buen Pastor","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.169034,36.12487673]},"properties":{"stars":"4","name":"Grimaldi's Pizzeria","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1724216,36.10882248]},"properties":{"stars":"3","name":"Twin Peaks","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1372337,36.10864355]},"properties":{"stars":"3","name":"Flame Kabob","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2984541,36.2109124]},"properties":{"stars":"4","name":"Sun City Caf<U+00E9>","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1751,36.2224]},"properties":{"stars":"3.5","name":"Smashburger","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2787781,36.1140976]},"properties":{"stars":"4","name":"Bobby Q Grille","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2266693,36.10029597]},"properties":{"stars":"4","name":"Buldogis Eatery","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.031694,36.084412]},"properties":{"stars":"3","name":"Taco Bell","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2023161,36.11607909]},"properties":{"stars":"4","name":"Earl of Sandwich","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1511348,36.0849929]},"properties":{"stars":"2","name":"Eistein Bros Bagels","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1727629,36.1050739]},"properties":{"stars":"3","name":"Fat Bar","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1187329,36.0162554]},"properties":{"stars":"3.5","name":"Bistro95Ten & Lounge","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2087708,36.16528702]},"properties":{"stars":"4","name":"Decatur Drug Store Coffee Shop","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2600896,36.27134325]},"properties":{"stars":"3.5","name":"Taste A Chi-town Eatery","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1795349,36.26283646]},"properties":{"stars":"4","name":"El Charro's Taco Shop","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1529465,36.10720444]},"properties":{"stars":"3.5","name":"Firkin On Paradise","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.3290009,36.22101953]},"properties":{"stars":"4","name":"Tropical Smoothie Cafe","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.153558,36.150372]},"properties":{"stars":"2","name":"Burger King","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1149607,36.0291019]},"properties":{"stars":"3.5","name":"Ihop","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.139075,36.167841]},"properties":{"stars":"4","name":"Big Ern's BBQ","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.160294,36.184536]},"properties":{"stars":"4.5","name":"Jimmy's Louisiana Market Deli's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1648858,36.1314439]},"properties":{"stars":"2.5","name":"Yafo Kosher Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.242873,36.089649]},"properties":{"stars":"5","name":"Made In Italy Pizzeria Romana","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.243453,36.08235]},"properties":{"stars":"3.5","name":"Fresh Mama","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.280943,36.057842]},"properties":{"stars":"4","name":"Jersey Mike's Subs","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.0764253,36.14538458]},"properties":{"stars":"4.5","name":"Sauced","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1346054,36.28159714]},"properties":{"stars":"3","name":"McDonald's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1730333,36.161111]},"properties":{"stars":"3.5","name":"New York Bagel Deli & Gyros","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2367096,36.15871048]},"properties":{"stars":"4","name":"Wing King","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.262282,36.219133]},"properties":{"stars":"3.5","name":"Sabatino's Authentic NY Pizzeria","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2843553,36.1385152]},"properties":{"stars":"4","name":"Those Guys Pies","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2599314,36.20398165]},"properties":{"stars":"4","name":"Sierra Gold","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.242775,36.05561822]},"properties":{"stars":"3.5","name":"El Pollo Loco","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2434183,36.1919495]},"properties":{"stars":"3","name":"Teriyaki Boy","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.141869,36.115142]},"properties":{"stars":"3.5","name":"India Masala Bar & Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2803993,36.1139221]},"properties":{"stars":"4.5","name":"Kosher On the Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2429771,36.17311444]},"properties":{"stars":"5","name":"Sleepy Wilson's Barbecue","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.290218,36.075572]},"properties":{"stars":"4.5","name":"Paparazzi Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1987076,36.1440506]},"properties":{"stars":"3.5","name":"Mega Ramen & Thai Noodle","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1236952,36.1697096]},"properties":{"stars":"3.5","name":"95 Ten","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.125135,36.100336]},"properties":{"stars":"3","name":"Chicago Dogs","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2072287,36.1634312]},"properties":{"stars":"2","name":"Frisco Market Buffet","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1375449,36.08749118]},"properties":{"stars":"3","name":"Las Vegas Chophouse & Brewery","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.26569,36.264255]},"properties":{"stars":"4","name":"Above the Crust","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.165969,36.127858]},"properties":{"stars":"3.5","name":"Allegro","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1190859,36.06512762]},"properties":{"stars":"3.5","name":"Roberto's Taco Shop","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1639502,36.1132842]},"properties":{"stars":"2","name":"Boardhouse Serious Sandwich","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.176915,36.106704]},"properties":{"stars":"3","name":"Tetsu","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1772308,36.06824971]},"properties":{"stars":"4","name":"Fracos & Froccs","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1433334,36.19606018]},"properties":{"stars":"3","name":"Happy's Pizza","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1368314,36.14613599]},"properties":{"stars":"3.5","name":"Las Tapatias","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2424613,36.09863906]},"properties":{"stars":"4.5","name":"Presto Cafe","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1851951,36.12566015]},"properties":{"stars":"4","name":"Pho Bosa","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1293626,36.0863335]},"properties":{"stars":"3","name":"Village Pub & Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1501539,36.1208128]},"properties":{"stars":"4.5","name":"Las Delicias","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2998346,36.14723627]},"properties":{"stars":"4","name":"808 Tapas East-West Infusion","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1752889,36.11771825]},"properties":{"stars":"4","name":"Ah So","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1711298,36.128561]},"properties":{"stars":"2.5","name":"Baja Fresh Mexican Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2056,36.115074]},"properties":{"stars":"4","name":"Dream Cafe & Hookah Bar","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.224263,36.1129279]},"properties":{"stars":"4","name":"188 Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1320877,36.14460754]},"properties":{"stars":"4","name":"Chuy's Tacos","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.13894,36.166723]},"properties":{"stars":"4","name":"eat.","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2660053,36.1442303]},"properties":{"stars":"1.5","name":"Dennys","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.152708,36.108808]},"properties":{"stars":"4","name":"Culinary Dropout","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1748276,36.1162102]},"properties":{"stars":"4","name":"Bacchanal Buffet","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1328054,36.11529366]},"properties":{"stars":"2.5","name":"Lee's Buffet","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1514119,36.1362847]},"properties":{"stars":"2","name":"Vince Neil's Tatuado Cantina","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1806678,36.2919853]},"properties":{"stars":"3","name":"Capriotti's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1342367,36.07142799]},"properties":{"stars":"4","name":"Fresh Kabob","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1751065,36.22238707]},"properties":{"stars":"3.5","name":"Tasty China","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1840836,36.2611299]},"properties":{"stars":"3.5","name":"Kusina Ni Lorraine","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.225315,36.0555312]},"properties":{"stars":"3","name":"The Maple Tree Cafe","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.270802,36.298153]},"properties":{"stars":"3.5","name":"The Maple Tree","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.13811,36.115618]},"properties":{"stars":"3.5","name":"Five Guys Burgers and Fries","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1722078,36.09025951]},"properties":{"stars":"4","name":"Pop's Pizza","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2800962,36.0569676]},"properties":{"stars":"3","name":"Yum Yum BBQ","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2367146,36.1586036]},"properties":{"stars":"4","name":"Tacos El Jefe's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1738217,36.12536953]},"properties":{"stars":"3.5","name":"Seafood Shack","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1390228,36.08851624]},"properties":{"stars":"2.5","name":"Pei Wei Asian Diner","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.197258,36.1725319]},"properties":{"stars":"4","name":"Hot Dog on a Stick","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1763073,36.09846439]},"properties":{"stars":"3","name":"Tropical Smoothie Cafe","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.186183,36.238937]},"properties":{"stars":"2.5","name":"Tachos Michoacan","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2094193,36.12681961]},"properties":{"stars":"4.5","name":"Japanese Curry Zen","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1614533,36.1438684]},"properties":{"stars":"3.5","name":"Love Thai Cuisine","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2437024,36.1520108]},"properties":{"stars":"4","name":"Fajitas House","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2074043,36.1299924]},"properties":{"stars":"4","name":"Nha Trang Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1347857,36.08559861]},"properties":{"stars":"2","name":"Dewar's Clubhouse","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2250414,36.1953261]},"properties":{"stars":"3","name":"El Pollo Loco","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1902161,36.08797836]},"properties":{"stars":"4.5","name":"Jullie's Caffe Soleil","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2451796,36.1595573]},"properties":{"stars":"3.5","name":"Papa Murphy's Take 'N' Bake Pizza","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.172121,36.116349]},"properties":{"stars":"2","name":"LA Subs & Salads","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1551294,36.1444516]},"properties":{"stars":"3","name":"Thai Pepper Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2425995,36.06394958]},"properties":{"stars":"3.5","name":"Rocco's NY Pizza","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2006442,36.1154188]},"properties":{"stars":"4","name":"Umiya","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2431576,36.2184241]},"properties":{"stars":"3.5","name":"Guthrie's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1427714,36.169971]},"properties":{"stars":"3.5","name":"American Coney Island","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.17132,36.1203829]},"properties":{"stars":"3.5","name":"Snack Nook","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1084585,36.1305272]},"properties":{"stars":"4.5","name":"50s Diner","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2245664,36.1280756]},"properties":{"stars":"4.5","name":"Chada Thai & Wine","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1784884,36.1092406]},"properties":{"stars":"3.5","name":"Cafe Vetro","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1757002,36.11068263]},"properties":{"stars":"4","name":"Javier's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.169228,36.102324]},"properties":{"stars":"4.5","name":"Project Pie","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1186951,36.0161703]},"properties":{"stars":"3","name":"California Crab","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.17556,36.11376953]},"properties":{"stars":"3.5","name":"Snacks","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1423943,36.1421289]},"properties":{"stars":"3","name":"Garden Korean Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.184999,36.041673]},"properties":{"stars":"3.5","name":"2nd Annual Asian Food Festival","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.241332,36.055414]},"properties":{"stars":"3.5","name":"Soul Food Cafe","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2292912,36.254862]},"properties":{"stars":"3","name":"H&H BBQ Plus 2","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2090921,36.1229755]},"properties":{"stars":"4","name":"Tacos La Mexicana","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2855925,36.1671901]},"properties":{"stars":"4","name":"The View Wine Bar & Kitchen","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1555371,36.147076]},"properties":{"stars":"4","name":"McCall's Heartland Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1711298,36.128561]},"properties":{"stars":"4.5","name":"Dragon Grille","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.304563,36.1920671]},"properties":{"stars":"3","name":"Domino's Pizza","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1547751,36.1273341]},"properties":{"stars":"3.5","name":"Grill 55","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1998825,36.20313644]},"properties":{"stars":"4.5","name":"El Tacontento","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1173501,36.10071807]},"properties":{"stars":"4","name":"Fukumimi Ramen","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2086397,36.12842582]},"properties":{"stars":"4.5","name":"Hungry Islander","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1726642,36.0683629]},"properties":{"stars":"2.5","name":"Meatball Spot","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.292824,36.1597905]},"properties":{"stars":"4","name":"Honey Salt","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2430194,36.0360324]},"properties":{"stars":"4","name":"Pho Annie","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.180947,36.292472]},"properties":{"stars":"3","name":"Bistro 57","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2097883,36.2386847]},"properties":{"stars":"4","name":"Sun's Thai Food & Jerky","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.3072017,36.1909406]},"properties":{"stars":"3","name":"Rachel's Kitchen","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.14181,36.30003]},"properties":{"stars":"3","name":"The Salted Lime","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2746048,36.28670518]},"properties":{"stars":"3.5","name":"Metro Pizza","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.084904,36.1329483]},"properties":{"stars":"2.5","name":"Slices Pizza","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1727516,36.1062031]},"properties":{"stars":"4","name":"DJ's Taco Bar","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2182851,36.1265084]},"properties":{"stars":"2.5","name":"Pho Pasteur & Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.138026,36.089494]},"properties":{"stars":"3","name":"Sbarro Italian Eatery","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.20627,36.1709995]},"properties":{"stars":"4","name":"Lima Limon","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2413651,36.12689968]},"properties":{"stars":"4","name":"Korea Town Plaza Food Court","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1701939,36.1226902]},"properties":{"stars":"4","name":"Rattlecan","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.0537949,36.24125671]},"properties":{"stars":"3","name":"Korea House BBQ","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2870029,36.1667009]},"properties":{"stars":"3.5","name":"Cantina Laredo","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.0538879,36.2409341]},"properties":{"stars":"3.5","name":"Korea House BBQ","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2447364,36.05287885]},"properties":{"stars":"3.5","name":"Don Tortaco","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1751852,36.09856051]},"properties":{"stars":"4.5","name":"Tropical Smoothie Cafe - Excalibur","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.175766,36.09883118]},"properties":{"stars":"4","name":"Hot Dog On A Stick","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.209434,36.278941]},"properties":{"stars":"4.5","name":"Costco Food Court","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1527541,36.04253156]},"properties":{"stars":"3.5","name":"Shoku Ramen","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.225858,36.254862]},"properties":{"stars":"2.5","name":"Roberto's Tacos","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.145989,36.14458]},"properties":{"stars":"3.5","name":"Marie Callendars","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2425996,36.11261738]},"properties":{"stars":"2.5","name":"Pepe's Tacos","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.282141,36.201845]},"properties":{"stars":"4","name":"Thai Style Noodle House","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.172249,36.104192]},"properties":{"stars":"2.5","name":"Denny's on the Strip","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2309179,36.1546303]},"properties":{"stars":"2.5","name":"Maria's Taco Shop","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2791672,36.124897]},"properties":{"stars":"4","name":"Tacos La Mexicana","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2069016,36.07250977]},"properties":{"stars":"3.5","name":"Sin City Thai Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.3132043,36.1002256]},"properties":{"stars":"4","name":"Kauai Cafe","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2013078,36.12642806]},"properties":{"stars":"3","name":"Jenni Pho Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1542695,36.1186973]},"properties":{"stars":"2.5","name":"Kelly's Prime Steak & Seafood","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2245664,36.1280756]},"properties":{"stars":"4","name":"Kaze Sushi","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1169739,36.02026367]},"properties":{"stars":"4","name":"Top Notch Barbeque","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.279884,36.06027]},"properties":{"stars":"2.5","name":"KFC","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.140844,36.170055]},"properties":{"stars":"3","name":"Denny's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.0637698,36.10197187]},"properties":{"stars":"4.5","name":"Taco Azteca","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.288542,36.1153939]},"properties":{"stars":"4","name":"El Ranchero Mexican Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.145248,36.08316]},"properties":{"stars":"2.5","name":"Corcoran's Irish Pub","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.172608,36.109623]},"properties":{"stars":"3.5","name":"Lombardi's Romagna Mia","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.242568,36.195222]},"properties":{"stars":"1.5","name":"Joes Crab Shack","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2086907,36.12550514]},"properties":{"stars":"3.5","name":"Bund Shanghai","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2224006,36.0999926]},"properties":{"stars":"3.5","name":"Taqueria La Casa Del Pastor","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2743251,36.1443668]},"properties":{"stars":"4.5","name":"La Belle Terre Bread French Bakery Caf<U+00E9>","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2435192,36.0415312]},"properties":{"stars":"4.5","name":"Chile Verde Express","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2578409,36.2647918]},"properties":{"stars":"4","name":"Novecento Pizzeria","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2890613,36.16331478]},"properties":{"stars":"3.5","name":"Panera Bread","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2070355,36.0348856]},"properties":{"stars":"4","name":"Beanz Coffee Cafe","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.3043039,36.1005737]},"properties":{"stars":"4","name":"Biscuits 2 Burgers","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1149607,36.0291019]},"properties":{"stars":"4","name":"Nour Deli And Bakery","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.172557,36.109068]},"properties":{"stars":"3.5","name":"Bonanno's New York Pizzeria Restaurant & Bar","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1755429,36.09646318]},"properties":{"stars":"3.5","name":"Original Chicken Tender","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1752979,36.10500616]},"properties":{"stars":"4","name":"Original Chicken Tender","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1474426,36.23889647]},"properties":{"stars":"3.5","name":"Tropical Smoothie Cafe","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2513918,36.2636158]},"properties":{"stars":"4.5","name":"El Regio","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.0620928,36.1573631]},"properties":{"stars":"2","name":"Monte's Pizza Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1947749,36.1264024]},"properties":{"stars":"4","name":"Yu-Yu","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1384919,36.1008854]},"properties":{"stars":"3.5","name":"PT's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1196711,36.0816624]},"properties":{"stars":"4.5","name":"Firehouse Subs","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1723385,36.1101084]},"properties":{"stars":"4","name":"Gordon Ramsay BurGR","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2855925,36.1671901]},"properties":{"stars":"4","name":"Taste Market & Deli","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.0961362,36.11578546]},"properties":{"stars":"4","name":"Nosh & Swig","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1779719,36.2869783]},"properties":{"stars":"3","name":"KFC","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.294935,36.1446524]},"properties":{"stars":"4","name":"China Gourmet","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.141972,36.170125]},"properties":{"stars":"3","name":"Asada's Tacos","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.3343585,36.15655939]},"properties":{"stars":"2.5","name":"Pink's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2791683,36.1266055]},"properties":{"stars":"4.5","name":"Carl's Jr","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2245664,36.1280756]},"properties":{"stars":"3.5","name":"Shaanxi Gourmet","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1667111,36.1260222]},"properties":{"stars":"4","name":"Andrea's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1711726,36.1240302]},"properties":{"stars":"2","name":"Little Richies Chicago Style Beef and Dogs at Treasure Island","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1762196,36.09586302]},"properties":{"stars":"2.5","name":"Bonanno's New York Pizzeria","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.175557,36.098909]},"properties":{"stars":"2","name":"Popeyes Lousiana Kitchen","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.175557,36.098909]},"properties":{"stars":"1.5","name":"Pick Up Stix","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1718063,36.03559494]},"properties":{"stars":"3","name":"Vegas Pizza And Deli","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2872813,36.16747433]},"properties":{"stars":"3.5","name":"Poppy Den","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2245664,36.1280756]},"properties":{"stars":"3.5","name":"Myxx Hookah Lounge","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1195256,36.01249907]},"properties":{"stars":"4","name":"Windy City Beefs N Pizza","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1755318,36.10782457]},"properties":{"stars":"3.5","name":"She by Morton's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1596576,35.9748265]},"properties":{"stars":"2.5","name":"Burger King","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1148655,36.1721046]},"properties":{"stars":"3.5","name":"Racha Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.119423,36.059631]},"properties":{"stars":"2","name":"Kens Burgers and Pizza","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1370841,36.1066864]},"properties":{"stars":"4","name":"Chao Thai Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1420286,36.1296179]},"properties":{"stars":"4","name":"Midtown","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1730561,36.0919655]},"properties":{"stars":"3","name":"Citizens Kitchen & Bar","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.146866,36.14323]},"properties":{"stars":"4","name":"Fat Choy","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1721972,36.11957566]},"properties":{"stars":"4","name":"Ruth's Chris Steak House","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2979249,36.1018156]},"properties":{"stars":"5","name":"Tasty Crepes","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1653038,36.1293962]},"properties":{"stars":"3.5","name":"VDKA","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1432281,36.1693831]},"properties":{"stars":"3.5","name":"D Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.0768537,36.09972165]},"properties":{"stars":"5","name":"Tacos El Compita 3","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1192924,36.08130504]},"properties":{"stars":"3.5","name":"Farmer Boys","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1724729,36.1087121]},"properties":{"stars":"3.5","name":"Bubba Gump Shrimp Co","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1149742,36.27677068]},"properties":{"stars":"3.5","name":"Lina's Mexican Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.3007591,36.1455404]},"properties":{"stars":"3.5","name":"Chinita Mexican Bar & Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.0998341,36.1004618]},"properties":{"stars":"4.5","name":"Taco y Taco","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1269965,36.1001186]},"properties":{"stars":"4.5","name":"Remiix","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.140026,36.1692899]},"properties":{"stars":"3","name":"Radio City Pizza","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2438503,36.0899451]},"properties":{"stars":"4","name":"Pizzalicious","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.209737,36.114935]},"properties":{"stars":"4.5","name":"Yonaka Modern Japanese","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1880112,36.10144043]},"properties":{"stars":"2","name":"Burger King","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2976303,36.09474945]},"properties":{"stars":"3.5","name":"Streets of New York","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2430928,36.1226985]},"properties":{"stars":"4","name":"Gerardo's Taco Shop","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2971243,36.111488]},"properties":{"stars":"4","name":"Baja Taco","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.3140301,36.1154163]},"properties":{"stars":"4.5","name":"Ohjah Japanese Steakhouse Sushi & Hibachi Flamingo","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2803993,36.1139221]},"properties":{"stars":"5","name":"Layla Grill & Hookah","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2867365,36.28129521]},"properties":{"stars":"3.5","name":"Red Ginseng Narita Sushi & BBQ","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1156452,36.16987163]},"properties":{"stars":"4","name":"Border Food Juarez-El Paso","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2002594,36.11474429]},"properties":{"stars":"3","name":"Einstein Bros Bagels","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.175407,36.144113]},"properties":{"stars":"1.5","name":"Johnny Rockets","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1538315,36.1089325]},"properties":{"stars":"3.5","name":"Fu Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.147904,36.114988]},"properties":{"stars":"4.5","name":"Quiznos","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.3062846,36.1148228]},"properties":{"stars":"4","name":"Greens and Proteins","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1435569,36.1692708]},"properties":{"stars":"4.5","name":"Joe Vicari's Andiamo Italian Steakhouse","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2264736,36.1431869]},"properties":{"stars":"4","name":"21 Restaurant & Lounge","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.221713,36.142796]},"properties":{"stars":"3.5","name":"Chieti Coffee & Roasting","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.0648375,36.1377401]},"properties":{"stars":"2","name":"Popeyes Chicken","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.136879,36.117891]},"properties":{"stars":"3","name":"Wingstop","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1457185,36.1681158]},"properties":{"stars":"4.5","name":"Anthony's New York Pizza & Deli","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.151261,36.108898]},"properties":{"stars":"4","name":"Gangnam Asian BBQ Dining","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1775155,36.11703446]},"properties":{"stars":"4","name":"Nobu","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.236683,36.15885597]},"properties":{"stars":"4.5","name":"Weeziana Gumbo & More","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.175922,36.095424]},"properties":{"stars":"4.5","name":"LA Subs & Salads","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1711736,36.12371259]},"properties":{"stars":"3","name":"The Coffee Shop","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.082142,36.143775]},"properties":{"stars":"4.5","name":"Bagels And Subs","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1722643,36.0702319]},"properties":{"stars":"3.5","name":"Bonefish Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.198798,36.114209]},"properties":{"stars":"3","name":"Heraea","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.141935,36.109511]},"properties":{"stars":"4","name":"Sushic","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.133261,36.08040931]},"properties":{"stars":"2","name":"La Tapenade Mediterranean Cafe","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.186442,36.118699]},"properties":{"stars":"3.5","name":"Royal India Bistro","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.3315267,36.1608544]},"properties":{"stars":"3","name":"Dos Caminos","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2076284,36.1589583]},"properties":{"stars":"3","name":"Church's Chicken","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.3023364,36.10034447]},"properties":{"stars":"4.5","name":"Juan's Flaming Fajitas & Cantina","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2259494,36.05495243]},"properties":{"stars":"4.5","name":"Subway","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2222652,36.17560084]},"properties":{"stars":"4.5","name":"Chicken Itza","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1519918,36.1524766]},"properties":{"stars":"4.5","name":"Felix Hot Dog Taco Shop","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.139516,36.169872]},"properties":{"stars":"4","name":"Rachel's Kitchen","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.278454,36.135529]},"properties":{"stars":"3.5","name":"Jimmy John's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1528137,36.13551749]},"properties":{"stars":"2","name":"burger bistro","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1730038,36.1140695]},"properties":{"stars":"4.5","name":"Fountains Brunch","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.127809,36.0797665]},"properties":{"stars":"4.5","name":"Centurian Club By American Express","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2597342,36.19450971]},"properties":{"stars":"3","name":"L & L Hawaiian Barbecue","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2859196,36.16750047]},"properties":{"stars":"3.5","name":"Pizza Lounge","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1710309,36.10025101]},"properties":{"stars":"2.5","name":"South Beach Food Court","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.145281,36.17145]},"properties":{"stars":"3.5","name":"Nathan's Famous Hot Dogs","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1747074,36.0113116]},"properties":{"stars":"4","name":"Zenshin Asian Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.3122252,36.1588941]},"properties":{"stars":"3","name":"PoshBurger Bistro","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.134897,36.161702]},"properties":{"stars":"5","name":"Bronze Cafe at The Center","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2203807,36.1435394]},"properties":{"stars":"3.5","name":"Cafe El Mundo Cubano","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1356562,36.08597502]},"properties":{"stars":"3.5","name":"Carl's Jr.","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.058642,36.1074296]},"properties":{"stars":"3.5","name":"The Chuck Wagon Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2378738,36.11487826]},"properties":{"stars":"4","name":"Caf<U+00E9> de Cebu","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.140097,36.169326]},"properties":{"stars":"3.5","name":"Park on Fremont","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1684761,36.1242528]},"properties":{"stars":"4","name":"Grand Lux Cafe","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.117026,36.0203391]},"properties":{"stars":"4","name":"Monta Chaya","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2428808,36.2191108]},"properties":{"stars":"4","name":"Thai Noodles Cafe","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.137903,36.13884]},"properties":{"stars":"3.5","name":"Hacienda Del Rey","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2424433,36.2029728]},"properties":{"stars":"4.5","name":"Rendezvous Cafe","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1778627,36.06814709]},"properties":{"stars":"4","name":"Capriotti's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2665268,36.272939]},"properties":{"stars":"3","name":"Olive Garden Italian Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1896048,36.12564455]},"properties":{"stars":"3","name":"Koraku Ramen","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2783815,36.05641359]},"properties":{"stars":"3.5","name":"Firehouse Subs","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2114,36.0786]},"properties":{"stars":"2.5","name":"Meat Chix And Wieners","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.0991612,36.10033606]},"properties":{"stars":"4","name":"The Sicilian Restorante","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.0815025,36.17376867]},"properties":{"stars":"5","name":"Las Taquizas","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1521048,36.107194]},"properties":{"stars":"4.5","name":"Stir Krazy Mongolian Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.078775,36.240859]},"properties":{"stars":"3.5","name":"Goodfellas Pizzeria","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1151449,36.10020889]},"properties":{"stars":"4.5","name":"Taco Tijuana","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1423943,36.1421289]},"properties":{"stars":"4","name":"Myung Sung","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.3152246,36.21860085]},"properties":{"stars":"3.5","name":"Robertos Taco Shop","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2698822,36.28350067]},"properties":{"stars":"4","name":"Lulu's Bread & Breakfast","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1728049,36.1326597]},"properties":{"stars":"3.5","name":"Da Pizzeria","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1395496,36.1687401]},"properties":{"stars":"3.5","name":"La Comida","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.158149,36.057578]},"properties":{"stars":"4.5","name":"La Bocce","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1752229,36.10787588]},"properties":{"stars":"3","name":"Starbucks","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2595642,36.2185429]},"properties":{"stars":"4","name":"Sasa Sushi","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.280925,36.056118]},"properties":{"stars":"2","name":"Meat Chix & Wieners","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.11839,36.01760744]},"properties":{"stars":"4","name":"Cafe Zupas","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2098026,36.14690462]},"properties":{"stars":"4.5","name":"Wa Da Pho","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1115955,36.2404169]},"properties":{"stars":"2","name":"The Pizza Kings","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1526505,36.0125177]},"properties":{"stars":"4","name":"Hank's Philly Steaks","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2659777,36.1988542]},"properties":{"stars":"5","name":"Body Food Kitchen","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2418546,36.20220201]},"properties":{"stars":"4.5","name":"Cilantro Tacos","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.136389,36.175]},"properties":{"stars":"4.5","name":"The Taco Man","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1373858,36.08595819]},"properties":{"stars":"3","name":"Burger King","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.250331,36.219859]},"properties":{"stars":"3.5","name":"Arata Sushi","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.15036,36.01979]},"properties":{"stars":"3.5","name":"Chopstix 2","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1726355,36.10877232]},"properties":{"stars":"4","name":"Manhattan Streets","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1676889,36.10301792]},"properties":{"stars":"4","name":"Michael Mina Pub 1842","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1737761,36.0909158]},"properties":{"stars":"4.5","name":"PRESS at Four Seasons","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.224511,36.238501]},"properties":{"stars":"2.5","name":"Angelo's Pizza  Kitchen","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1183814,36.02762847]},"properties":{"stars":"3.5","name":"PT'S Tavern","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2536257,36.1430817]},"properties":{"stars":"4.5","name":"Kinnaree Thai and Vegetarian","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.28715,36.27809]},"properties":{"stars":"3.5","name":"Philly Steak Express","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.208013,36.1250314]},"properties":{"stars":"3.5","name":"Amanta Real Thai Food","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.3519,36.1373]},"properties":{"stars":"3","name":"Auntie Anne's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1367707,36.10444824]},"properties":{"stars":"4","name":"Rumbi Island Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1813637,36.077526]},"properties":{"stars":"4.5","name":"SkinnyFATS","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1163475,36.0559061]},"properties":{"stars":"4","name":"Giovanni's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.3097052,36.1146298]},"properties":{"stars":"4","name":"Manhattan Fish Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2794948,36.1032073]},"properties":{"stars":"4.5","name":"The Bar @ Tropicana & Durango","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.195684,36.114539]},"properties":{"stars":"2.5","name":"Chronic Tacos","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.186442,36.118699]},"properties":{"stars":"3","name":"Pho Da Nang","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.164273,36.13175404]},"properties":{"stars":"3","name":"Kabob N More","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2468132,36.1944211]},"properties":{"stars":"4","name":"Raising Cane's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.168115,36.10337034]},"properties":{"stars":"3","name":"McDonald's - MGM Grand The District Food Court","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2330307,36.1596183]},"properties":{"stars":"4.5","name":"Wake Up Coffee Cafe","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1727209,36.02444595]},"properties":{"stars":"3.5","name":"Burger Brothers","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2259262,36.1265774]},"properties":{"stars":"4","name":"Pho Sing Sing","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.197211,36.172577]},"properties":{"stars":"4.5","name":"Potato Corner","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1414047,36.16998714]},"properties":{"stars":"3.5","name":"Nacho Daddy","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.17135,36.135076]},"properties":{"stars":"4.5","name":"Yellowfin Sushi & Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1402675,36.1713078]},"properties":{"stars":"4","name":"Gold Spike","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.175557,36.098909]},"properties":{"stars":"3","name":"Schlotzsky's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1545992,36.1199703]},"properties":{"stars":"4","name":"Firefly on Paradise","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.333019,36.162806]},"properties":{"stars":"4.5","name":"Costco Food Court","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1730234,36.07067488]},"properties":{"stars":"4.5","name":"Wildburger","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2869529,36.1672912]},"properties":{"stars":"3.5","name":"Ogden's Hops and Harvest","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2796205,36.05323735]},"properties":{"stars":"3","name":"Sammy Pho Vietnamese Cuisine","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1195172,36.01605207]},"properties":{"stars":"3.5","name":"Protein House","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.279592,36.08436572]},"properties":{"stars":"4","name":"The Lodge Coffee House & Tavern","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.17204,36.106542]},"properties":{"stars":"3.5","name":"China Max","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2579595,36.1958582]},"properties":{"stars":"4","name":"Cafe Zupas","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2066378,36.277188]},"properties":{"stars":"2","name":"Burger King","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1556873,36.0132829]},"properties":{"stars":"3.5","name":"New Day Cafe","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.17154,36.0512]},"properties":{"stars":"3","name":"Subway","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.196473,36.12545112]},"properties":{"stars":"3.5","name":"The Little Kitchen Cafe","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.231437,36.23778173]},"properties":{"stars":"3.5","name":"Basil Thai Fusion","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2093741,36.12683387]},"properties":{"stars":"5","name":"Tetsuro's Sayonara","":" Going Away Uye At Japanese Curry n"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2272996,36.10052786]},"properties":{"stars":"4.5","name":"BG Bistro","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.211199,36.125587]},"properties":{"stars":"3","name":"1900 Asian Cuisine","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2445869,36.1715498]},"properties":{"stars":"3.5","name":"Monte's Pizza Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.244139,36.172318]},"properties":{"stars":"4.5","name":"Pellegrini Pizza","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.134967,36.013806]},"properties":{"stars":"4.5","name":"Pita House","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.10464,36.196201]},"properties":{"stars":"3.5","name":"La Mojarra Loca","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.297923,36.1122889]},"properties":{"stars":"4.5","name":"K-bop Korean Tapas Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1776797,36.0684803]},"properties":{"stars":"2.5","name":"McFadden's Restaurant and Saloon","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2083645,36.099494]},"properties":{"stars":"1.5","name":"BJ's Buffet","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.242713,36.036676]},"properties":{"stars":"4.5","name":"The Sparklings","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.136639,36.114859]},"properties":{"stars":"3","name":"Max's Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2865495,36.28842233]},"properties":{"stars":"3.5","name":"Rachel's Kitchen","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.118069,36.0184249]},"properties":{"stars":"4","name":"Rosas Taco Shop","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2496893,36.2111234]},"properties":{"stars":"3.5","name":"Aces & Ales","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.3045911,36.1139473]},"properties":{"stars":"4","name":"Geisha House Steak & Sushi","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1902562,36.1225863]},"properties":{"stars":"3.5","name":"Little Italy Pizza","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1915115,36.03948827]},"properties":{"stars":"2","name":"McDonald's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.125401,36.17311]},"properties":{"stars":"4.5","name":"Sin City Dogs","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.169402,36.103399]},"properties":{"stars":"3","name":"Avenue Cafe","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1729418,36.1183949]},"properties":{"stars":"3.5","name":"Carmine's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2242177,36.12766031]},"properties":{"stars":"4","name":"Ramen Tatsu","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1983146,36.1263392]},"properties":{"stars":"3.5","name":"Pretty Girls Maid Cafe","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1692922,36.1144707]},"properties":{"stars":"2","name":"Johnny Rockets","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2063397,36.1958244]},"properties":{"stars":"4.5","name":"Sinaloa","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.207463,36.071196]},"properties":{"stars":"2.5","name":"Meat Chix And Wieners","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2780336,36.02064156]},"properties":{"stars":"1.5","name":"McDonald's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.135949,36.159363]},"properties":{"stars":"5","name":"Mariscos Playa Escondida","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.210789,36.1440539]},"properties":{"stars":"4","name":"The Kitchen Gangnam","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2442601,36.171663]},"properties":{"stars":"4","name":"Fish Delish","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2258702,36.0552438]},"properties":{"stars":"3.5","name":"Liu's Kitchen","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.196476,36.1254542]},"properties":{"stars":"3.5","name":"The Little Kitchen Cafe","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1758973,36.09358491]},"properties":{"stars":"4","name":"Rx Boiler Room","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.173703,36.107291]},"properties":{"stars":"3.5","name":"Five50 Pizza Bar","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2812612,36.0561222]},"properties":{"stars":"3.5","name":"Meat Chix And Wieners","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1524787,36.1137792]},"properties":{"stars":"2.5","name":"Sterling Spoon Cafe","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1776326,36.27622286]},"properties":{"stars":"4.5","name":"Sushi Tachi","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1730561,36.0919655]},"properties":{"stars":"3.5","name":"Kumi Japanese Restaurant + Bar","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1441793,36.1226529]},"properties":{"stars":"4.5","name":"Angie's Soul Food Kitchen ijn","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1420069,36.1718303]},"properties":{"stars":"4","name":"Pizza Rock","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1535379,36.1141583]},"properties":{"stars":"2.5","name":"Silver Sevens Hotel and Casino","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.256763,36.218705]},"properties":{"stars":"4.5","name":"Sonic","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.146372,36.124423]},"properties":{"stars":"3.5","name":"Yolos","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1048341,36.0987599]},"properties":{"stars":"1","name":"Godfathers Pizza","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2621609,36.14330324]},"properties":{"stars":"3.5","name":"Firehouse Subs","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.296839,36.09409995]},"properties":{"stars":"3.5","name":"El Pollo Loco","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2074043,36.1299924]},"properties":{"stars":"3.5","name":"Pho Ha Noi","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.063269,36.111041]},"properties":{"stars":"1.5","name":"Papa John's Pizza","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1378401,36.1162231]},"properties":{"stars":"4.5","name":"Tacos El Rey","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.3087109,36.1141241]},"properties":{"stars":"4","name":"Pasta Fresh","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1382748,36.11718307]},"properties":{"stars":"4.5","name":"Sakana","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1373615,36.1084263]},"properties":{"stars":"4.5","name":"Mr D'z Fish House","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1376724,36.1289978]},"properties":{"stars":"4","name":"Mother's Wings & Things","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.243522,36.07097]},"properties":{"stars":"3.5","name":"Crab Corner","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.191902,36.193937]},"properties":{"stars":"4","name":"Wildburger","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1316866,36.1148582]},"properties":{"stars":"3","name":"Barefoot Bob's Beach Bar & Gaming","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2424863,36.14621857]},"properties":{"stars":"4.5","name":"Braddah's Island Style","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.211199,36.125587]},"properties":{"stars":"4","name":"Kaba Curry","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.248724,36.24005032]},"properties":{"stars":"3.5","name":"Original Tommy's Hamburgers","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1723424,36.0552452]},"properties":{"stars":"3.5","name":"Smashburger","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.0784234,36.1731191]},"properties":{"stars":"2.5","name":"Teriyaki Boy Healthy Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.250946,36.23363145]},"properties":{"stars":"4","name":"Chicken and Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1755842,36.09970829]},"properties":{"stars":"1","name":"Pick Up Stixs","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.20964,36.15881212]},"properties":{"stars":"4.5","name":"Hot Dog On a Stick","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.147904,36.114988]},"properties":{"stars":"4.5","name":"Mr. Bejing","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.209737,36.114935]},"properties":{"stars":"5","name":"Winter In July - A Pop-Up Lunch with Yonaka and Snow Shavery","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1059564,36.1963173]},"properties":{"stars":"3.5","name":"El Menudazo Mexican Food Express","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.17204,36.106542]},"properties":{"stars":"3","name":"Kosher Gourmet","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.209066,36.142762]},"properties":{"stars":"3.5","name":"Bar Kada Avenue","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1981452,36.1153808]},"properties":{"stars":"2","name":"Fortunes","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1067983,36.0719464]},"properties":{"stars":"4","name":"Taiga Modern Japanese & Thai Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1972579,36.172532]},"properties":{"stars":"2.5","name":"Charleys Philly Steaks","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2427914,36.1987541]},"properties":{"stars":"4.5","name":"Ohjah Japanese Steakhouse Sushi & Hibachi Rainbow","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2243858,36.0489038]},"properties":{"stars":"4.5","name":"Caf<U+00E9> Casera","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.223218,36.203889]},"properties":{"stars":"4.5","name":"Taqueria El Pastorcito","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.22474,36.14201]},"properties":{"stars":"2.5","name":"Korean Delicious Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.198702,36.144051]},"properties":{"stars":"4.5","name":"Sakina Thai Cuisine","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2778306,36.1297417]},"properties":{"stars":"4","name":"9 on the Plate","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1893781,36.1897374]},"properties":{"stars":"3.5","name":"Texas De Brazil","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.334841,36.155601]},"properties":{"stars":"2.5","name":"Grand Cafe At Red Rock","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.267744,36.0209438]},"properties":{"stars":"3.5","name":"Capriotti's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.108505,36.129608]},"properties":{"stars":"4.5","name":"Ray's Asian Cuisine","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2606002,36.2714828]},"properties":{"stars":"3.5","name":"Double Yoke","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1892,36.1472]},"properties":{"stars":"4.5","name":"Taiwan Deli","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2433426,36.0471607]},"properties":{"stars":"3.5","name":"Rice Trax Teriyaki Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.3148551,36.2957965]},"properties":{"stars":"4","name":"Divine Eatery","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2250161,36.1275516]},"properties":{"stars":"3","name":"Vogue Restaurant & Bar","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2420947,36.04170546]},"properties":{"stars":"4","name":"Rosati's Pizza Pub","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2174492,36.2233297]},"properties":{"stars":"3.5","name":"Bacon Bar","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1187205,36.0176131]},"properties":{"stars":"3.5","name":"Smashburger","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1690261,36.12746703]},"properties":{"stars":"3.5","name":"Mustard Cafe","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1181398,36.01758506]},"properties":{"stars":"4","name":"Novecento Pizzeria","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.3351997,36.15803263]},"properties":{"stars":"3.5","name":"Lucille's Smokehouse Bar-B-Que","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.13359,36.115524]},"properties":{"stars":"4","name":"Palermos Pizza","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2066229,36.2781023]},"properties":{"stars":"2","name":"Cafe Rio","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2248077,36.1277487]},"properties":{"stars":"4.5","name":"Q Bistro","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.15036,36.01979]},"properties":{"stars":"4.5","name":"Full House BBQ","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2125376,36.11263139]},"properties":{"stars":"2.5","name":"The Bistro Buffet","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1725046,36.1206214]},"properties":{"stars":"3.5","name":"Tom Colicchio's Heritage Steak","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2419755,36.1433968]},"properties":{"stars":"3","name":"Plaka","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.3065246,36.1910528]},"properties":{"stars":"3","name":"IHOP","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.17288,36.09353]},"properties":{"stars":"2.5","name":"Burger Bar Las Vegas","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.272706,36.14466602]},"properties":{"stars":"3.5","name":"Sushi Mon","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1719992,36.1206645]},"properties":{"stars":"4","name":"dennys","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.125401,36.17311]},"properties":{"stars":"3.5","name":"Trevi","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2244706,36.0478877]},"properties":{"stars":"4.5","name":"Tonkatsu Kiyoshi","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1189623,36.0123098]},"properties":{"stars":"4.5","name":"Las Cazuelas","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2967138,36.0957508]},"properties":{"stars":"3.5","name":"Smashburger","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.207854,36.0334681]},"properties":{"stars":"4.5","name":"Papa Murphy's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.3148095,36.1219011]},"properties":{"stars":"3.5","name":"Dim Sum Cafe","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1085145,36.1296022]},"properties":{"stars":"3.5","name":"Ray's Asian Cuisine and House of Ramen","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1747367,36.143305]},"properties":{"stars":"3","name":"Grand Cafe","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.135494,36.0410769]},"properties":{"stars":"3.5","name":"Don Tortaco Mexican Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2870302,36.1666763]},"properties":{"stars":"4","name":"Echo & Rig","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1156994,36.26407668]},"properties":{"stars":"3","name":"Millside","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.0908137,36.188247]},"properties":{"stars":"3","name":"Antojitos Estilo Michoacan","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1727367,36.1142391]},"properties":{"stars":"2","name":"Subway","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.146662,36.006928]},"properties":{"stars":"4","name":"Cafe 109","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.120023,36.055832]},"properties":{"stars":"4","name":"Daisho Sushi","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1372696,36.1032681]},"properties":{"stars":"4.5","name":"Firehouse Subs","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.120573,36.01096]},"properties":{"stars":"4.5","name":"Maribel Mexican Food & More","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.143516,36.167682]},"properties":{"stars":"4","name":"Big D Original Italian Subs","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1193836,36.0265582]},"properties":{"stars":"3","name":"Xtreme Sushi & Asian Tapas Bar","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1931957,36.14551512]},"properties":{"stars":"4","name":"Cilantros True Mexican Cuisine","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2437024,36.0864569]},"properties":{"stars":"5","name":"Euro Market & Deli","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.11756,36.26350812]},"properties":{"stars":"4","name":"Roberto's Taco Shop","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2790272,36.1174457]},"properties":{"stars":"3.5","name":"China One","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2344,36.143203]},"properties":{"stars":"5","name":"Arepa Xpress","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2623677,36.1165471]},"properties":{"stars":"5","name":"Oasis Asian Kitchen","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2855925,36.1671901]},"properties":{"stars":"3.5","name":"The Cr<U+00EA>pe","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.17,36.1212]},"properties":{"stars":"5","name":"Zeffirino's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.175,36.1166]},"properties":{"stars":"2.5","name":"Cypress Street Market","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.0336102,36.08363249]},"properties":{"stars":"2.5","name":"Roberto's Taco Shop","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1162949,36.09915543]},"properties":{"stars":"3.5","name":"Sushi Katsu","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.135392,36.166687]},"properties":{"stars":"5","name":"Truck N Yaki","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1415627,36.2763491]},"properties":{"stars":"3","name":"Wimpys","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.212402,36.21678096]},"properties":{"stars":"2.5","name":"Taqueria El Tizon Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1643901,36.137931]},"properties":{"stars":"3","name":"Pizzaria","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2258702,36.0552438]},"properties":{"stars":"4.5","name":"Soho Japanese Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1396153,36.1700878]},"properties":{"stars":"4","name":"WILD","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.0990297,36.07224754]},"properties":{"stars":"3.5","name":"Jalisco Cantina","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2821167,36.30261064]},"properties":{"stars":"3.5","name":"Wing Heaven","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.278723,36.071411]},"properties":{"stars":"3.5","name":"Jalisco Cantina","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.289113,36.158026]},"properties":{"stars":"4","name":"Mac Shack","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1696112,36.1214517]},"properties":{"stars":"4","name":"Buddy V's Ristorante","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.136056,36.012764]},"properties":{"stars":"4.5","name":"Pita Pit","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1496248,36.1669491]},"properties":{"stars":"4.5","name":"MTO Caf<U+00E9>","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.225205,36.217928]},"properties":{"stars":"4.5","name":"Soul Foo Young","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2870974,36.2776341]},"properties":{"stars":"4.5","name":"Braddah's Island Style","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.136831,36.105583]},"properties":{"stars":"3.5","name":"Mr. Sandwich","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1716618,36.05542761]},"properties":{"stars":"4","name":"Jersey Mike's Subs","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.136389,36.175]},"properties":{"stars":"5","name":"Garden Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.243782,36.087483]},"properties":{"stars":"3","name":"Dickey's Barbecue Pit","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1721858,36.1107749]},"properties":{"stars":"3.5","name":"Meatball Spot","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2800168,36.056792]},"properties":{"stars":"4.5","name":"Fish N Bowl","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2087014,36.15871694]},"properties":{"stars":"3","name":"Robertos Taco Shop","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2258702,36.0552438]},"properties":{"stars":"3.5","name":"Ruen Thai","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2988469,36.14432201]},"properties":{"stars":"4","name":"Settebello Pizzeria Napoletana","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.149411,36.0858828]},"properties":{"stars":"3","name":"Baja Fresh","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1371761,36.1252617]},"properties":{"stars":"3.5","name":"Hot Dog On A Stick","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.0874588,36.1295932]},"properties":{"stars":"5","name":"El Camaron Jarocho","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.241736,36.127269]},"properties":{"stars":"4","name":"Mi Ga","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.0998341,36.1004618]},"properties":{"stars":"4.5","name":"Kailyn's Kitchen","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2062673,36.11666377]},"properties":{"stars":"3","name":"Karizma Restaraunt and Lounge","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1918805,36.1264739]},"properties":{"stars":"3.5","name":"Doh Sushi & Tapas","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1946358,36.1257528]},"properties":{"stars":"1.5","name":"Doh Sushi & Tapas","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.224332,36.060423]},"properties":{"stars":"2","name":"Don Tortaco Mexican Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1760028,36.12212537]},"properties":{"stars":"4.5","name":"Cheesecake Factory","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1729,36.11294]},"properties":{"stars":"3.5","name":"Olives","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.262546,36.115289]},"properties":{"stars":"4","name":"Papa Murphy's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.3515084,36.1590602]},"properties":{"stars":"3","name":"Toros Cantina & Gaming","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.197904,36.125908]},"properties":{"stars":"3.5","name":"World Noodle","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1658417,36.1272588]},"properties":{"stars":"3.5","name":"The Cafe at The Wynn Resorts","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.17601,36.1043329]},"properties":{"stars":"3","name":"Double Barrel Roadhouse","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2416392,36.1269391]},"properties":{"stars":"3.5","name":"Han's Chicken","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.125401,36.17311]},"properties":{"stars":"3.5","name":"Red Mansion","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2868474,36.2896832]},"properties":{"stars":"3.5","name":"Babystacks Cafe","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1415715,36.1715995]},"properties":{"stars":"3","name":"Stewart & Ogden","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.117987,36.01445637]},"properties":{"stars":"4","name":"Hot N Juicy Crawfish","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.150999,36.15851]},"properties":{"stars":"4.5","name":"Rock'N'oodles","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.14181,36.30003]},"properties":{"stars":"2.5","name":"Farm","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2618176,36.11303976]},"properties":{"stars":"4","name":"KoMex Fusion","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1334734,36.1588528]},"properties":{"stars":"3.5","name":"Primavera Pizza","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.154932,36.238361]},"properties":{"stars":"4.5","name":"Sofia Best","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.243101,36.1243036]},"properties":{"stars":"2.5","name":"Mr. Sandwich","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.125135,36.100336]},"properties":{"stars":"4","name":"Per<U+00FA> Chicken","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.0635161,36.1658935]},"properties":{"stars":"4","name":"Oh! Curry","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2078759,36.0326944]},"properties":{"stars":"4","name":"Teriyaki Madness","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2416607,36.12630649]},"properties":{"stars":"4.5","name":"Woori House","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1721858,36.1107749]},"properties":{"stars":"3","name":"Ketchup Premium Burger Bar","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1353916,36.0100493]},"properties":{"stars":"4","name":"Full House BBQ","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.3007591,36.1455404]},"properties":{"stars":"4","name":"Viva Mercado's Mexican Bar and Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.151099,36.084985]},"properties":{"stars":"3.5","name":"Rachel's Kitchen","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.138435,36.16752618]},"properties":{"stars":"4","name":"Pinches Tacos","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.138435,36.167526]},"properties":{"stars":"3","name":"Big Ern's BBQ","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.126378,36.22162]},"properties":{"stars":"5","name":"SNS Diner","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1415715,36.1715995]},"properties":{"stars":"4","name":"The Spread Sports Book & Deli","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.150793,36.12100155]},"properties":{"stars":"4","name":"Las Famosas De Jose","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1716613,36.10760017]},"properties":{"stars":"2.5","name":"Dumpling And Noodle house","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1478536,36.08240913]},"properties":{"stars":"3","name":"Nathan's Famous","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.126814,36.02128391]},"properties":{"stars":"2.5","name":"Kusina Ni Lorraine Express","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.3172266,36.15882363]},"properties":{"stars":"3","name":"Subway","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2499065,36.2403938]},"properties":{"stars":"4.5","name":"Joey's Tavern","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.199026,36.13076166]},"properties":{"stars":"4","name":"Desnudo Tacos","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2860976,36.1670211]},"properties":{"stars":"5","name":"Bite Vegan Bakery","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1701994,36.10289615]},"properties":{"stars":"4","name":"Crush","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1905212,36.08780303]},"properties":{"stars":"2","name":"Jt's Barbecue","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2114479,36.12604418]},"properties":{"stars":"4","name":"Muse Asian Cuisine & Lounge","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.207252,36.12494297]},"properties":{"stars":"3","name":"Ba Le Sandwiches","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.114144,36.115518]},"properties":{"stars":"3","name":"La Casona Bar & Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1701939,36.1226902]},"properties":{"stars":"3","name":"B&B Burger & Beer","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.138435,36.167526]},"properties":{"stars":"4.5","name":"Simply Pure by Chef Stacey Dougan","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2074151,36.123621]},"properties":{"stars":"4.5","name":"Pam Real Thai Las Vegas","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.138317,36.16775986]},"properties":{"stars":"3","name":"Pork & Beans","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.22478,36.06975799]},"properties":{"stars":"4","name":"Sambalatte Torrefazione","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1415715,36.1715995]},"properties":{"stars":"3.5","name":"The Commissary Latin Kitchen by Richard<U+00A0>Sandoval","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2470842,36.1976942]},"properties":{"stars":"1.5","name":"Lin Buffet","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1784122,36.06957968]},"properties":{"stars":"4","name":"Crazy Pita Rotisserie & Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1387998,36.16742206]},"properties":{"stars":"3.5","name":"bin 702","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2063506,35.99515465]},"properties":{"stars":"4","name":"Spaghetty Western","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.242714,36.159527]},"properties":{"stars":"4","name":"SalvaMex","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1791902,36.27495799]},"properties":{"stars":"4.5","name":"CG's Pizza","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1693962,36.1033743]},"properties":{"stars":"3.5","name":"Hecho en Vegas","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.0475235,36.09801865]},"properties":{"stars":"4","name":"China Wan Wan","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1247925,36.2203935]},"properties":{"stars":"5","name":"Jake's Filling Station","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1716492,36.0153409]},"properties":{"stars":"4.5","name":"Yanni's Greek Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.225783,36.1013213]},"properties":{"stars":"4.5","name":"Vila Algarve","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1377423,36.1152062]},"properties":{"stars":"4.5","name":"Delhi Indian Cuisine","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2073842,36.0329035]},"properties":{"stars":"4","name":"Teriyaki Madness","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1715632,36.1173225]},"properties":{"stars":"2.5","name":"Haute Doggery","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1632669,36.1520371]},"properties":{"stars":"4","name":"Streetcar Po-boys","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.171528,36.11757443]},"properties":{"stars":"3","name":"Chayo Mexican Kitchen + Tequila Bar","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.178644,36.1796733]},"properties":{"stars":"3","name":"Checkers","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.145248,36.08316]},"properties":{"stars":"2.5","name":"Sammy's Beach Bar & Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2980803,36.1434111]},"properties":{"stars":"3.5","name":"Apache Taco Shop","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1926268,36.1264489]},"properties":{"stars":"3.5","name":"Fat Dumpling","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.173908,36.110091]},"properties":{"stars":"4","name":"Rose. Rabbit. Lie.","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.13276,36.115612]},"properties":{"stars":"3","name":"Lee's Buffet","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2499187,36.240299]},"properties":{"stars":"3","name":"Brother's Italian Bistro","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2244853,36.0402159]},"properties":{"stars":"3.5","name":"Jersey Mike's Subs","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1425486,36.14252332]},"properties":{"stars":"4.5","name":"Cornish Pasty Co.","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.078775,36.24085902]},"properties":{"stars":"4.5","name":"Saborr","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.138435,36.167526]},"properties":{"stars":"3.5","name":"Pinches Tacos","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.172501,36.1100668]},"properties":{"stars":"4","name":"Pin Up Pizza","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1722357,36.0678308]},"properties":{"stars":"4","name":"Fleming's Prime Steakhouse & Wine Bar","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1511348,36.0849929]},"properties":{"stars":"2.5","name":"Sammy's Woodfired Pizza And Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2985769,36.0764726]},"properties":{"stars":"4.5","name":"Kanji Steak & Sushi","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.224558,36.128083]},"properties":{"stars":"4","name":"District One Kitchen & Bar","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2415717,36.14463432]},"properties":{"stars":"3","name":"Al's Beef","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1542695,36.1186973]},"properties":{"stars":"4","name":"Toscano Italian Steakhouse","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.0629027,36.182261]},"properties":{"stars":"2.5","name":"Big Daddy's Pizza","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2074151,36.123621]},"properties":{"stars":"4.5","name":"JJANGA Japanese Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1519918,36.1524766]},"properties":{"stars":"4.5","name":"the Goodwich","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1735983,36.1015871]},"properties":{"stars":"3.5","name":"48th and Crepe","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1724261,36.1011972]},"properties":{"stars":"4","name":"Tacos N' Ritas","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2069805,35.995344]},"properties":{"stars":"3.5","name":"Kazuki Sushi","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.173315,36.10583003]},"properties":{"stars":"3.5","name":"Bobby's Burger Palace","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.146372,36.124423]},"properties":{"stars":"2","name":"Pan Asian Express","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2899561,36.0755982]},"properties":{"stars":"4","name":"PT's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.18644,36.11881]},"properties":{"stars":"3.5","name":"Hash House A Go Go at the Rio","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.16938,36.10250731]},"properties":{"stars":"3.5","name":"TAP Sports Bar","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1625756,36.1360098]},"properties":{"stars":"2.5","name":"McDonald's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1509705,36.10594559]},"properties":{"stars":"4","name":"Naked City Pizza On Paradise","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.0623062,36.16324377]},"properties":{"stars":"1.5","name":"Buffet At Asia","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.0798264,36.18031693]},"properties":{"stars":"4","name":"Sunnys Chicken & Fish","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1455964,36.17014908]},"properties":{"stars":"3.5","name":"Claim Jumper","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1180544,36.01813065]},"properties":{"stars":"4","name":"OM Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1702465,36.1237978]},"properties":{"stars":"4","name":"Yard House","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.090932,36.114355]},"properties":{"stars":"5","name":"Salsa Loca Mexican Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.307339,36.1143902]},"properties":{"stars":"4","name":"Viet Bistro","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.0638089,36.1674569]},"properties":{"stars":"3","name":"Hibachi Grill & Supreme Buffet","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2416794,36.1263809]},"properties":{"stars":"4.5","name":"Red Gate Wok","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2781946,36.1084634]},"properties":{"stars":"4.5","name":"E & N Family Table Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1815901,36.10738887]},"properties":{"stars":"4","name":"The Blind Pig","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.198027,36.127498]},"properties":{"stars":"4","name":"Hot Feel","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1721858,36.1107749]},"properties":{"stars":"2.5","name":"Ocean One Bar & Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1511348,36.0849929]},"properties":{"stars":"2","name":"Lucky Streak at LAS","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1217299,36.04228623]},"properties":{"stars":"4","name":"Vid Noodles","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.3315911,36.16068549]},"properties":{"stars":"3.5","name":"Distill - A Local Bar","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2244253,36.11309787]},"properties":{"stars":"4","name":"Taste Of China & Icy Bar","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1706239,36.12211373]},"properties":{"stars":"3.5","name":"Tintoretto Restaurant and Bakery","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1727833,36.1176611]},"properties":{"stars":"4","name":"Brooklyn Bowl","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1805607,36.2630128]},"properties":{"stars":"3.5","name":"Super No1 Chinese Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.213504,36.1262297]},"properties":{"stars":"3.5","name":"Hiromaru Fusion Ramen","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.259224,36.16771]},"properties":{"stars":"4","name":"Southern Style Eatery","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2234859,36.1255279]},"properties":{"stars":"4.5","name":"Buldogis Cafe","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1727241,36.1175745]},"properties":{"stars":"3","name":"Flour & Barley","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.141835,36.1714322]},"properties":{"stars":"4.5","name":"Picnic","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.351451,36.1593238]},"properties":{"stars":"4","name":"Krayvings","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.275792,36.143431]},"properties":{"stars":"4","name":"Biscuits Cafe","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1929949,36.11443805]},"properties":{"stars":"3","name":"Back Room Burger","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.146372,36.124423]},"properties":{"stars":"3.5","name":"Lobster Me - Venetian Palazzo","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2444447,36.04601149]},"properties":{"stars":"4","name":"Pot Tea Social House","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1149328,36.11411601]},"properties":{"stars":"4.5","name":"The Burger Lab","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1448871,36.16870558]},"properties":{"stars":"3.5","name":"Cadillac Mexican Kitchen & Tequila Bar","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2003327,36.115417]},"properties":{"stars":"4.5","name":"Izakaya Cocokala","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1013924,36.08600098]},"properties":{"stars":"4.5","name":"Luciano Garden","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2071704,36.27110245]},"properties":{"stars":"4","name":"Firehouse Subs","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2885083,36.1155109]},"properties":{"stars":"2","name":"Roma Pizza","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.243407,36.13052516]},"properties":{"stars":"4","name":"Strip View Cafe","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.251523,36.159616]},"properties":{"stars":"4.5","name":"Triple Play American Grill","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.298748,36.11580692]},"properties":{"stars":"4.5","name":"Jumping Rice & Rolls","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.3335755,36.160981]},"properties":{"stars":"2.5","name":"Jimmy John's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.134967,36.013806]},"properties":{"stars":"4.5","name":"Yuzu Japanese Kitchen","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2089199,36.2472804]},"properties":{"stars":"5","name":"Don Michael's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1767584,36.1044875]},"properties":{"stars":"4","name":"800 Degrees Neapolitan Pizzeria","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1726,36.118793]},"properties":{"stars":"4","name":"Guy Fieri","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1767584,36.1044875]},"properties":{"stars":"3.5","name":"Yusho","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1353976,36.0416591]},"properties":{"stars":"4.5","name":"Kabob Factory","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1636666,36.13315345]},"properties":{"stars":"3.5","name":"Denny's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1542695,36.1186973]},"properties":{"stars":"4","name":"Imperial Tacos & Beer","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1193695,36.08534241]},"properties":{"stars":"3.5","name":"Chipotle","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.189211,36.095691]},"properties":{"stars":"4","name":"Mia Bella Cafe","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2515385,36.1594235]},"properties":{"stars":"4.5","name":"Frijoles Grilled Tacos","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2073833,36.071207]},"properties":{"stars":"3.5","name":"Shawarma Plus","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1090211,36.128641]},"properties":{"stars":"4","name":"Ninja Teriyaki - Sushi 2 Go","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2841268,36.3006294]},"properties":{"stars":"3","name":"Hungry Howie's Pizza","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2515591,36.14358271]},"properties":{"stars":"4","name":"Oyshi Sushi","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1640091,36.10815048]},"properties":{"stars":"4","name":"Chickenow","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2412756,36.0844749]},"properties":{"stars":"3.5","name":"Bachi Healthy Life Kitchen","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2593102,36.1915723]},"properties":{"stars":"3","name":"Fiesta Chips & Salsa","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.3134669,36.15788817]},"properties":{"stars":"3.5","name":"The Cracked Egg","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2309619,36.1595453]},"properties":{"stars":"3.5","name":"Smashburger","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1740769,36.0912409]},"properties":{"stars":"4.5","name":"1923 Bourbon & Burlesque By Holly Madison","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1149077,36.02818]},"properties":{"stars":"4.5","name":"Gabriella's Italian Grill & Pizzeria","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1178336,36.0284419]},"properties":{"stars":"4.5","name":"Z Chicken","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2796682,36.1439829]},"properties":{"stars":"4.5","name":"Argana","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2672312,36.0206629]},"properties":{"stars":"3.5","name":"WTPho","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1702046,36.12246488]},"properties":{"stars":"4","name":"DB Brasserie","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2419672,36.17932379]},"properties":{"stars":"4.5","name":"Siam Thai Kitchen","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1979987,36.1264765]},"properties":{"stars":"4","name":"Ramen Misoya Tomi","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.179164,36.28654]},"properties":{"stars":"3","name":"Martinez Taco Bar","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2256446,36.11617673]},"properties":{"stars":"4.5","name":"L&L Hawaiian Barbecue","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2180491,36.12609244]},"properties":{"stars":"4","name":"A & K Chinese Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1727367,36.1142391]},"properties":{"stars":"4.5","name":"BLT Steak","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1722861,36.11514588]},"properties":{"stars":"4.5","name":"Giada","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.151479,36.238116]},"properties":{"stars":"4.5","name":"Teriyaki Madness","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.219839,36.1260199]},"properties":{"stars":"4.5","name":"Dumpling King","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2437024,36.1520108]},"properties":{"stars":"2.5","name":"Viva El Salvador Restaurant & Pupuseria","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.096463,36.173086]},"properties":{"stars":"4.5","name":"Tropical Smoothie Cafe","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2433035,36.0727196]},"properties":{"stars":"4","name":"Novecento","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2536202,36.27442661]},"properties":{"stars":"4","name":"Al's Donuts & Cafe Burger","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.207577,35.9994653]},"properties":{"stars":"3.5","name":"Don Tortaco","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2782837,36.12968596]},"properties":{"stars":"4.5","name":"Oriental House","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2074922,35.99878572]},"properties":{"stars":"2.5","name":"Don Tortaco","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1978455,36.12747138]},"properties":{"stars":"4","name":"Szechuan Express","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2325287,36.15951525]},"properties":{"stars":"5","name":"Moko Tapas Bar","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.203712,36.125883]},"properties":{"stars":"4","name":"Nem Nuong Bistro","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2432453,36.2544279]},"properties":{"stars":"4","name":"Legends Cafe","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1702465,36.1237978]},"properties":{"stars":"2.5","name":"FAME","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.170409,36.1182919]},"properties":{"stars":"4","name":"Fukuburger","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1715273,36.0596893]},"properties":{"stars":"4","name":"17 South Booze & Bites","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1714007,36.11745357]},"properties":{"stars":"3","name":"Tilted Kilt Pub & Eatery","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.118684,36.01658]},"properties":{"stars":"3.5","name":"Pin Kaow Thai Restaurant","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.334816,36.1551327]},"properties":{"stars":"4","name":"The Wiener's Circle Las Vegas","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1750346,36.1431918]},"properties":{"stars":"4.5","name":"The Charcoal Room","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1748577,36.09829582]},"properties":{"stars":"3","name":"Johnny Rockets","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1728055,36.1326596]},"properties":{"stars":"4","name":"Skinny Chick Fat Chicken","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1907335,36.1335903]},"properties":{"stars":"4","name":"Garnachas Mexican Street Food","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1406405,36.16787832]},"properties":{"stars":"4.5","name":"Carson Kitchen","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2438663,36.0865493]},"properties":{"stars":"5","name":"Grinders Pizza Lounge","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2441752,36.04812918]},"properties":{"stars":"4","name":"Ice Monster Cafe","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.3041999,36.1931046]},"properties":{"stars":"4","name":"Brown Rice Thai Kitchen","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2654135,36.2636911]},"properties":{"stars":"5","name":"North Beach Italian Bistro","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2074151,36.123621]},"properties":{"stars":"4","name":"Japanese Cuisine By Omae","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.3351285,36.15710947]},"properties":{"stars":"3","name":"Mercadito","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2972597,36.0978325]},"properties":{"stars":"3.5","name":"Applebee's","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2074043,36.1299924]},"properties":{"stars":"4.5","name":"Pho Lan","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2410939,36.114987]},"properties":{"stars":"4","name":"D' Pinoy Joint","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2367146,36.1586036]},"properties":{"stars":"4.5","name":"702 Wing Spot","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2419755,36.1433968]},"properties":{"stars":"4.5","name":"Maza Mediterranean Grill & Lounge","":""}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.3041999,36.1931046]},"properties":{"stars":"4","name":"Rocco's NY Pizza & Pasta","":""}}]}
{"type":"FeatureCollection","features":[{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0734183,33.4795416]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.074315,33.468988]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0717019,33.4483992]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.07352364174,33.477933965703]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0691194,33.4526031]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0656645,33.4495394]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.074248,33.47626]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.06909,33.46544]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0712574,33.4484654]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0693177,33.4527955]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0740016,33.4756064]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.073929,33.429424]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0657286,33.4657117]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.073568999767,33.4640982988196]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.070061,33.443864]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0703479,33.4450348]},"properties":{"stars":"2"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0686108,33.4577071]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0722653,33.4492272]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.086757,33.4549264]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0736473,33.4392182]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0706,33.44742]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0693177,33.4527955]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0740069,33.4492227]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0691194,33.4526031]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.074153,33.46425]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.066333,33.450875]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.07480205159,33.4484248169655]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.069320678711,33.4456825256348]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0740511,33.4499524]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.081565,33.465499]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0693177,33.4527955]},"properties":{"stars":"2"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.073577,33.44455]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.07107588649,33.446885057319]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.074127,33.448333]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0654701,33.4655868]},"properties":{"stars":"1.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0738063,33.4793076]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.074398,33.477111]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.072914,33.477594]},"properties":{"stars":"2"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.072706876078,33.4483756751795]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.074206,33.479508]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0736133,33.4793963]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0736968,33.476644]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.073953896761,33.4795816987753]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.074725,33.463172]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.07211772211,33.444801984944]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0657857,33.4423368]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.066662,33.444799]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.06625,33.445956]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0740241,33.4574932]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0469586,33.4794961]},"properties":{"stars":"2"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0469586,33.4794961]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.032374,33.466442]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.063511,33.465411]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0653186,33.4702022]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.055957,33.45107]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.05026,33.466043]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0476524,33.4737197]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0610433,33.4588282]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0462108,33.4596905]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.04693,33.470126]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0506694,33.4659637]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.064755,33.459347]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.065371,33.470783]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0650649,33.4712477]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.063247,33.466215]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0650914,33.473125]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0520629,33.4579361]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.033977,33.465674]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0410568,33.4655483]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0472907,33.4575804]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.047341,33.466038]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.029768,33.466736]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.973718,33.4661343]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.013243,33.466085]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9718284,33.4657562]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.029827,33.458744]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.979613,33.465355]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.015464,33.466124]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.001533,33.45111]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.99018,33.452835]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.973603,33.4514039]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.987753,33.466688]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9810186,33.4511467]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9786425,33.4520972]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9878697,33.4552907]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.987786,33.455418]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0301811,33.4796464]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.987786,33.455418]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0127202,33.4767236]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.986969,33.4729919]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9867129,33.4783911]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9869517,33.4729919]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.021191,33.451004]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.986469,33.476082]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.986944,33.476956]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.073346,33.492722]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0732069,33.4825541]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.070854,33.5092929]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.069072,33.479778]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0743113,33.5006213]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.064401,33.463512]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.07333,33.484705]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0739754,33.4977417]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.07196401799,33.5095896365936]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.073895,33.486194]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0689504,33.4945855]},"properties":{"stars":"1.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0737404,33.5111761]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0685027,33.5114334]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0736691,33.5092865]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.074152,33.510216]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0691813,33.48585]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0715708,33.5094063]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.074398,33.4940659]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0741307,33.510392]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.075009830603,33.4833078592673]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0740123,33.5127699]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.075675,33.491509]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0608177,33.5093372]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0491027,33.4803943]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.060185,33.509578]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.064643,33.530652]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0651937,33.513796]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0479298,33.5237171]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0610062,33.5098142]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.049638,33.523756]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.064704,33.529845]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.064673,33.528137]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.065343,33.51042]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.064613,33.4954589]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0648679,33.5290164]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0648001,33.5167259]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0608177,33.5093372]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0650136,33.5176457]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.065353393555,33.5124076744064]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.080548,33.510317]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.059748,33.4942179]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0652288,33.5095496]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0605131,33.4947362]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0653397,33.5080044]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.048136,33.508282]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0650347,33.5076398]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0283782,33.4803248]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.047846,33.504777]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0471421,33.5113051]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0208269,33.4807981]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0302027,33.4949031]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.016481,33.479605]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0462319,33.5092104]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.048124,33.525861]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.04698,33.523984]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0475385,33.5078595]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.046798,33.50876]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0474809,33.5369963]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0473119,33.4949943]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0479841,33.513505]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.04624,33.5087649]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0394,33.510225]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.047066,33.507549]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.045816,33.508756]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.043847,33.508732]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.042514,33.509702]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0475118,33.52265]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0467405,33.5092185]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0479816,33.5318417]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.044949,33.509927]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0470936,33.5026383]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.040116,33.507557]},"properties":{"stars":"1"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.048124,33.525861]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0472047,33.5305474]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.040116,33.507557]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.047511,33.5228486]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0409502,33.5093736]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.047101,33.530335]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.040116,33.507557]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0205287,33.4962555]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0151722,33.5307049]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0273984,33.5093706]},"properties":{"stars":"2"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0163656,33.4950206]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0261747,33.5093593]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.029562,33.5160662]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0301948,33.487386]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0253849,33.5096014]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0301061,33.5094212]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.02476,33.511132]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.040429,33.5056919]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.040116,33.507557]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.029651966191,33.5100084467657]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.01556,33.510311]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0376214,33.5092616]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0273984,33.5093706]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.02943,33.508711]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.02791595459,33.5108261108398]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0218376,33.4804658]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0388617,33.5062577]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.029562,33.5160662]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.030538,33.488164]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0319425,33.5080057]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0258966,33.5095797]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.01408,33.5100455]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.028973,33.494876]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0310218,33.4949655]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.036358,33.5092757]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0370322,33.5092864]},"properties":{"stars":"2"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0252066,33.5096147]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0388474,33.5059283]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.026658,33.523043]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.013252,33.480776]},"properties":{"stars":"2"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0290689,33.5094453]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.02898,33.495245]},"properties":{"stars":"2"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0152924,33.5100098]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.024174,33.510026]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0371249,33.5092848]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0273984,33.5093706]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0221966,33.4804921]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0318284,33.4802944]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0255251,33.5097281]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.030849,33.487276]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0302708,33.4874697]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.031296,33.487817]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.022973,33.495343]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0132474,33.4952249]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0207982,33.4953008]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.03438796103,33.5092174261808]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0241743,33.510034]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.959883,33.488839]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.994039,33.479852]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9963126,33.5100523]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0096143,33.4804795]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.996602341533,33.509973809123]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0113575,33.4949196]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9969164,33.4804114]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.997771,33.479889]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.997771,33.479889]},"properties":{"stars":"2"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9967688,33.4804266]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.982927,33.479698]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.988131,33.495496]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.01265,33.493831]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.985984802246,33.479793548584]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.984111,33.480662]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.993301,33.480782]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.000651,33.4955624]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.969094,33.504688]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.986521,33.494436]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.012269,33.495665]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9854773,33.4799104]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.981506,33.4797129]},"properties":{"stars":"2"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9893448,33.494594]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.99575216742,33.502312625663]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.996292,33.502191]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0119403,33.4953259]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.984771,33.479131]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9885861,33.5092093]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.978627,33.480391]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.976613,33.494204]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9875851,33.5091326]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0118398,33.4951447]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.011292,33.480845]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9865579,33.5106961]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9862703,33.5108208]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0115928,33.4805041]},"properties":{"stars":"2"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9926934,33.4806911]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.98959,33.4949597]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.999963,33.495084]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0010198,33.4951558]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0006832,33.4805451]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.994039,33.479852]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9883722,33.4954826]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.003749,33.48073]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.98828,33.479938]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9619215,33.4800263]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9984903,33.4805459]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9947,33.494646]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0128995,33.4807241]},"properties":{"stars":"1.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0469306,33.546583]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.065592,33.563433]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.048885,33.550167]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.048079,33.538927]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0571061,33.5382586]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.047023,33.546608]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.064128,33.537947]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.057182312012,33.5524520874023]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.055160999298,33.5378713137466]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.043169,33.545329]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0474793,33.5382428]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0731019,33.5675286]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0636779,33.5389447]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.051734,33.583061]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.051894,33.582578]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.062583,33.601202]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.064668,33.59547]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0565478,33.5661398]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.065316,33.5752965]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0653058,33.5599538]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0565593,33.5501972]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.065977,33.568247]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.047023,33.546608]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0554926,33.5532624]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0650912,33.5643063]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.053525918855,33.5528379672612]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0474454,33.5478352]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.047023,33.546608]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0677697,33.640437]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0475,33.641478]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0362398,33.6085361]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.031334,33.640102]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.037862,33.5969577]},"properties":{"stars":"1.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.063427,33.607105]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0638336,33.6378764]},"properties":{"stars":"2"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.071469,33.639472]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0653886,33.6376961]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0677697,33.640437]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0477215,33.6403046]},"properties":{"stars":"2"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0656186,33.6391488]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0670265,33.6416167]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.067051231861,33.6077550798655]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.068088329063,33.6410022872606]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0646931,33.6402147]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0717684,33.6395011]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0670223,33.6400345]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.06668779254,33.6094380925246]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0667347,33.6542269]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.070232,33.6407]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0656185,33.639176]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0649186,33.6074328]},"properties":{"stars":"1.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.066095,33.606332]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.037524,33.596967]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0474847,33.6405889]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.031334,33.640102]},"properties":{"stars":"2"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.036383,33.603506]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.036439,33.602657]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0470301,33.6397241]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.036653,33.6034616]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0611449,33.6402546]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0366539,33.6023313]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0370744,33.5980645]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0661523,33.6077075]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0684427,33.6383625]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.064368,33.639197]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.062315,33.655825]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0638772,33.6548578]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0637783,33.6548149]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.030244,33.662594]},"properties":{"stars":"2"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0301297,33.6789932]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0638772,33.6548578]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.064207,33.655901]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0622257,33.6548544]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.064207,33.655901]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.979243,33.582569]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9767865,33.5842663]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.977774,33.5837556]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.013517,33.580412]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0136664,33.5835789]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9788671,33.5839581]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0134098,33.5844263]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0077948,33.5824179]},"properties":{"stars":"2"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.012363672256,33.5821710732031]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.012779,33.596585]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0098473,33.5825876]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0114578,33.5820709]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0176895,33.6406665]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0249314,33.6400327]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9869486,33.5997853]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.979556,33.625558]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.013151,33.6283281]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.029015,33.639971]},"properties":{"stars":"1.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.013147,33.628335]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.00303,33.62121]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.010011,33.639969]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0202933,33.6405727]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9819747,33.5990613]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.97931,33.597866]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.977892,33.6040525]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9781795,33.6032634]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9814645,33.5989356]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.994275,33.6408798]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9871884,33.5993289]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.993511,33.64115]},"properties":{"stars":"2"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.995536804199,33.6259384155273]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.010011,33.639969]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0190953,33.6406552]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.005278,33.641019]},"properties":{"stars":"2"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.01308,33.640243]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.978416442871,33.623649597168]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9869486,33.5997853]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9969776,33.6117369]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.978772,33.600769]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.994222,33.6121713]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.15744,33.651421]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9780516,33.6400245]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.979545,33.640232]},"properties":{"stars":"2"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0306999,33.6253913]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9954825,33.6118809]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0063922,33.6412984]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.013151,33.6283281]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0198619,33.6403137]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0122175,33.6260418]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9813513,33.597361]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.996439,33.6118683]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.025911,33.640094]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.994825,33.641168]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9797159,33.5999386]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0306016,33.637571]},"properties":{"stars":"2"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.985242,33.600271]},"properties":{"stars":"2"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9814078,33.59836]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9790366,33.6108004]},"properties":{"stars":"2"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.012379,33.597386]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.014251,33.597327]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.029777,33.626796]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.013151,33.6283281]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.012565612793,33.6123924255371]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.030397,33.641141]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0149317,33.6102008]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0190892,33.6406383]},"properties":{"stars":"2"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.99569,33.626712]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.029579,33.654233]},"properties":{"stars":"1.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9780516,33.6400245]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9780689,33.6040477]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9778024,33.6106247]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.977799,33.6049318]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.98091,33.425077]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9802141,33.4244496]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.098337,33.553457]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.029835,33.450595]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.977677,33.446572]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.031214,33.421839]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0561119,33.4315119]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.057219,33.448422]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0569366,33.4367928]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0580499,33.4368059]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0479422,33.4500573]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.977677,33.446572]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0129038,33.4485317]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.97493461419,33.446195133741]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.030738,33.445002]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.998367,33.435146]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0131678,33.4484514]},"properties":{"stars":"2"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0742775,33.4947925]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.998367,33.435146]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0290547,33.4474354]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0081633,33.4155715]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.996136,33.422414]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0693902,33.3924502]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0471014,33.4088426]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0732306,33.3937246]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.013804,33.407505]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0235948,33.4068343]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0827178,33.4541453]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0735262,33.3986293]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0730676,33.406881]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.044309,33.407065]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0725828,33.3986364]},"properties":{"stars":"1"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0643885,33.3989418]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0736122,33.4091717]},"properties":{"stars":"5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.072119,33.397442]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0086668,33.4034017]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0730197,33.3982035]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.97861167821,33.407691443117]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9793258,33.4076905]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.980757,33.406723]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0019235,33.4086461]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.996111,33.412592]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.97758,33.406735]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9787282,33.4057578]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9783494,33.4089039]},"properties":{"stars":"2"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9959441,33.417869]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0732618,33.3833978]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0653054,33.3777969]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.073296,33.3842246]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.070599,33.378801]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0473824,33.3921725]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0735848,33.3878505]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.073079,33.386417]},"properties":{"stars":"1.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0732936,33.3806458]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.073661804199,33.3816223144531]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0129108,33.3906771]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0733807,33.3912528]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.064795,33.378712]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9804863,33.3927605]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.978725,33.3924049]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9819,33.348162]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.983734,33.348576]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.975816,33.3217349]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.981475,33.331156]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9792734,33.3211166]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.976156,33.347684]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9813995,33.3307646]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9754,33.320411]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9759674,33.3180465]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9795988,33.3310474]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9802259,33.3309485]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.980062,33.331946]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.983142,33.333182]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.991549,33.320748]},"properties":{"stars":"2"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.004239,33.316214]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.981797218323,33.3192686114948]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9777855,33.3194033]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9800631,33.3190861]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.975679,33.319168]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9746676,33.3191838]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.983342170715,33.3194479164846]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9820214,33.3480616]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9803928,33.3482841]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.979655,33.331595]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9766015,33.3488957]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9820214,33.3480616]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9789241,33.3321946]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.977841,33.320391]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9827084,33.3313401]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.982787,33.320241]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9945634,33.3375219]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9780071,33.3197625]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9780314,33.3194372]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9778751,33.3193788]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9740268,33.3711363]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0534109,33.3052569]},"properties":{"stars":"5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0538431,33.3067499]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.054775,33.304331]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0561283,33.3058077]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.054715,33.304176]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9798699,33.3055166]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9791357,33.3057984]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.992126464844,33.304801940918]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.990675,33.305835]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.982854,33.304682]},"properties":{"stars":"1.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.999568,33.305666]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9945819,33.304667]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9927062,33.3058378]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9776786,33.3042644]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.977602,33.3054462]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.99117,33.305945]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.997281,33.304636]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9918344,33.3050704]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.97839,33.303967]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.977144,33.30582]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.978392,33.304138]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9747,33.30617]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9746066,33.678615]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.974663605924,33.6766209803431]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9746066,33.678615]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9746066,33.678615]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9746066,33.678615]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.972437438965,33.6769641638938]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9746066,33.678615]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.997843322754,33.6931139271254]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.974484,33.679015]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9746066,33.678615]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.976633,33.683068]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.002306518555,33.6948278200677]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.132693,33.5389709]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0153723,33.6553583]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.015507221222,33.6554950558548]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.029273,33.654662]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9660359,33.6834408]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9299197,33.6554989]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9299197,33.6554989]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.939289529114,33.6782214624068]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1262605,33.7997742]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1282089,33.7983161]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1429536,33.8195509]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.004102,33.316873]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9791228,33.6125018]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.132618,33.655256]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.983653,33.319733]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1524306,33.639628]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.16828,33.6531]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.200326,33.710985]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.075009130997,33.4836556717717]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0742949,33.4494411]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0743441,33.4504575]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0741278,33.4460879]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.077595,33.466086]},"properties":{"stars":"1.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.081655,33.466104]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.078314,33.447682]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0777765,33.4483154]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0743318,33.4493946]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.075677,33.450047]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0759024,33.441144]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0649071,33.4770399]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0772,33.449188]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0755455728,33.4834856536553]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0737893,33.4357027]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.076727,33.448474]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0772,33.449188]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0742455,33.459701]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.100435,33.638733]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1245055,33.573804]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0368923,33.5969746]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.082832336426,33.4329605102539]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0909175,33.4783391]},"properties":{"stars":"5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0930104,33.446848]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0983934,33.4364256]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0894972,33.4468609]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.082895,33.458839]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0906616,33.4514813]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0980531,33.4481411]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0972094,33.4512558]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.091917,33.451715]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.091191,33.4798163]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0914029,33.4797626]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.095509,33.465999]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1198191,33.4510505]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1126089,33.4797881]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0999049,33.4302217]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1001563,33.4382709]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.117181,33.450381]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1522044,33.4794675]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1173464,33.4653893]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1160088,33.4510841]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1227955,33.4512129]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1348719,33.4643519]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.114483,33.4514319]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1328719,33.4513886]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.149483,33.416725]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.113942,33.464424]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.151424,33.464728]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0832204,33.4805423]},"properties":{"stars":"2"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0834721,33.4877201]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0906922,33.4802751]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0827581,33.5005043]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0832336,33.4882838]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0824532,33.5008018]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.077144,33.479996]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0848642,33.5096325]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0813612,33.480105]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0832,33.4944]},"properties":{"stars":"2"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.083543,33.509984]},"properties":{"stars":"2"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0832115,33.4881759]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.075703,33.509651]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0822129,33.4951554]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0830342,33.4874748]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0822634,33.502602]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0756556,33.4802511]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0888223,33.5093023]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0817763,33.4875793]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.083915710449,33.4963684082031]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.077889,33.4802381]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0925451,33.5092599]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.100389,33.488489]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1045404,33.5097489]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1105426,33.5239474]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1000457,33.5038922]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1005137,33.5096926]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0977034,33.5196796]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1084743,33.524075]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0962274,33.5097112]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0972935,33.5236788]},"properties":{"stars":"2"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0995348,33.5252672]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1109547,33.4804951]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0910715,33.4943622]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.099512,33.494795]},"properties":{"stars":"2"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.099296,33.4953239]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1082869,33.4951572]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0999798,33.4857345]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1010062,33.495018]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0999297,33.4956034]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.096501,33.523988]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.111358,33.525257]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0995559,33.5249914]},"properties":{"stars":"2"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.109379,33.509839]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0962274,33.5097112]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0962964,33.5224329]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0949464,33.5093484]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.128213,33.4949436]},"properties":{"stars":"2"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1342181,33.5104196]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.116069,33.524424]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1262987,33.4950335]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.118531,33.5097089]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0000523,33.4506964]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.117581,33.4957319]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.13332,33.480085]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.130669,33.480828]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1333575,33.4805399]},"properties":{"stars":"2"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1343419,33.4856272]},"properties":{"stars":"5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1345446,33.5081908]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.134813,33.537836]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1341836,33.5108736]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1340382,33.5241972]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1409443,33.4951155]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1349754,33.5092118]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1514811,33.5240077]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.150302,33.523617]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1496458,33.5237411]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1362237,33.5094372]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0980631,33.5538282]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.110289,33.553485]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1089428,33.5531186]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1001749,33.5811868]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1159816,33.576971]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1025316,33.5674315]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0998396,33.5682973]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1164816,33.5778831]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.081336975098,33.5714416503906]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1025782,33.5674094]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.098337,33.553457]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1090962,33.5531191]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.109215,33.553619]},"properties":{"stars":"2"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.100098,33.55203]},"properties":{"stars":"2"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.116243,33.566989]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.100373,33.573218]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1162617,33.5764031]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1008401,33.5676107]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.116193,33.575317]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0991561,33.5657923]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.116641,33.574046]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.09925,33.555296]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.11349,33.569822]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.115581,33.567221]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.099212,33.553471]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0991214,33.5521877]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1034416,33.5672292]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.109726,33.55362]},"properties":{"stars":"2"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0991833,33.5396894]},"properties":{"stars":"2"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.084771,33.5711465]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.083589,33.5712883]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0811988,33.6405901]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.093723,33.640558]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.112968,33.611402]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.08032,33.63994]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0994543,33.6532743]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0974932,33.6400515]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0995217,33.6123561]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.107981741428,33.6401300132275]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0966147,33.6403155]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1113493,33.6400224]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1006458,33.6107116]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1110185,33.6111073]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.099224,33.639727]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.097743,33.640581]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.108785,33.640453]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.099794,33.6427912]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0946603,33.6405634]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.112867,33.640625]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1007399,33.6404313]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.099716,33.6419531]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0872865,33.6400079]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1323768,33.6539661]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1005506,33.6547265]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.116182,33.6834879]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1203279,33.6674187]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.09836,33.656005]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.100217,33.683674]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0999054,33.6754519]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.12371,33.666682]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.123307,33.666702]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.12371,33.666682]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.122297,33.667653]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.082382,33.655098]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.09836,33.656005]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.081705,33.655105]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1082641,33.6832965]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.075301,33.683207]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.125528,33.667839]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1063599,33.6834952]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.09836,33.656005]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.114228,33.681686]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.124526977539,33.6664543151855]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.114985,33.683393]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.132618,33.655256]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.117988,33.671419]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.124063,33.667729]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.12371,33.666682]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1083509,33.684219]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1009423,33.6835952]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.117845,33.6659875]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1341515,33.6555982]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.10033416748,33.6866683959961]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0976703,33.6547143]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1177658,33.6707361]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1170476,33.6657791]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.107284,33.6840252]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0992147,33.5829277]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.12037370959,33.598648105674]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.150858,33.5981]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.150726,33.5981674]},"properties":{"stars":"2"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.150996,33.5827219]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1338743,33.5833752]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1352051,33.5965151]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1346307,33.5963901]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1335065,33.609824]},"properties":{"stars":"1.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1201741,33.5964011]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.13188,33.581387]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0993308,33.5955127]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1513854,33.58293]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1341976,33.5963198]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1197642,33.5987628]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1197753,33.597378]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1249576,33.5818251]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1251555,33.5815112]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.099254,33.5824039]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1241636,33.5818256]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.134388,33.58216]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1347164,33.582048]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.134235367427,33.6095285044587]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1201739,33.5963866]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1339118,33.5836898]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1525661,33.4803542]},"properties":{"stars":"1.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.15312,33.48001]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1529177,33.4804804]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.151335,33.49245]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1851741,33.4952625]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.166939,33.494559]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1688163,33.49548]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1858356,33.495198]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1690854,33.4958142]},"properties":{"stars":"2"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1683457,33.4952704]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1697337,33.4948927]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.15411973599,33.495704630868]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.173696,33.494229]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1533049,33.4949556]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.2174972,33.4946468]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.2009798,33.4947838]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.2005786,33.4948584]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.2167573,33.4946448]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.2173778,33.4946902]},"properties":{"stars":"1.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.221054,33.480679]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.2367926,33.5084748]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.225099,33.494915]},"properties":{"stars":"1.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.2220681,33.4946539]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.219346,33.477407]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.227821,33.479524]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.2020844,33.4812851]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.203776,33.47994]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1862167,33.4818347]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.236894,33.49389]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.167615,33.466759]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1696016,33.4659771]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.168103456497,33.4670876585058]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.167615,33.466759]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1711226,33.4663506]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.167962,33.465469]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1672669,33.4656138]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.2213794,33.4787353]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.221138,33.466993]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.237262,33.472143]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.22115,33.46898]},"properties":{"stars":"1.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.2211945,33.4775855]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.22135,33.479324]},"properties":{"stars":"2"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.221284,33.470788]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.188328,33.466415]},"properties":{"stars":"2"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.255643322754,33.4902326241097]},"properties":{"stars":"2"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.2536443,33.4797253]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.2920296,33.493973]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.287703,33.494108]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.2920313,33.493973]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0735285,33.3777493]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.086059,33.362881]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0973137,33.391964]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1694576,33.4605285]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1568419,33.4511267]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.174813,33.437482]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1858875,33.462094]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1695859,33.4653002]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.219927,33.464171]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1337379,33.5401767]},"properties":{"stars":"1.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1342532,33.5549658]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1333288,33.5671173]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.114685,33.538227]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1169962,33.5515865]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1357952,33.5531112]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.117925,33.576333]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.118976,33.579999]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1333594,33.5529745]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1307323,33.5261574]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1343372,33.5415109]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1130622,33.5531915]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.125614583492,33.5741241532692]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.122349,33.579445]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1178872,33.5679047]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1257408,33.5735301]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1204917,33.5804279]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1223949,33.5813975]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.12561,33.574335]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1342566,33.5538702]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1342576,33.5512071]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.122052609921,33.5815498714519]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1246212,33.5800411]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.150244,33.6391363]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1328669,33.6102307]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.13216,33.63236]},"properties":{"stars":"2"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.117387241435,33.641613836128]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.118875,33.641912]},"properties":{"stars":"2"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1308786,33.6399107]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1189379,33.6399375]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1310283,33.610825]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.133927,33.639989]},"properties":{"stars":"2"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1500691,33.6106434]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1336897,33.6232447]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1340403,33.6107444]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1506377,33.6389203]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.135541,33.61116]},"properties":{"stars":"1.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.134346,33.62758]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1212093,33.6389639]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1348765,33.6120737]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1507068,33.6102682]},"properties":{"stars":"2"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.13608,33.6392782]},"properties":{"stars":"2"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.150139,33.63929]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.13983297348,33.7143270569574]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.118963,33.6394497]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1298368,33.6252489]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.066857,33.798477]},"properties":{"stars":"2"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.975617586337,33.6752637422377]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0301297,33.6789932]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.084629,33.683345]},"properties":{"stars":"5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.065458,33.449233]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0734835,33.4772365]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.047888,33.479028]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0741143,33.5005719]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0480242,33.5237203]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.047889,33.52485]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.991453,33.4951403]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9852597,33.5095252]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0741658,33.5694088]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.073681,33.367178]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0824491,33.4884357]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0146409,33.5100544]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.100731,33.626933]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.079081,33.49112]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9878697,33.4552907]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9878697,33.4552907]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0649071,33.4770399]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9763848,33.3488977]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9885861,33.5092093]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.079908,33.45496]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0734977,33.4916953]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9967663,33.4951157]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.030564,33.489522]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1142778,33.7110102]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.978279,33.331773]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9955879,33.5112348]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.072327136993,33.4566960573784]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0720329,33.5102803]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.09158,33.480771]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0640088,33.5389948]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.064525647816,33.5376161925574]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.061566,33.509517]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0714986,33.4587486]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0649235,33.4743013]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.065107,33.474605]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.111108853248,33.7112906335341]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0473892,33.4957851]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0465536,33.5092367]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.065567970276,33.458692129096]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.004291,33.640076]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0588374,33.5093453]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9746066,33.678615]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.071886,33.449858]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9768512,33.6101518]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.976905,33.612935]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.928108833152,33.655912540487]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.038676,33.455036]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.000409,33.495576]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.116198,33.560853]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.97839,33.303967]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.065323,33.511665]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.026154,33.439648]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9952353,33.5097283]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.06434,33.511332]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0656259,33.4493777]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.994403600693,33.4346825157367]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.995512,33.502429]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.026154,33.439648]},"properties":{"stars":"2"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.063844,33.517438]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.07149,33.447091]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.2005786,33.4948584]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.001969,33.494927]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0467571,33.5478106]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9300279,33.6556844]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0462108,33.4596905]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9965162,33.5098007]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.047508,33.5243311]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.063942,33.53876]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0370088,33.5054706]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.011949,33.509787]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9893905,33.4531351]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.006316886792,33.4389591310641]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0734903,33.5637599]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0739,33.4499]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1366725,33.6390629]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0129108,33.3906771]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0308488,33.6227592]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0128616,33.4769252]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0700483,33.440996]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0739,33.4499]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1313015,33.6397266]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0699779,33.4571599]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.979984,33.5960442]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.080631,33.480016]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9878697,33.4552907]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0833763,33.4974892]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.06466,33.531328]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1169966,33.5516353]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0273984,33.5093706]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9274124,33.6384699]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.969786,33.375942]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.980951,33.304026]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1516293,33.6390426]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.995106,33.494489]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9300279,33.6556844]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.073196,33.491645]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0313454,33.4657823]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9987462,33.6119413]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0102387,33.6421785]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0479816,33.5318417]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.937873322754,33.676900084358]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.986679,33.5115803]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0474569,33.5478355]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0825073,33.4802168]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.982245,33.640048]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.989069135085,33.4956423363684]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1162942,33.552987]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0563984,33.530141]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.978279,33.331773]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9770187,33.5834449]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0312477,33.6328505]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9872611,33.5997402]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.071886,33.449858]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0639456,33.5219028]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0714244,33.448402]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.92641,33.655566]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.036954164505,33.3784640242654]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9694565,33.678092]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0122744,33.5098]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.070093,33.4477082]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1496637,33.5675268]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.993252,33.305759]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1348294,33.4725383]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.081705,33.655105]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0835024,33.498858]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9815304,33.5991348]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.045816,33.508756]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.047907,33.505884]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9798699,33.3055166]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.992238,33.305739]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.072761,33.391881]},"properties":{"stars":"2"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.995167,33.640408]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9806909,33.3927485]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.082285,33.392073]},"properties":{"stars":"2"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.930086,33.655906]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.027582,33.508118]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.068087,33.6404587]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.119703,33.480745]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.116849,33.6621511]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9883722,33.4954826]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.073301,33.479978]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.983452,33.480601]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.06466,33.531328]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0045736,33.4038261]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1001383,33.5540954]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1116606,33.6401217]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.111252129845,33.7111223734905]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0706,33.44742]},"properties":{"stars":"2"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.2375413,33.4955629]},"properties":{"stars":"1.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1000362,33.5014106]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.2032262,33.4937767]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.126279,33.494408]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0482013,33.4332134]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.101335,33.437027]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9788671,33.5839581]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9893269,33.4656925]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.2416908,33.4653163]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0742496,33.4593954]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.982147,33.304705]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0980877,33.6378146]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0136,33.6259]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9812072,33.5990432]},"properties":{"stars":"1.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0696,33.4492]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.004489,33.480174]},"properties":{"stars":"2"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0825071,33.4405202]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0301937,33.481724]},"properties":{"stars":"2"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9883722,33.4954826]},"properties":{"stars":"5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0740911,33.4503008]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.2737721,33.5083166]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.997771,33.479889]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9843679,33.5994904]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.01258,33.480186]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0645843,33.6402004]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9788671,33.5839581]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.073153,33.451334]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.007051,33.480827]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0125947,33.305063]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0921021,33.5094627]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9954762,33.4227165]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.281947135925,33.4939156776305]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0106146,33.3781837]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9994842,33.3049423]},"properties":{"stars":"2"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.070932388306,33.6402046465297]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.085953,33.684175]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.041489,33.508736]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.977315,33.6387259]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1188567,33.4798521]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.012297,33.479588]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0660462,33.6407846]},"properties":{"stars":"1.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1309872,33.5239862]},"properties":{"stars":"2"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0691194,33.4526031]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9891629,33.4950886]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.153974,33.611161]},"properties":{"stars":"2"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1141985,33.5123616]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.127874,33.7999505]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.984444645508,33.501317036545]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1687924,33.4950665]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.012594,33.304846]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.05858,33.8000531]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1142778,33.7110102]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9825338,33.48009]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0475038,33.5368278]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1142778,33.7110102]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1288507,33.6401699]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.2252499,33.4225758]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.991311,33.305824]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9778065,33.6128816]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0321827,33.3779462]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0654251,33.5609161]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0476957,33.4652484]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9770624,33.6415429]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.133413106203,33.6109646187071]},"properties":{"stars":"1.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.2223461,33.4805123]},"properties":{"stars":"2"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.132496,33.626344]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.082173,33.4299139]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.065588,33.567216]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.111991,33.61106]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9777891,33.6128817]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.100296020508,33.5127449035645]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.010011,33.639969]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9299197,33.6554989]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9945753,33.3044612]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1174765,33.5777369]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0598304,33.4368481]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.015207,33.509554]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9787347,33.4052312]},"properties":{"stars":"2"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.979837,33.638405]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.116639,33.509162]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9299197,33.6554989]},"properties":{"stars":"2"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1335055,33.5094587]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.00303,33.62121]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1279076,33.8000093]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1133481,33.8576567]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.026154,33.439648]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0812686,33.4065491]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.221126,33.476312]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.076718,33.479992]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0143,33.594123]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0044235,33.4667116]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.2190807,33.4774136]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.07089,33.377272]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0129072,33.4814408]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.031715645508,33.5082687981416]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.03605,33.597213]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0354128,33.3781253]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.10011,33.552723]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0734644,33.4726589]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9766885,33.3197199]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.031371,33.378269]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1122766,33.711091]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9300279,33.6556844]},"properties":{"stars":"2"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0750411,33.4503624]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.028555,33.378405]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.100386,33.354466]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1347922,33.475364]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.049455,33.377568]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0718179,33.5092611]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9958949,33.3042146]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.004291,33.640076]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0650431,33.5388349]},"properties":{"stars":"1.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0293475,33.6408408]},"properties":{"stars":"2"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0329027,33.3779323]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.117985,33.671044]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.2919195,33.4947065]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1142778,33.7110102]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.978579,33.677854]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.09836,33.656005]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9975,33.6914]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.150858,33.5981]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0041452,33.4951613]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1178613,33.5097078]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0727308,33.4557474]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9725147,33.4657564]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1142778,33.7110102]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0994892,33.5520018]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.994031,33.480288]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.063427,33.607105]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1231013,33.5813089]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0696,33.4492]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0650509,33.568758]},"properties":{"stars":"2"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.003887,33.495442]},"properties":{"stars":"1.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.134846,33.6405889]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1218935,33.6702216]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.994824,33.406857]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1498697,33.5674232]},"properties":{"stars":"2"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.010011,33.639969]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0303513,33.6279746]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1150391,33.5242889]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.02249,33.406669]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9947293,33.626743]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0536037,33.4065905]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0079773,33.4086068]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0328468,33.64018]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9904267,33.4658346]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0922595,33.5095738]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9798186,33.6010878]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9955238,33.5096886]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0507,33.689371015475]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9300279,33.6556844]},"properties":{"stars":"2"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1349799,33.6107274]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0825986,33.5168326]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0941925,33.5240184]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0095457,33.4356207]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.012504,33.390792]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.099784240127,33.641717210412]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0315516,33.3794083]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.064634,33.565695]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.239795,33.424939]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.135837,33.538175]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.074198,33.450611]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.97384268823,33.465873262678]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0541401,33.4657549]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.112046,33.858557]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9774995,33.6259946]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0824683,33.5173991]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9746066,33.678615]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0739,33.4499]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.071756,33.448587]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.12409,33.574153]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.047098,33.5090676]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.068697407411,33.4524340712574]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.079947,33.4950915]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.116214529419,33.525634916509]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0476668,33.4837225]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.068404,33.637793]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1087177,33.5531164]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0829359,33.4654801]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.013359,33.5854942]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0983488,33.6113056]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0662499,33.6077095]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9746066,33.678615]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9746066,33.678615]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.014454,33.4952159]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.048271,33.475371]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0717592,33.4493093]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0740504,33.489085]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.01199889183,33.6555664999899]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.073616,33.477031]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0791022,33.4549678]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9812072,33.5990432]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.07346,33.566128]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9834389,33.6011167]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.076718,33.479992]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0125521,33.6119171]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.120516,33.5803589]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0070357,33.4354544]},"properties":{"stars":"2"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1161771,33.6839876]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9746066,33.678615]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.071339,33.637072]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.061875,33.495238]},"properties":{"stars":"2"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0069893,33.4354634]},"properties":{"stars":"2"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0085884,33.435529]},"properties":{"stars":"2"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0974548,33.4633635]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.975898,33.495018]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.978210449219,33.3485832214355]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.066286,33.627028]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.977849,33.494238]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9953788,33.5119901]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0329027,33.3779323]},"properties":{"stars":"2"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0178286,33.4382789]},"properties":{"stars":"2"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.079081,33.49112]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.013146877289,33.6562094945374]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.063434,33.447521]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1029093,33.5253546]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.074714,33.449799]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0724302,33.4657394]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0662616,33.4588994]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0655987,33.5708369]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.122304737568,33.6397283524275]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.090481,33.4586677]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.059954,33.448717]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.074859,33.448935]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.3510497,33.4498373]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.115899,33.587766]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.978279,33.331773]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.09925,33.555296]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9746066,33.678615]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0129072,33.4814408]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0737503,33.5650982]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9299045,33.6530291]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.083579911637,33.6543532140261]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0997309,33.4899978]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0297828,33.4874299]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.074211,33.449711]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0656259,33.4493777]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9798909,33.7977694]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.048021,33.487843]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9660359,33.6834408]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.048136,33.508282]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0050862,33.4954475]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9777841,33.5837094]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9940154,33.4953688]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.073765,33.51315]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.026154,33.439648]},"properties":{"stars":"2"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.069183349609,33.4527168273926]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0121147,33.6272318]},"properties":{"stars":"1"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9798208,33.4948197]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0178286,33.4382789]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.054749812,33.304167097]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.029783,33.467805]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0740474,33.4493145]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0734116,33.4673017]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9800201,33.5993116]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0628096,33.6075585]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9878697,33.4552907]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.07,33.4501432284974]},"properties":{"stars":"2"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1204191,33.569402]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0719926,33.4556584]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0146407,33.5100398]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0637645,33.4948977]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.035636,33.507982]},"properties":{"stars":"2"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0653413,33.4658597]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0473308,33.6411185]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.011827,33.436293]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.007296,33.437136]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0014474,33.495157]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9299197,33.6554989]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.077889,33.4802381]},"properties":{"stars":"2"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9602653,33.4803042]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.07149,33.447091]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.063756,33.495024]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0772,33.449188]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0309244,33.6308568]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.151282,33.640832]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.07643,33.484487]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.045639,33.494997]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.019165147988,33.639951900923]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.98048,33.5967879]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9791944,33.6756727]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0177308,33.4808928]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1248113,33.5773539]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.064752,33.472674]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9870563,33.4799838]},"properties":{"stars":"2"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.981189677656,33.6029318153084]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.092945,33.711456]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0651766,33.5754756]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.978772,33.600769]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.112801671028,33.7124261364639]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.995167,33.640408]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.011827,33.436293]},"properties":{"stars":"2"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0650971,33.474237]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9954348,33.4951237]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1129733,33.7150071]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.074022,33.392492]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0984005,33.6836613]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1250101,33.5818251]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.981558,33.304703]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9770187,33.5834449]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.014327,33.412207]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.101774,33.378959]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.111736,33.712971]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.074485778809,33.5070953369141]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9787698,33.5839404]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1102942,33.4807562]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.012504,33.390792]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0676437,33.6405044]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.093723,33.640558]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0739,33.4499]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0684149,33.638291]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.076505,33.480158]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9778751,33.3193788]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1314386,33.625275]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.054775,33.304331]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9832636,33.6411845]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.966112,33.683479]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.038676,33.455036]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.254559,33.4780159]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0388616,33.5065554]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0995834,33.5388125]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9746066,33.678615]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.10172,33.378302]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1117351,33.7129797]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9941067,33.4797564]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.073612,33.364569]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.045735,33.507884]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.103239,33.509991]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1241562,33.5818256]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.2920313,33.493973]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.075344,33.449777]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.033036,33.378269]},"properties":{"stars":"2"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0744818,33.4917397]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0645843,33.6402004]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.123557,33.5795554]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1203279,33.6674187]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.11578,33.586891]},"properties":{"stars":"1"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9813995,33.3307646]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.058481574059,33.4661411494017]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.979676,33.3786964]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0292056,33.3777009]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9974992,33.4804297]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9768837,33.5834251]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9975,33.6914]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0152854,33.5100242]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1129733,33.7150071]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0284918,33.5104258]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0649741,33.5221451]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9985862,33.3050646]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.221156,33.468226]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1188971,33.6397684]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.098958,33.683666]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.099227,33.654355]},"properties":{"stars":"1.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.073407,33.3777494]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.134508,33.580671]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.031005,33.506562]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1350865,33.5674031]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.078017,33.465462]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1320278,33.3931285]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0999357,33.4067245]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.100492,33.386503]},"properties":{"stars":"2"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0701054,33.4514311]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.07346,33.566128]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0365448,33.3778998]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.067011,33.508952]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0823359,33.516464]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.06844329834,33.456078429468]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9300279,33.6556844]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1217,33.82895]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0739,33.4499]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.128578,33.799527]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.122001647949,33.8313532702974]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.039357,33.494368]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0281851,33.37771]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.064765,33.470887]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.2260121,33.4233639]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.072167,33.455863]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.119194,33.609811]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0272041,33.5102068]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.008269,33.5820409]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.075677,33.450047]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9868214,33.4820165]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1292664,33.6401052]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.072853,33.449228]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9785074,33.6025873]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.965274810791,33.6753542414738]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.966607,33.67681]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.056065,33.472853]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1129733,33.7150071]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1142778,33.7110102]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0473373,33.4654674]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0365534,33.6058104]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9953819,33.4483495]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1181337,33.5688268]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0375052,33.509693]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0471395,33.4802204]},"properties":{"stars":"2"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0739452,33.4496092]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1107845,33.5533145]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0477155,33.449528]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.2660986,33.5083194]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.101312,33.6988429]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.096467018127,33.7128455920235]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.099237,33.5937119]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1029346,33.5239086]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.983452,33.480601]},"properties":{"stars":"2"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0684448,33.6373522]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.978579,33.677854]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.969566345215,33.640347560124]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0358954,33.3778368]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.034357,33.4950021]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9783046,33.6034411]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9638394,33.6737677]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0069893,33.4354634]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0573494,33.5382586]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0823146,33.5019615]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.073306,33.490995]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.073239,33.453814]},"properties":{"stars":"2"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0036214,33.3165959]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.103672,33.68439]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1514989,33.5834217]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.966884476196,33.6856662379686]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0449657,33.494661]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.225412,33.4797]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9791944,33.6756727]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.2231487,33.4795886]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.047055,33.639747]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9885861,33.5092093]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.991549,33.320748]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1383751,33.5095996]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.048079,33.538927]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1676855,33.4660158]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.108625,33.511905]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1342315,33.3894264]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.963375202186,33.6753261877659]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9959254,33.466978]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.02967,33.4866]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0722832,33.4558709]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9699851,33.4802258]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0651592,33.5754755]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0537246,33.3058575]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.072167,33.455863]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.134316,33.625972]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.056714,33.446778]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0651768,33.5754388]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0686337,33.4516878]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1130414,33.524003]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9955144,33.6407831]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1371245,33.5675238]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0629953,33.4951559]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0898162,33.457118]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.077177,33.458871]},"properties":{"stars":"1.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.082017,33.451101]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.133654,33.582758]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.073239,33.453814]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9867805,33.495718]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0740912,33.5126276]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.013936,33.597332]},"properties":{"stars":"5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0106146,33.3781837]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1388202,33.8649643]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0020575,33.4949347]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9728446,33.4656711]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1136988,33.7150963]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1110536,33.5544643]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.070371,33.4564189]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1109268,33.7129789]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9784028,33.597833]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9746066,33.678615]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9813513,33.597361]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0534296,33.3052457]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9869486,33.5997853]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.083991,33.508834]},"properties":{"stars":"5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0623802,33.6376847]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.029821,33.376977]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.079134583473,33.4914048761129]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9798208,33.4948197]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.100731,33.626933]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.101899,33.712245]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0791022,33.4549678]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0131039,33.5834928]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.977756,33.49413]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0805886,33.4803159]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0403946,33.5094461]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0989577,33.6836515]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.027313,33.510538]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1526954,33.6546046]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.000808,33.400284]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1185603,33.6397206]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1065774,33.683803]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.219095,33.4658042]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1230677,33.6686473]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9633667,33.6753442]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0306592,33.4487371]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9825532,33.480203]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.971852,33.373465]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.220176,33.479146]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9788107,33.4043912]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9923032,33.4801515]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1000653,33.6545842]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0684502,33.637366]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.2208449,33.4725826]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.994275,33.6408798]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0737398,33.5612361]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0966829,33.6764701]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.2260121,33.4233639]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.254559,33.4780159]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.132197,33.55967]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.994039,33.479852]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0867893,33.5091348]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0302201,33.4949032]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0476186,33.486257]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0725189,33.4724336]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.065637,33.476084]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0686109,33.4577071]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.122882,33.667746]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0264625,33.4655293]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0292056,33.3777009]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.136171,33.390681]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.096024,33.510112]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9787834,33.6260284]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.002139091492,33.4373684849164]},"properties":{"stars":"2"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.021248,33.496155]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.010747,33.434933]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9956337,33.436027]},"properties":{"stars":"2"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9778751,33.3193788]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0822129,33.4951554]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0977169,33.4514292]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.119194,33.609811]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0823528,33.5162232]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1215834,33.580542]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.979837,33.638405]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.983383,33.641426]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0143931,33.5100571]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1696984,33.4950075]},"properties":{"stars":"2"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0834514,33.4987692]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.985722,33.480692]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0739142,33.5062078]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0114247,33.5098716]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.065333427322,33.4885590269148]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.03017,33.671426]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.986452,33.475115]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0130547,33.6406929]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0449114,33.5101676]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0069893,33.4354634]},"properties":{"stars":"1.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.023345,33.523205]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1158534,33.7978265]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.047195,33.537514]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.092428,33.683323]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.00313,33.317532]},"properties":{"stars":"2"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.081364,33.639663]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.113355,33.450819]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0077189,33.5812164]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0303905,33.4953991]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9300279,33.6556844]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0685027,33.4528292]},"properties":{"stars":"5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.2348367,33.4943527]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9819,33.348162]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0735441,33.39627]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0729196,33.3781658]},"properties":{"stars":"1.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.073536,33.567452]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.978292,33.304758]},"properties":{"stars":"2"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1492386,33.6391367]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0594876,33.5092093]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0731154,33.4816891]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1219894,33.4935146]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0410308,33.4659221]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.041489,33.508736]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0125521,33.6119171]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1318707,33.6256754]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1292649,33.7988195]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.980572,33.640098]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0670453,33.509038]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1139493,33.7134575]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1299404,33.8005397]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0911673,33.5239687]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.982113,33.331655]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.103672,33.68439]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0709184,33.567424]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0921564,33.6402613]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.06508,33.4742041]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.978816,33.465334]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.030859,33.6698624]},"properties":{"stars":"2"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0131333,33.5854147]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9958614,33.4810166]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.101312,33.6988429]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.067994484423,33.6400536994361]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.979651,33.305766]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0647949,33.474683]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.075503,33.449553]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.890157401715,33.5690679812527]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0649749,33.5675987]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.077468,33.459014]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.097523,33.538913]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0357137,33.3762931]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0301297,33.6789932]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0998714,33.6797092]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.047393,33.469201]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9812072,33.5990432]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.101312,33.6988429]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9836263,33.3044287]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.082114,33.5019393]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.063091,33.508901]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.07149,33.447091]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.100242614746,33.6405830383301]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.082037,33.683155]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0980691,33.5239388]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1513005,33.4813351]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1294042,33.8004042]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.066419,33.6262339]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1182091,33.7982918]},"properties":{"stars":"1.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.031,33.67621]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1346678,33.4793036]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.012051,33.466133]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0314798,33.669927]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.999499797821,33.4355778480343]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.082342,33.654189]},"properties":{"stars":"2"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1105198,33.6117852]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9820214,33.3480616]},"properties":{"stars":"2"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.100274,33.492651]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1294006,33.799435]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0835294,33.5099835]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0971578,33.3922941]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.994052,33.612391]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.2250218,33.4225045]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.237262,33.472143]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0918965,33.6406057]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.063942,33.53876]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0289929,33.4950939]},"properties":{"stars":"2"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.2207043,33.4663106]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1226961,33.5749703]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.13563,33.7983]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.029694,33.669997]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1215774,33.4659515]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.2008098,33.480393]},"properties":{"stars":"2"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.237113,33.423497]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1205665,33.6399809]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.2244802,33.4230603]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.107113,33.568501]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.152778,33.4660064]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0318686,33.5071655]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0118669,33.4660406]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0315646,33.6711501]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0933198,33.5196221]},"properties":{"stars":"2"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.2548912,33.4811847]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.221697,33.424051]},"properties":{"stars":"2"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0816281,33.4658259]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9978273,33.4352284]},"properties":{"stars":"2"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.219915039948,33.4796163020616]},"properties":{"stars":"5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.133559,33.3906552]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1156224,33.7970052]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.224647,33.4765]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.046606,33.4513555]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0475052,33.5392195]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.13223695755,33.3925242970767]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.03238,33.407247]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0069893,33.4354634]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.202428,33.713692]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1206749,33.7982756]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1683743,33.459618]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.998627,33.3050269]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9945753,33.3044612]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9945753,33.3044612]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.07325,33.450081]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0210482,33.6403226]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1148992,33.624036]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0265,33.4084]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0037911,33.4951587]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.2045012,33.4948317]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0913077,33.4653073]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.118609,33.487299]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9952351,33.5097278]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.133843,33.50915]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9814864,33.3306785]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.133613,33.58148]},"properties":{"stars":"2"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0986547,33.5388079]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.040116,33.507557]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0705196,33.4368339]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.025723,33.509608]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0057638,33.3808164]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.047101,33.530335]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0722782,33.4535069]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1363617,33.5530948]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0740771,33.4504587]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.11195,33.631458]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.028138,33.510225]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0474713,33.5242756]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.030703,33.451096]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0676314,33.640001]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.129705,33.6400761]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.092068,33.495304]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0072682,33.43653]},"properties":{"stars":"2"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9746066,33.678615]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0283059,33.5091313]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9791944,33.6756727]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0359509,33.5962271]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.072164,33.457457]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0651766,33.5754756]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1517001,33.5266867]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1122766,33.711091]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.090804204345,33.4587047249079]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9945634,33.3375219]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.064128,33.537947]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.104728,33.712243]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0632727,33.4947482]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1107195,33.5239538]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.134448,33.595874]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0095457,33.4356207]},"properties":{"stars":"2"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.11792,33.673322]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.108787,33.523717]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1004874,33.5529149]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.991311,33.305824]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.997771,33.479889]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.008045,33.437028]},"properties":{"stars":"2"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0312155,33.4803136]},"properties":{"stars":"2"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1259291,33.5743434]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1136988,33.7150963]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0773177,33.4587314]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.065353,33.50796]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.092428,33.683323]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.031298,33.619354]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.263704,33.482987]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0473892,33.4957851]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0740771,33.4504587]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.028081,33.508704]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1420305,33.7127847]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0997049,33.553448]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0722749,33.4587814]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.096976,33.538144]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0559069,33.5668514]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9932021,33.4074071]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1180452,33.7971416]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.108883,33.50983]},"properties":{"stars":"2"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0328876,33.4947915]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.073625,33.364006]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.069182,33.452718]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0656645,33.4495394]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.152926,33.4947845]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0050862,33.4954475]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0650776,33.7990129]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9608332,33.487645]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0737398,33.5612361]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.026154,33.439648]},"properties":{"stars":"2"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0742715,33.4475173]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.2664058,33.50798]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.063826,33.5095]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9300279,33.6556844]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1336024,33.4965366]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.983256340027,33.3487055477927]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.98572,33.595949]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.109570480878,33.7140398620115]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.068359,33.457863]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.978677138686,33.6259820312262]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0740373,33.4483771]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0537905,33.3067372]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9746066,33.678615]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0698979,33.4432726]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0742715,33.4475173]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.118043,33.578121]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9823835,33.6400604]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.04725,33.5016589]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0565797,33.5511368]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.092068,33.495304]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9765163,33.319704]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.995167,33.640408]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0467571,33.5478106]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0807878,33.4803022]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9746167,33.6759492]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.055115,33.30617]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.076896,33.4447199]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.048079,33.538927]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1135147,33.7104957]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0118669,33.6364503]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.027493778574,33.5102336367035]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.977677,33.446572]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.067828,33.458348]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9862455,33.5107032]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0649235,33.4743013]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.06484,33.437259]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0012935,33.4951414]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.068915367126,33.6401514708996]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.027016,33.377003]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1175104,33.4511034]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.082414,33.5027018]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.065708,33.4297449]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.046355307102,33.5092750936747]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.97993,33.31898]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.890108509272,33.5691016365423]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.029066725112,33.508533016607]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.031235,33.623899]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0735793,33.4483266]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0361195,33.3778513]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.075324,33.4495069]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9923032,33.4801515]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0484694,33.5239412]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9795246,33.6384005]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.994984,33.641795]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.133468,33.655094]},"properties":{"stars":"2"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.978579,33.677854]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0740373,33.4483771]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0124834,33.6120096]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0659378,33.6077242]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9862622,33.4736978]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1512485,33.8701661]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.996914148331,33.4341094982183]},"properties":{"stars":"2"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9975654,33.3773942]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9945753,33.3044612]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0719705,33.4555664]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1122766,33.711091]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.100947,33.6405699]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.219404,33.481249]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1169946,33.5513424]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.011752,33.58193]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.074709351834,33.4482076863059]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.030244,33.662594]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.073396,33.506856]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0133307,33.5833625]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.030189633369,33.67106847428]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.134449,33.596776]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0982917,33.5386352]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1198803,33.5823955]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0106146,33.3781837]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.133752,33.377586]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9785499,33.3309021]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9898781,33.4949805]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0711733,33.4534895]},"properties":{"stars":"1.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0685027,33.4528292]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0995827,33.5365239]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0734239,33.4473356]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0996877,33.4862403]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.960833,33.4876239]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0131473,33.4738413]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.054162,33.5529662]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0535863,33.4948057]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1039681,33.6841932]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9945753,33.3044612]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.026154,33.439648]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.064757,33.4719849]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.134532928467,33.6095270433633]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0733143,33.4516715]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.995963,33.417937]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0863874,33.5080943]},"properties":{"stars":"5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0307744,33.5086148]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0095457,33.4356207]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.038883,33.597326]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.929925,33.655629]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.07341192283,33.513697188158]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.065001,33.640714]},"properties":{"stars":"1.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9789165,33.3055579]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.00303,33.62121]},"properties":{"stars":"2"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.076855,33.488547]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.99823,33.327009]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1186121,33.5773157]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9780526,33.6676061]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.994210481644,33.4346646089965]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.06625,33.445956]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.070973291016,33.4549290082399]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.06625,33.445956]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.994993686676,33.4797420689751]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1247145,33.4515612]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9893448,33.494594]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0482435,33.5237004]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0272041,33.5102068]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.027277,33.639984]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1206413,33.7306843]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.996935606003,33.4340826379293]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1002302,33.6264211]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.09925,33.555296]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.047066,33.507549]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.958437,33.468251]},"properties":{"stars":"5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0010971,33.4953972]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0740373,33.4483771]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.007051,33.480827]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0632597,33.6071604]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9819,33.348162]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0702065,33.5674897]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.202428,33.713692]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0742715,33.4475173]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.184512,33.461403]},"properties":{"stars":"1.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9787698,33.5839404]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.069182,33.452718]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0295117,33.3999914]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0740373,33.4483771]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0754187,33.4495994]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9806304,33.5988434]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.070677,33.392663]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.048027,33.484011]},"properties":{"stars":"2"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.995167,33.640408]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.986183,33.454058]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0998501,33.5520874]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.981342,33.599459]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0649235,33.4743013]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0739774,33.4495708]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.064757,33.474169]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0734239,33.4473356]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.011747,33.626917]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9865351,33.4780567]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.073753,33.3956469]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0766916,33.4517763]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.11785,33.524313]},"properties":{"stars":"2"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1208278,33.7977861]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9782659,33.5983643]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.063117,33.537943]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.134316,33.625972]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9994,33.3051079]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1182988,33.5818729]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.069182,33.452718]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0391851,33.5959571]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9788588,33.5982812]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.092093,33.495777]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.998591,33.611744]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.019776,33.495437]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0740373,33.4483771]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.063682556152,33.6406555175781]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0772,33.449188]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9863276,33.6002388]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1182099,33.578692]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.065431,33.469968]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.113014,33.713095]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.052655,33.628229]},"properties":{"stars":"1"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9763846,33.3488832]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.065474,33.47014]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0737503,33.5650982]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1372596,33.5091503]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0653341,33.5758589]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0911673,33.5239687]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1502292,33.8738718]},"properties":{"stars":"2"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9798245,33.4949862]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.117962,33.670413]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0914179,33.4580234]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.067834,33.458066]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.977504,33.332316]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0766916,33.4517763]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.117547,33.7972478]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0121148,33.6391935]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0936168,33.6403359]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.136663,33.538887]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.067981958389,33.4588800976063]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.2579448,33.4797198]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9922854,33.462899]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9942752,33.5083691]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1130676,33.7151321]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9965163,33.5097861]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.975898,33.495018]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0830903,33.4521292]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.2210838,33.4768658]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0463575,33.5102764]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0744459,33.4494379]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.065272,33.4760345]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.08407,33.509755]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.270585815302,33.6134618671209]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0730589,33.509297]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.01197,33.49564]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0733662,33.4538669]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0997467,33.4956607]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.041489,33.508736]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0734239,33.4473356]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.075508,33.449597]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.048027,33.484011]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0734239,33.4473356]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9883724,33.4799388]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.22135,33.479324]},"properties":{"stars":"2"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0298729,33.3773179]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.077886645508,33.4463233535622]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1361274,33.5672322]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.029992,33.4879966]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.994414329529,33.4340826379293]},"properties":{"stars":"1.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.117267,33.382596]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.06422,33.40724]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.082178,33.465611]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.08241,33.465504]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.13332,33.480085]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.066355,33.605972]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.138445,33.450951]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0308641,33.6391172]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.035636,33.507982]},"properties":{"stars":"2"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.047375,33.447551]},"properties":{"stars":"5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9903192,33.4949933]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0377579,33.5078414]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.064787,33.474229]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.999372425759,33.4368612750294]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.082516,33.487608]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0128996,33.4766277]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.082382,33.465772]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0106085,33.4657151]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0462108,33.4596905]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.151302099228,33.5685840575826]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0714244,33.448402]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.112238407135,33.7145055449834]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.07483433187,33.4471752494574]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.01339179649,33.5800094726177]},"properties":{"stars":"1.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.169718,33.461712]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0739142,33.5062078]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9869515,33.5997996]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.085554,33.451613]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0057729,33.4657273]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0537905,33.3067372]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.977600097656,33.6749992370605]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.064905,33.4770071]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0370968,33.5980736]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0739321,33.4561612]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1336382,33.388368]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.082405090332,33.465503692627]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9765164,33.3172434]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.072906494141,33.4469119561203]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.979545,33.640232]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.072569,33.466978]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.083414396969,33.5089602510834]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0302179,33.4940035]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9791944,33.6756727]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.976882521008,33.5838994836201]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.083836,33.683216]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1502292,33.8738718]},"properties":{"stars":"2"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.074448,33.448577]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.047217,33.4233649]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1208601,33.61117]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.063942,33.53876]},"properties":{"stars":"2"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.969461,33.678131]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.977072732337,33.3047714067745]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.120931,33.666624]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.065401,33.494413]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0278495,33.5090929]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.016571044922,33.4800910949707]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0632597,33.6071604]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.173696,33.494229]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1353671,33.5534919]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.150985717773,33.5834732055664]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.073609232902,33.4557293334834]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0722782,33.4535069]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.047294616699,33.3932914733887]},"properties":{"stars":"1.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.056064,33.472824]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.999092102051,33.4348794896361]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0041452,33.4951613]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.999628543854,33.4371446573269]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.150302,33.523617]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.118593,33.5958929]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.072288,33.4807]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.013586759567,33.4359180718853]},"properties":{"stars":"1.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0612829,33.4950562]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.00763361377,33.5863891760583]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.028018004814,33.6408954795279]},"properties":{"stars":"5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.004267,33.640223]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0626763,33.6379062]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.067231017197,33.4577555526749]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.09675,33.451642]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.151272,33.48189]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0734239,33.4473356]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.047375,33.447551]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0730318,33.4480003]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.072962,33.386429]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.060828,33.494402]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.048136,33.508282]},"properties":{"stars":"2"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.965789794922,33.6792112493296]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.972701449588,33.6756805853036]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.111654,33.640376]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.220578193665,33.4520189829174]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.97966,33.3204192]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.073703110218,33.4471799433231]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9951526,33.640598]},"properties":{"stars":"2"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.06484,33.437259]},"properties":{"stars":"5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.011650204658,33.6276362548231]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.063404,33.60731]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9728446,33.4656711]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.930023,33.655709]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.014045715332,33.4348335266113]},"properties":{"stars":"2"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0248073,33.4096527]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.974609375,33.6786155700684]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0026246,33.4360388]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.081645131111,33.4659912735871]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0722749,33.4587814]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.072167,33.455863]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.998995542526,33.4365268901841]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.220191955566,33.5079727172852]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.030538,33.488164]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0971288,33.4468055]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.996807273527,33.4377749941929]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0069893,33.4354634]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.073306,33.47907]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.184772,33.466373]},"properties":{"stars":"5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.066184997559,33.7996368408203]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.082265575253,33.4656999629047]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.06615447998,33.6380004882812]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.085554,33.451613]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.965103149414,33.6769256359295]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.027641,33.500981]},"properties":{"stars":"5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.058811,33.509677]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.02249,33.406669]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0654251,33.5609161]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9767865,33.5842663]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.035941005291,33.5087140812804]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.036128044128,33.5083285024376]},"properties":{"stars":"5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.13230535388,33.5384783148766]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.040011882782,33.5057744492943]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.011286,33.6402791]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9942361,33.6411675]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.168800830841,33.3796376669781]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.030413933098,33.6553990527061]},"properties":{"stars":"5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.07156724527,33.457054176513]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.082277046094,33.4455124267804]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.029671,33.450595]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.099112,33.612162]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.035583496094,33.5097465515137]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.118364572525,33.5803476769436]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9898781,33.4949805]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.011376619339,33.6265955062005]},"properties":{"stars":"1.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.118110656738,33.5806045532227]},"properties":{"stars":"2"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.997936098642,33.4354478848589]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.978476643562,33.6022124849621]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1226961,33.5749703]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.977874755859,33.3193778991699]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.081819,33.466106]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0142073,33.5100591]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.096976,33.538144]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.082516,33.487608]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0362686,33.5092763]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.152877807617,33.4957275390625]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0067166,33.4357166]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9876339,33.4791017]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0358955,33.3778514]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1203478,33.640419]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.979372836649,33.3293584260744]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.10886,33.583212]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.135113,33.567188]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.167718,33.48001]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.997697353363,33.4355957545874]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.000563002405,33.4336861383781]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.120513916016,33.5803604125977]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.074929,33.507229]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0742715,33.4475173]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.977632529355,33.5873552453934]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0744459,33.4494379]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.075508,33.449597]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0299191,33.3772709]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.994543075561,33.4340199638893]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0996273,33.6116831]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.027191,33.510185]},"properties":{"stars":"5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.069473266602,33.4497765831184]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.001445002113,33.4336774955193]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.983333291437,33.3481901715968]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.074195,33.513539]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.016481,33.479605]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1687924,33.4950665]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.048027,33.484011]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.7497,33.3604]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9980804,33.4356179]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.993675,33.44341]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.072689351505,33.4478740331941]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.064702,33.4871849]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1068993,33.699034]},"properties":{"stars":"5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.026154,33.439648]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.994339227676,33.4341900790355]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0653473,33.5194664]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0212354,33.4962047]},"properties":{"stars":"1.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.013931274414,33.6315727233887]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9694565,33.678092]},"properties":{"stars":"2"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.121898754144,33.5744987688882]},"properties":{"stars":"5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0284918,33.5104258]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.065237,33.488807]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9837428,33.3197271]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9299197,33.6554989]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.941673,33.463851]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9978239,33.47987]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9866163,33.5106171]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0272041,33.5102068]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.037968,33.4070899]},"properties":{"stars":"2"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0609579,33.5095292]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0805864,33.4803014]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0740771,33.4504587]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1568419,33.4511267]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9947311,33.6417888]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0637038,33.5661308]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.070122,33.443909]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.046985,33.524634]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1218935,33.6702216]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.047336039714,33.5370482625034]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.997033606375,33.4376284184746]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.98252793106,33.4799642052958]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.994368166749,33.4369016620522]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9694565,33.678092]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0914133,33.5710426]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.100054,33.552894]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.986912667437,33.449506333832]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1007962,33.6115391]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.047148132536,33.5245931469823]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.118875,33.580273]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.056714,33.446778]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.035242,33.464257]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.080831151078,33.4802080508852]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0740373,33.4483771]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0653473,33.5194664]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0740373,33.4483771]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9816241,33.5989732]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9995627,33.495495]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.059263,33.44794]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.021049499512,33.6403198242188]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.956581115723,33.658618927002]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.03609,33.43671]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0773177,33.4587314]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.977349352833,33.5972864353843]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.995926,33.467014]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.005249023438,33.4953994750977]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.005917,33.582385]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0723168,33.4576585]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1170726,33.4804427]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.12426956328,33.667600379718]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.083130404353,33.4987930208445]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0478514,33.471959]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0737398,33.5612361]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9863975,33.5107015]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.029614095571,33.4675174514511]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.221367879793,33.4679027714696]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.987886506039,33.4553246222617]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9641728,33.4962205]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1017927,33.553444]},"properties":{"stars":"2"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.115810438991,33.5768949240446]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9746066,33.678615]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1357952,33.5530966]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.236864459274,33.4956339095511]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.986050442238,33.4945863538607]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0462108,33.4596905]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.035636,33.507982]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.114826068282,33.5849259261802]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0649759,33.5248869]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.013072,33.610554]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0898341,33.4572256]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0663979,33.5679191]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.057729761728,33.574771517729]},"properties":{"stars":"5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9650603,33.6758658]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.082139,33.6539394]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.068953,33.459054]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.068953,33.459054]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0684427,33.6383625]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9429502,33.6258719]},"properties":{"stars":"2"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.007376177857,33.4355279584941]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.031467529149,33.48778142988]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.118256735452,33.4951679344584]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0257951,33.5093009]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.011592666971,33.6281081563954]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.096707739216,33.4513745605228]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0686707,33.4462892]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1240351,33.6662247]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9746413,33.3192654]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.062315,33.655825]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0965935,33.5383676]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0069893,33.4354634]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.073536,33.567452]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.066246161818,33.6263076134231]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9746413,33.3192654]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0485997,33.5237125]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0734239,33.4473356]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0663223,33.3777609]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9995291,33.305107]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9978273,33.4352284]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.008318,33.5817531]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.06466,33.531328]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.065351,33.519577]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.065664676935,33.4877467395555]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0993598,33.5396436]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.031235,33.623899]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.134177200496,33.3893280131367]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0737079,33.4563262]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.074492,33.4787729]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9863622,33.4531987]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.930027902126,33.6556839919753]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0671875,33.4586895]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0378823,33.5092556]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.241885753886,33.4651041968172]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.002290017245,33.437532749158]},"properties":{"stars":"2"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.072167,33.455863]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.01424,33.530322]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.013359107077,33.5854940355855]},"properties":{"stars":"5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.020834,33.480678]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.975646,33.317959]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.123249515909,33.6395468017914]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1116606,33.6401217]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.254559,33.4780159]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.096976,33.538144]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9893448,33.494594]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0598182,33.494746]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.015465,33.6556294]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.065478,33.574496]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.980063435721,33.6747352101488]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9955077,33.4943965]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9875924,33.4560509]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.030428014696,33.5094682411034]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.910516,33.468848]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0595603,33.5636878]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0438126,33.4659223]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.973530324985,33.2873575607439]},"properties":{"stars":"2"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.117621265352,33.5244168007038]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.983328413328,33.599291022013]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.046771,33.5088898]},"properties":{"stars":"2"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.992614,33.4656654]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.069676107521,33.4459743799086]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0366323,33.507425]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1218935,33.6702216]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1169946,33.5513424]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.98351794887,33.3309218379729]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0471388,33.5089688]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.979633853434,33.329364220763]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.124353,33.666693]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.072266115761,33.45878244852]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.978728033712,33.6000149463325]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9996779,33.436051]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0069893,33.4354634]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0069893,33.4354634]},"properties":{"stars":"2"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0465582,33.5092512]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1310022,33.6248792]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.05665254631,33.305093174234]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0863874,33.5080943]},"properties":{"stars":"5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.03609,33.43671]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.082136,33.506709]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.030898,33.464435]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.2200277,33.4753816]},"properties":{"stars":"2"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9893425,33.4657067]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.017768,33.465461]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.082414,33.5027018]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.075335894252,33.4837563869115]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0037026,33.4951581]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0341955,33.5089644]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1136988,33.7150963]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.127784308636,33.4946108367144]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0493144,33.436794]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0791767,33.455069]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0861147,33.4948764]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.97799,33.319914]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.075508,33.449597]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9794097,33.5984581]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9691642,33.5044082]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0376632,33.5064725]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.104022082032,33.6839914013495]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.111678134925,33.4763758615098]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0725195,33.4493442]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.048079,33.538927]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.074725,33.463172]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.035554,33.597818]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.111285887659,33.7113512722451]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9660359,33.6834408]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.052655,33.628229]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0363947,33.6059251]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0272622,33.508094]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9986481,33.4952835]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.118546,33.4946114]},"properties":{"stars":"2"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1125267,33.4795705]},"properties":{"stars":"1"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.134564066063,33.5520415398884]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1106724,33.6403418]},"properties":{"stars":"5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.002033605654,33.4370630986112]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.099112,33.612162]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0063922,33.6412984]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9812072,33.5990432]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.045639,33.494997]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.978808113493,33.3491863608703]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.084175,33.487964]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9820214,33.3480616]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9787698,33.5839404]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0822543,33.5163421]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.2206019,33.4750738]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.2207351,33.480119]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0551086,33.5378307]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0473116,33.5369136]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0140001,33.5973316]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.99565,33.502758]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0655978,33.458928]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9941067,33.4797564]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.063844,33.517438]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.065650448203,33.6068099581456]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0893682,33.4462721]},"properties":{"stars":"5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.979545,33.640232]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.030825987458,33.4460279310296]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.972385346889,33.6760537276019]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0739922,33.4974812]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.028496924909,33.5102336366509]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0487597,33.4659576]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9845139,33.5091049]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0313771,33.670446]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.986010968685,33.4951249463565]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.028285892757,33.5105442885357]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.224647,33.4765]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9779084,33.6278262]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9905526,33.4348992]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9880736,33.5099969]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9834389,33.6011167]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9955231,33.5096881]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.064905,33.4770071]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.073765,33.51315]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.073305,33.479685]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9829,33.598313]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0717684,33.6395011]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0474891,33.5382287]},"properties":{"stars":"5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.083983185613,33.4963856006833]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.118043,33.578121]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9648884,33.6755797]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.072167,33.455863]},"properties":{"stars":"5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.995659545064,33.6398853231104]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.989088,33.421587]},"properties":{"stars":"5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0383926,33.5078944]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.083577407961,33.4947399604998]},"properties":{"stars":"1.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0565795,33.5083316]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0391851,33.5959571]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.135551162064,33.3782173669002]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1169946,33.5513424]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0308358,33.4872924]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.982285328307,33.3203324944657]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0914179,33.4580234]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.058056754014,33.5508545180918]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0742088,33.4480348]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.996967227712,33.4374021100746]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.97618637234,33.3928176617929]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0651774,33.5753082]},"properties":{"stars":"5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0985319,33.4511618]},"properties":{"stars":"5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.978471,33.583264]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.011749018375,33.5093465846601]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.048027,33.484011]},"properties":{"stars":"2"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.063632861405,33.6561019405481]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.009376361966,33.4512434899807]},"properties":{"stars":"5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9978273,33.4352284]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9779084,33.6278262]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.068953,33.459054]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0653473,33.5194664]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0730792,33.567471]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.986166,33.510484]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.083836,33.683216]},"properties":{"stars":"5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.983462199569,33.5994905233383]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.991400532424,33.3204408111891]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.096412658691,33.4516448974609]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0650491,33.6548401]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0691194,33.4526031]},"properties":{"stars":"2"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.071211,33.4459]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.12873840332,33.8000946044922]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0684502,33.637366]},"properties":{"stars":"3"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0195271,33.6408997]},"properties":{"stars":"5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.043734213544,33.5083544412296]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0982917,33.5386352]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.096976,33.538144]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0479816,33.5318417]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.064761,33.4713]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9798844,33.3057767]},"properties":{"stars":"5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9778682,33.6396352]},"properties":{"stars":"2.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9945819,33.304667]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.078715,33.5096672]},"properties":{"stars":"3.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9947311,33.6417888]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.074605,33.474235]},"properties":{"stars":"5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0871161,33.4549602]},"properties":{"stars":"4"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.080959347885,33.4800301694915]},"properties":{"stars":"4.5"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.064508,33.5313101]},"properties":{"stars":"5"}},{"type":"Feature","geometry":{},"properties":{"stars":""}}]}