HTML preprocessors can make writing HTML more powerful or convenient. For instance, Markdown is designed to be easier to write and read for text documents and you could write a loop in Pug.
In CodePen, whatever you write in the HTML editor is what goes within the <body>
tags in a basic HTML5 template. So you don't have access to higher-up elements like the <html>
tag. If you want to add classes there that can affect the whole document, this is the place to do it.
In CodePen, whatever you write in the HTML editor is what goes within the <body>
tags in a basic HTML5 template. If you need things in the <head>
of the document, put that code here.
The resource you are linking to is using the 'http' protocol, which may not work when the browser is using https.
CSS preprocessors help make authoring CSS easier. All of them offer things like variables and mixins to provide convenient abstractions.
It's a common practice to apply CSS to a page that styles elements such that they are consistent across all browsers. We offer two of the most popular choices: normalize.css and a reset. Or, choose Neither and nothing will be applied.
To get the best cross-browser support, it is a common practice to apply vendor prefixes to CSS properties and values that require them to work. For instance -webkit-
or -moz-
.
We offer two popular choices: Autoprefixer (which processes your CSS server-side) and -prefix-free (which applies prefixes via a script, client-side).
Any URLs added here will be added as <link>
s in order, and before the CSS in the editor. You can use the CSS from another Pen by using its URL and the proper URL extension.
You can apply CSS to your Pen from any stylesheet on the web. Just put a URL to it here and we'll apply it, in the order you have them, before the CSS in the Pen itself.
You can also link to another Pen here (use the .css
URL Extension) and we'll pull the CSS from that Pen and include it. If it's using a matching preprocessor, use the appropriate URL Extension and we'll combine the code before preprocessing, so you can use the linked Pen as a true dependency.
JavaScript preprocessors can help make authoring JavaScript easier and more convenient.
Babel includes JSX processing.
Any URL's added here will be added as <script>
s in order, and run before the JavaScript in the editor. You can use the URL of any other Pen and it will include the JavaScript from that Pen.
You can apply a script from anywhere on the web to your Pen. Just put a URL to it here and we'll add it, in the order you have them, before the JavaScript in the Pen itself.
If the script you link to has the file extension of a preprocessor, we'll attempt to process it before applying.
You can also link to another Pen here, and we'll pull the JavaScript from that Pen and include it. If it's using a matching preprocessor, we'll combine the code before preprocessing, so you can use the linked Pen as a true dependency.
Search for and use JavaScript packages from npm here. By selecting a package, an import
statement will be added to the top of the JavaScript editor for this package.
Using packages here is powered by esm.sh, which makes packages from npm not only available on a CDN, but prepares them for native JavaScript ESM usage.
All packages are different, so refer to their docs for how they work.
If you're using React / ReactDOM, make sure to turn on Babel for the JSX processing.
If active, Pens will autosave every 30 seconds after being saved once.
If enabled, the preview panel updates automatically as you code. If disabled, use the "Run" button to update.
If enabled, your code will be formatted when you actively save your Pen. Note: your code becomes un-folded during formatting.
Visit your global Editor Settings.
<script src="https://cdn.amcharts.com/lib/5/index.js"></script>
<script src="https://cdn.amcharts.com/lib/5/map.js"></script>
<script src="https://cdn.amcharts.com/lib/5/geodata/usaLow.js"></script>
<script src="https://cdn.amcharts.com/lib/5/themes/Animated.js"></script>
<div id="chartdiv"></div>
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}
#chartdiv {
width: 100%;
height: 96vh;
}
/**
* ---------------------------------------
* This demo was created using amCharts 5.
*
* For more information visit:
* https://www.amcharts.com/
*
* Documentation is available at:
* https://www.amcharts.com/docs/v5/
* ---------------------------------------
*/
// Create root element
// https://www.amcharts.com/docs/v5/getting-started/#Root_element
var root = am5.Root.new("chartdiv");
// Set themes
// https://www.amcharts.com/docs/v5/concepts/themes/
root.setThemes([
am5themes_Animated.new(root)
]);
// Create the map chart
// https://www.amcharts.com/docs/v5/charts/map-chart/
var chart = root.container.children.push(
am5map.MapChart.new(root, {
panX: "translateX",
panY: "translateY",
projection: am5map.geoAlbersUsa()
})
);
chart.set("zoomControl", am5map.ZoomControl.new(root, {}));
// Create main polygon series for countries
// https://www.amcharts.com/docs/v5/charts/map-chart/map-polygon-series/
var polygonSeries = chart.series.push(
am5map.MapPolygonSeries.new(root, {
geoJSON: am5geodata_usaLow
})
);
polygonSeries.mapPolygons.template.setAll({
fill:am5.color(0xdadada)
});
// Create point series for markers
// https://www.amcharts.com/docs/v5/charts/map-chart/map-point-series/
var pointSeries = chart.series.push(am5map.ClusteredPointSeries.new(root, {
groupIdField: "state"
}));
// Set clustered bullet
// https://www.amcharts.com/docs/v5/charts/map-chart/clustered-point-series/#Group_bullet
pointSeries.set("clusteredBullet", function(root) {
var container = am5.Container.new(root, {
cursorOverStyle:"pointer"
});
var circle1 = container.children.push(am5.Circle.new(root, {
radius: 8,
tooltipY: 0,
fill: am5.color(0xff8c00)
}));
var circle2 = container.children.push(am5.Circle.new(root, {
radius: 12,
fillOpacity: 0.3,
tooltipY: 0,
fill: am5.color(0xff8c00)
}));
var circle3 = container.children.push(am5.Circle.new(root, {
radius: 16,
fillOpacity: 0.3,
tooltipY: 0,
fill: am5.color(0xff8c00)
}));
var label = container.children.push(am5.Label.new(root, {
centerX: am5.p50,
centerY: am5.p50,
fill: am5.color(0xffffff),
populateText: true,
fontSize: "8",
text: "{value}"
}));
container.events.on("click", function(e) {
pointSeries.zoomToCluster(e.target.dataItem);
});
return am5.Bullet.new(root, {
sprite: container
});
});
// Create regular bullets
pointSeries.bullets.push(function() {
var circle = am5.Circle.new(root, {
radius: 6,
tooltipY: 0,
fill: am5.color(0xff8c00),
tooltipText: "{title} ({state})"
});
return am5.Bullet.new(root, {
sprite: circle
});
});
// Set data
var stores = [
{ title: "Aberdeen", state: "MD", lng: -76.1779900, lat: 39.5210770, city: "Aberdeen" },
{ title: "Aberdeen", state: "SD", lng: -98.4405850, lat: 45.4574520, city: "Aberdeen" },
{ title: "Abilene", state: "TX", lng: -99.7672590, lat: 32.4054170, city: "Abilene" },
{ title: "Abingdon", state: "MD", lng: -76.3163080, lat: 39.4602330, city: "Abingdon" },
{ title: "Abington", state: "MA", lng: -70.9276830, lat: 42.1105190, city: "Abington" },
{ title: "Abington Township", state: "PA", lng: -75.1161540, lat: 40.1248190, city: "Abington" },
{ title: "Acworth", state: "GA", lng: -84.6837830, lat: 34.0397090, city: "Acworth" },
{ title: "Addison", state: "TX", lng: -96.8538540, lat: 32.9509510, city: "Addison" },
{ title: "Ahwatukee", state: "AZ", lng: -111.9815420, lat: 33.3213790, city: "Phoenix" },
{ title: "Aiken", state: "SC", lng: -81.7111320, lat: 33.5041290, city: "Aiken" },
{ title: "Alabaster", state: "AL", lng: -86.8039770, lat: 33.2248950, city: "Alabaster" },
{ title: "Alameda", state: "CA", lng: -122.2802620, lat: 37.7887010, city: "Alameda" },
{ title: "Alamo Heights", state: "TX", lng: -98.4472830, lat: 29.4888140, city: "San Antonio" },
{ title: "Albany", state: "CA", lng: -122.3071410, lat: 37.8831990, city: "Albany" },
{ title: "Albany", state: "OR", lng: -123.0785970, lat: 44.6300340, city: "Albany" },
{ title: "Albany", state: "GA", lng: -84.2246540, lat: 31.6213350, city: "Albany" },
{ title: "Albuquerque Lomas", state: "NM", lng: -106.5278550, lat: 35.0855290, city: "Albuquerque" },
{ title: "Albuquerque NE", state: "NM", lng: -106.5815400, lat: 35.1727480, city: "Albuquerque" },
{ title: "Albuquerque NW", state: "NM", lng: -106.6642620, lat: 35.1860390, city: "Albuquerque" },
{ title: "Albuquerque Uptown", state: "NM", lng: -106.5680880, lat: 35.1015830, city: "Albuquerque" },
{ title: "Albuquerque Wyoming", state: "NM", lng: -106.5475960, lat: 35.1300340, city: "Albuquerque" },
{ title: "Alexandria", state: "VA", lng: -77.0500050, lat: 38.8339040, city: "Alexandria" },
{ title: "Alexandria", state: "LA", lng: -92.4588210, lat: 31.2803180, city: "Alexandria" },
{ title: "Alexandria", state: "MN", lng: -95.3899310, lat: 45.8500450, city: "Alexandria" },
{ title: "Alexandria Hybla Valley", state: "VA", lng: -77.0824040, lat: 38.7760050, city: "Alexandria" },
{ title: "Algonquin", state: "IL", lng: -88.3387520, lat: 42.1621030, city: "Algonquin" },
{ title: "Alhambra", state: "CA", lng: -118.1474960, lat: 34.0909450, city: "Alhambra" },
{ title: "Aliso Viejo", state: "CA", lng: -117.7053130, lat: 33.5709570, city: "Aliso Viejo" },
{ title: "Allen", state: "TX", lng: -96.6812890, lat: 33.0995390, city: "Allen" },
{ title: "Allen North", state: "TX", lng: -96.6620840, lat: 33.1235170, city: "Allen" },
{ title: "Allen Park", state: "MI", lng: -83.2065980, lat: 42.2852390, city: "Allen Park" },
{ title: "Allentown", state: "PA", lng: -75.5350350, lat: 40.6127140, city: "Allentown" },
{ title: "Alpharetta", state: "GA", lng: -84.2869940, lat: 34.0462520, city: "Alpharetta" },
{ title: "Altamonte Springs", state: "FL", lng: -81.4175700, lat: 28.6629440, city: "Altamonte Springs" },
{ title: "Alton", state: "IL", lng: -90.1699370, lat: 38.9212810, city: "Alton" },
{ title: "Altoona", state: "PA", lng: -78.4060200, lat: 40.4593010, city: "Altoona" },
{ title: "Altoona", state: "IA", lng: -93.5046250, lat: 41.6419030, city: "Altoona" },
{ title: "Amarillo", state: "TX", lng: -101.9346960, lat: 35.1856600, city: "Amarillo" },
{ title: "American Fork", state: "UT", lng: -111.8152530, lat: 40.3785040, city: "American Fork" },
{ title: "Ames", state: "IA", lng: -93.6074640, lat: 42.0191650, city: "Ames" },
{ title: "Amherst", state: "OH", lng: -82.2417910, lat: 41.4136600, city: "Amherst" },
{ title: "Amsterdam", state: "NY", lng: -74.1902150, lat: 42.9652710, city: "Amsterdam" },
{ title: "Anaheim", state: "CA", lng: -117.9425350, lat: 33.8317120, city: "Anaheim" },
{ title: "Anaheim East", state: "CA", lng: -117.8856890, lat: 33.8377780, city: "Anaheim" },
{ title: "Anaheim Hills", state: "CA", lng: -117.7476450, lat: 33.8658050, city: "Anaheim" },
{ title: "Anchorage NE", state: "AK", lng: -149.7456780, lat: 61.2268170, city: "Anchorage" },
{ title: "Anchorage South", state: "AK", lng: -149.8816960, lat: 61.1290940, city: "Anchorage" },
{ title: "Anderson", state: "SC", lng: -82.6795010, lat: 34.5495400, city: "Anderson" },
{ title: "Andover", state: "MN", lng: -93.3159880, lat: 45.2175560, city: "Andover" },
{ title: "Ankeny", state: "IA", lng: -93.5787860, lat: 41.7095360, city: "Ankeny" },
{ title: "Ann Arbor", state: "MI", lng: -83.7691790, lat: 42.2440070, city: "Ann Arbor" },
{ title: "Ann Arbor East", state: "MI", lng: -83.6773150, lat: 42.2354420, city: "Ypsilanti" },
{ title: "Annapolis", state: "MD", lng: -76.5410350, lat: 38.9798800, city: "Annapolis" },
{ title: "Ansonia", state: "CT", lng: -73.0789430, lat: 41.3404460, city: "Ansonia" },
{ title: "Antioch Slatten Ranch", state: "CA", lng: -121.7376860, lat: 37.9639990, city: "Antioch" },
{ title: "Apex", state: "NC", lng: -78.8772010, lat: 35.7449230, city: "Apex" },
{ title: "Apple Valley", state: "MN", lng: -93.2145500, lat: 44.7298980, city: "Apple Valley" },
{ title: "Apple Valley", state: "CA", lng: -117.2439530, lat: 34.4691770, city: "Apple Valley" },
{ title: "Apple Valley North", state: "CA", lng: -117.2172280, lat: 34.5274720, city: "Apple Valley" },
{ title: "Apple Valley South", state: "MN", lng: -93.1753550, lat: 44.7233070, city: "Apple Valley" },
{ title: "Appleton", state: "WI", lng: -88.4690300, lat: 44.2698600, city: "Appleton" },
{ title: "Appleton East", state: "WI", lng: -88.3568300, lat: 44.2458620, city: "Appleton" },
{ title: "Arapahoe", state: "CO", lng: -104.8815500, lat: 39.5933710, city: "Englewood" },
{ title: "Arcadia Crossing", state: "AZ", lng: -111.9845090, lat: 33.4773880, city: "Phoenix" },
{ title: "Arlington Heights", state: "IL", lng: -87.9626640, lat: 42.1022700, city: "Arlington Heights" },
{ title: "Arlington South", state: "TX", lng: -97.1359580, lat: 32.6841030, city: "Arlington" },
{ title: "Arnold", state: "MO", lng: -90.3961680, lat: 38.4126470, city: "Arnold" },
{ title: "Arvada", state: "CO", lng: -105.0850280, lat: 39.8402090, city: "Arvada" },
{ title: "Arvada South", state: "CO", lng: -105.1123810, lat: 39.7886050, city: "Wheat Ridge" },
{ title: "Asheville", state: "NC", lng: -82.5223120, lat: 35.5729500, city: "Asheville" },
{ title: "Asheville South", state: "NC", lng: -82.5358980, lat: 35.4487140, city: "Arden" },
{ title: "Atascocita", state: "TX", lng: -95.1722190, lat: 30.0004530, city: "Humble" },
{ title: "Athens", state: "GA", lng: -83.4403900, lat: 33.9415020, city: "Athens" },
{ title: "Atlanta Edgewood", state: "GA", lng: -84.3466260, lat: 33.7572750, city: "Atlanta" },
{ title: "Atlanta Midtown", state: "GA", lng: -84.3999310, lat: 33.7926080, city: "Atlanta" },
{ title: "Atlanta Perimeter", state: "GA", lng: -84.3413250, lat: 33.9305030, city: "Atlanta" },
{ title: "Atlantic Terminal", state: "NY", lng: -73.9774800, lat: 40.6844890, city: "Brooklyn" },
{ title: "Atwater", state: "CA", lng: -120.6107050, lat: 37.3415140, city: "Atwater" },
{ title: "Auburn", state: "CA", lng: -121.0959090, lat: 38.9434590, city: "Auburn" },
{ title: "Auburn Hills", state: "MI", lng: -83.2910600, lat: 42.7064270, city: "Auburn Hills" },
{ title: "Augusta", state: "GA", lng: -82.0813010, lat: 33.4899970, city: "Augusta" },
{ title: "Augusta", state: "ME", lng: -69.8049930, lat: 44.3124030, city: "Augusta" },
{ title: "Aurora", state: "CO", lng: -104.8211980, lat: 39.7153660, city: "Aurora" },
{ title: "Aurora SE", state: "CO", lng: -104.7899790, lat: 39.6366740, city: "Aurora" },
{ title: "Aurora Saddle Rock", state: "CO", lng: -104.7218650, lat: 39.5817730, city: "Aurora" },
{ title: "Aurora South", state: "CO", lng: -104.8049460, lat: 39.5920020, city: "Aurora" },
{ title: "Aurora West", state: "CO", lng: -104.8636360, lat: 39.6915690, city: "Aurora" },
{ title: "Austell", state: "GA", lng: -84.6024750, lat: 33.8520780, city: "Austell" },
{ title: "Austin Arboretum", state: "TX", lng: -97.7446680, lat: 30.3926790, city: "Austin" },
{ title: "Austin East", state: "TX", lng: -97.7067600, lat: 30.3160570, city: "Austin" },
{ title: "Austin NW", state: "TX", lng: -97.7964250, lat: 30.4761540, city: "Austin" },
{ title: "Austin North", state: "TX", lng: -97.7157790, lat: 30.3623140, city: "Austin" },
{ title: "Austin SW", state: "TX", lng: -97.8285000, lat: 30.2337000, city: "Austin" },
{ title: "Austin South", state: "TX", lng: -97.7921060, lat: 30.2333620, city: "Austin" },
{ title: "Austin Southpark", state: "TX", lng: -97.7935680, lat: 30.1625920, city: "Austin" },
{ title: "Austin UT Campus", state: "TX", lng: -97.7416410, lat: 30.2836050, city: "Austin" },
{ title: "Aventura", state: "FL", lng: -80.1409650, lat: 25.9716440, city: "Aventura" },
{ title: "Avon", state: "IN", lng: -86.3418340, lat: 39.7608790, city: "Avon" },
{ title: "Avon OH", state: "OH", lng: -82.0100430, lat: 41.4632960, city: "Avon" },
{ title: "Azusa", state: "CA", lng: -117.9077810, lat: 34.1355890, city: "Azusa" },
{ title: "Bainbridge", state: "OH", lng: -81.3866760, lat: 41.3577560, city: "Aurora" },
{ title: "Bakersfield Central", state: "CA", lng: -119.0366040, lat: 35.3369840, city: "Bakersfield" },
{ title: "Bakersfield NE", state: "CA", lng: -118.9555450, lat: 35.3936620, city: "Bakersfield" },
{ title: "Bakersfield NW", state: "CA", lng: -119.1028150, lat: 35.3852750, city: "Bakersfield" },
{ title: "Bakersfield West", state: "CA", lng: -119.1246410, lat: 35.3499780, city: "Bakersfield" },
{ title: "Balboa", state: "CA", lng: -117.1792930, lat: 32.8220490, city: "San Diego" },
{ title: "Balcones Heights Crossroads", state: "TX", lng: -98.5514970, lat: 29.4945450, city: "Balcones Heights" },
{ title: "Baldwin Park", state: "CA", lng: -117.9774570, lat: 34.0694900, city: "Baldwin Park" },
{ title: "Ballwin", state: "MO", lng: -90.5474630, lat: 38.5945120, city: "Ballwin" },
{ title: "Baltimore East", state: "MD", lng: -76.5659470, lat: 39.2752840, city: "Baltimore" },
{ title: "Bangor", state: "ME", lng: -68.7415600, lat: 44.8421910, city: "Bangor" },
{ title: "Barboursville", state: "WV", lng: -82.2850950, lat: 38.4204970, city: "Barboursville" },
{ title: "Bashford Manor", state: "KY", lng: -85.6704630, lat: 38.1983290, city: "Louisville" },
{ title: "Batavia", state: "NY", lng: -78.2019930, lat: 43.0159910, city: "Batavia" },
{ title: "Batavia", state: "IL", lng: -88.3421400, lat: 41.8519760, city: "Batavia" },
{ title: "Baton Rouge East", state: "LA", lng: -91.0223670, lat: 30.4412490, city: "Baton Rouge" },
{ title: "Baton Rouge Siegen", state: "LA", lng: -91.0613310, lat: 30.3844580, city: "Baton Rouge" },
{ title: "Battle Creek", state: "MI", lng: -85.1854890, lat: 42.2598200, city: "Battle Creek" },
{ title: "Bay Shore", state: "NY", lng: -73.2770380, lat: 40.7265290, city: "Bay Shore" },
{ title: "Baybrook", state: "TX", lng: -95.1515930, lat: 29.5364900, city: "Webster" },
{ title: "Baytown", state: "TX", lng: -94.9763750, lat: 29.7716810, city: "Baytown" },
{ title: "Beaumont", state: "TX", lng: -94.1527100, lat: 30.1260020, city: "Beaumont" },
{ title: "Beavercreek", state: "OH", lng: -84.0511550, lat: 39.7621100, city: "Beavercreek" },
{ title: "Beaverton", state: "OR", lng: -122.7882070, lat: 45.4878530, city: "Beaverton" },
{ title: "Bedford", state: "NH", lng: -71.4735130, lat: 42.9410020, city: "Bedford" },
{ title: "Bedford", state: "OH", lng: -81.5258000, lat: 41.4066000, city: "Bedford" },
{ title: "Bedford Park", state: "IL", lng: -87.7428300, lat: 41.7627730, city: "Chicago" },
{ title: "Bee Cave", state: "TX", lng: -97.9543750, lat: 30.3169560, city: "Bee Cave" },
{ title: "Beechmont Area", state: "OH", lng: -84.3139290, lat: 39.0734050, city: "Cincinnati" },
{ title: "Bel Air", state: "MD", lng: -76.3504720, lat: 39.5251120, city: "Bel Air" },
{ title: "Bel-Air", state: "AL", lng: -88.1200100, lat: 30.6713920, city: "Mobile" },
{ title: "Belleville", state: "IL", lng: -90.0326750, lat: 38.5261860, city: "Belleville" },
{ title: "Bellevue", state: "WI", lng: -87.9859990, lat: 44.4653510, city: "Green Bay" },
{ title: "Bellevue", state: "NE", lng: -95.9703080, lat: 41.1420810, city: "Bellevue" },
{ title: "Bellingham", state: "WA", lng: -122.4936020, lat: 48.7864950, city: "Bellingham" },
{ title: "Belton", state: "MO", lng: -94.5163040, lat: 38.8157720, city: "Belton" },
{ title: "Bemidji", state: "MN", lng: -94.9105640, lat: 47.4936790, city: "Bemidji" },
{ title: "Bend", state: "OR", lng: -121.3005160, lat: 44.1038170, city: "Bend" },
{ title: "Berkeley Central", state: "CA", lng: -122.2677300, lat: 37.8695500, city: "Berkeley" },
{ title: "Berkeley Univ Ave", state: "CA", lng: -122.2837550, lat: 37.8699610, city: "Berkeley" },
{ title: "Bessemer", state: "AL", lng: -86.9903260, lat: 33.3344280, city: "Bessemer" },
{ title: "Bethel", state: "CT", lng: -73.4019140, lat: 41.4150220, city: "Bethel" },
{ title: "Bethesda", state: "MD", lng: -77.0907020, lat: 38.9784190, city: "Bethesda" },
{ title: "Biddeford", state: "ME", lng: -70.5141300, lat: 43.4740010, city: "Biddeford" },
{ title: "Big Flats", state: "NY", lng: -76.8733370, lat: 42.1529210, city: "Elmira" },
{ title: "Billings", state: "MT", lng: -108.5823310, lat: 45.7708160, city: "Billings" },
{ title: "Billings East", state: "MT", lng: -108.4727360, lat: 45.8060330, city: "Billings" },
{ title: "Binghamton Vestal", state: "NY", lng: -76.0011810, lat: 42.0941860, city: "Vestal" },
{ title: "Bird Road", state: "FL", lng: -80.3212170, lat: 25.7355880, city: "Miami" },
{ title: "Birdcage-Citrus Heights", state: "CA", lng: -121.2740880, lat: 38.6732090, city: "Citrus Heights" },
{ title: "Birmingham 280 Corridor", state: "AL", lng: -86.7118050, lat: 33.4255300, city: "Birmingham" },
{ title: "Bismarck", state: "ND", lng: -100.7835060, lat: 46.7990780, city: "Bismarck" },
{ title: "Bitters", state: "TX", lng: -98.4798860, lat: 29.5651350, city: "San Antonio" },
{ title: "Blaine", state: "MN", lng: -93.2324210, lat: 45.1656720, city: "Blaine" },
{ title: "Bloomfield Township", state: "MI", lng: -83.2933970, lat: 42.6038980, city: "Bloomfield Hills" },
{ title: "Bloomington", state: "IN", lng: -86.4939500, lat: 39.1623270, city: "Bloomington" },
{ title: "Bloomington", state: "MN", lng: -93.3115790, lat: 44.8600290, city: "Bloomington" },
{ title: "Bloomington Normal", state: "IL", lng: -88.9573640, lat: 40.5073420, city: "Normal" },
{ title: "Blue Ash", state: "OH", lng: -84.3955190, lat: 39.2240180, city: "Blue Ash" },
{ title: "Blue Springs", state: "MO", lng: -94.2488630, lat: 39.0237980, city: "Blue Springs" },
{ title: "Boardman", state: "OH", lng: -80.6457630, lat: 41.0211350, city: "Boardman" },
{ title: "Boise", state: "ID", lng: -116.2857580, lat: 43.6105810, city: "Boise" },
{ title: "Boise NW", state: "ID", lng: -116.3524170, lat: 43.6617230, city: "Boise" },
{ title: "Bolingbrook", state: "IL", lng: -88.1220030, lat: 41.7048130, city: "Bolingbrook" },
{ title: "Bonney Lake", state: "WA", lng: -122.1716920, lat: 47.1720740, city: "Bonney Lake" },
{ title: "Boot Ranch", state: "FL", lng: -82.7075560, lat: 28.0633260, city: "Palm Harbor" },
{ title: "Bossier City", state: "LA", lng: -93.7070710, lat: 32.5590180, city: "Bossier City" },
{ title: "Boston Fenway", state: "MA", lng: -71.0999610, lat: 42.3441720, city: "Boston" },
{ title: "Boston Packards Corner", state: "MA", lng: -71.1140220, lat: 42.3506790, city: "Boston" },
{ title: "Boston Roslindale", state: "MA", lng: -71.1267480, lat: 42.2882970, city: "Roslindale" },
{ title: "Boston South Bay", state: "MA", lng: -71.0628450, lat: 42.3288720, city: "Dorchester" },
{ title: "Boulder", state: "CO", lng: -105.2567170, lat: 40.0218870, city: "Boulder" },
{ title: "Boulevard Mall", state: "NY", lng: -78.8186650, lat: 42.9985870, city: "Amherst" },
{ title: "Bowie", state: "MD", lng: -76.7223220, lat: 38.9523260, city: "Bowie" },
{ title: "Bowling Green", state: "KY", lng: -86.4362500, lat: 36.9492910, city: "Bowling Green" },
{ title: "Boynton Beach SE", state: "FL", lng: -80.0883740, lat: 26.5333780, city: "Boynton Beach" },
{ title: "Boynton Beach West", state: "FL", lng: -80.1659670, lat: 26.5258430, city: "Boynton Beach" },
{ title: "Bozeman", state: "MT", lng: -111.0706720, lat: 45.7106780, city: "Bozeman" },
{ title: "Bradenton", state: "FL", lng: -82.5779040, lat: 27.4326460, city: "Bradenton" },
{ title: "Bradley", state: "IL", lng: -87.8537330, lat: 41.1739610, city: "Bourbonnais" },
{ title: "Brainerd", state: "MN", lng: -94.2418280, lat: 46.3629960, city: "Baxter" },
{ title: "Braintree", state: "MA", lng: -71.0218440, lat: 42.2214200, city: "Braintree" },
{ title: "Brandon", state: "FL", lng: -82.3237060, lat: 27.9364170, city: "Brandon" },
{ title: "Brandon South", state: "FL", lng: -82.3330870, lat: 27.8953600, city: "Riverview" },
{ title: "Brandywine", state: "DE", lng: -75.5407360, lat: 39.8306700, city: "Wilmington" },
{ title: "Brandywine", state: "MD", lng: -76.8731730, lat: 38.6724510, city: "Brandywine" },
{ title: "Branson", state: "MO", lng: -93.2256920, lat: 36.6737210, city: "Branson" },
{ title: "Brea", state: "CA", lng: -117.8869710, lat: 33.9186930, city: "Brea" },
{ title: "Brentwood", state: "MO", lng: -90.3428670, lat: 38.6275840, city: "Brentwood" },
{ title: "Brentwood", state: "TN", lng: -86.7792140, lat: 36.0427720, city: "Brentwood" },
{ title: "Brick", state: "NJ", lng: -74.1503280, lat: 40.0588140, city: "Brick" },
{ title: "Bridgeport", state: "WV", lng: -80.2744200, lat: 39.3118280, city: "Bridgeport" },
{ title: "Bridgeton", state: "MO", lng: -90.4264230, lat: 38.7540660, city: "Bridgeton" },
{ title: "Bridgewater", state: "NJ", lng: -74.5531340, lat: 40.5623620, city: "Bridgewater" },
{ title: "Brighton", state: "CO", lng: -104.7798000, lat: 39.9563160, city: "Brighton" },
{ title: "Brighton", state: "MI", lng: -83.7921290, lat: 42.5449160, city: "Brighton" },
{ title: "Bristol", state: "VA", lng: -82.1096020, lat: 36.6367040, city: "Bristol" },
{ title: "Broadview", state: "IL", lng: -87.8516050, lat: 41.8548070, city: "Broadview" },
{ title: "Broken Arrow", state: "OK", lng: -95.7759390, lat: 36.0669050, city: "Broken Arrow" },
{ title: "Bronx Riverdale", state: "NY", lng: -73.9078030, lat: 40.8735300, city: "Bronx" },
{ title: "Bronx Terminal", state: "NY", lng: -73.9305130, lat: 40.8234100, city: "Bronx" },
{ title: "Bronx-Throggs Neck", state: "NY", lng: -73.8376590, lat: 40.8241450, city: "Bronx" },
{ title: "Brookfield", state: "WI", lng: -88.0717950, lat: 43.0342180, city: "Brookfield" },
{ title: "Brookhurst", state: "CA", lng: -117.9559150, lat: 33.7615030, city: "Garden Grove" },
{ title: "Brooklyn Bensonhurst", state: "NY", lng: -73.9897120, lat: 40.6195700, city: "Brooklyn" },
{ title: "Brooklyn Center", state: "MN", lng: -93.3076220, lat: 45.0656690, city: "Brooklyn Center" },
{ title: "Brooklyn Fulton St", state: "NY", lng: -73.9830000, lat: 40.6906000, city: "BROOKLYN" },
{ title: "Brooklyn Junction", state: "NY", lng: -73.9466390, lat: 40.6315380, city: "Brooklyn" },
{ title: "Brooklyn Midwood", state: "NY", lng: -73.9584720, lat: 40.6085930, city: "Brooklyn" },
{ title: "Brooklyn Park", state: "MN", lng: -93.3779360, lat: 45.0910810, city: "Brooklyn Park" },
{ title: "Brownsville North", state: "TX", lng: -97.5094870, lat: 25.9686000, city: "Brownsville" },
{ title: "Brunswick", state: "GA", lng: -81.4803920, lat: 31.2008480, city: "Brunswick" },
{ title: "Bryan", state: "TX", lng: -96.3220900, lat: 30.6648180, city: "Bryan" },
{ title: "Bryant", state: "AR", lng: -92.5309670, lat: 34.6042550, city: "Bryant" },
{ title: "Buckhead", state: "GA", lng: -84.3588210, lat: 33.8518280, city: "Atlanta" },
{ title: "Buckhead South", state: "GA", lng: -84.3631450, lat: 33.8241160, city: "Atlanta" },
{ title: "Buena Park", state: "CA", lng: -118.0010710, lat: 33.8576750, city: "Buena Park" },
{ title: "Buffalo", state: "MN", lng: -93.8555920, lat: 45.1643040, city: "Buffalo" },
{ title: "Buford", state: "GA", lng: -83.9818200, lat: 34.0700310, city: "Buford" },
{ title: "Bullhead City", state: "AZ", lng: -114.5920990, lat: 35.0519390, city: "Bullhead City" },
{ title: "Burbank", state: "CA", lng: -118.3303310, lat: 34.1896200, city: "Burbank" },
{ title: "Burleson", state: "TX", lng: -97.3492450, lat: 32.5235040, city: "Burleson" },
{ title: "Burlington", state: "NJ", lng: -74.8229860, lat: 40.0361420, city: "Burlington" },
{ title: "Burlington", state: "NC", lng: -79.5203140, lat: 36.0663110, city: "Burlington" },
{ title: "Burlington", state: "WA", lng: -122.3386060, lat: 48.4653560, city: "Burlington" },
{ title: "Burlington", state: "IA", lng: -91.1719190, lat: 40.8208350, city: "West Burlington" },
{ title: "Burlington MA", state: "MA", lng: -71.1861850, lat: 42.4841040, city: "Burlington" },
{ title: "Burnsville", state: "MN", lng: -93.2888450, lat: 44.7487960, city: "Burnsville" },
{ title: "Butler", state: "PA", lng: -79.9415530, lat: 40.8749610, city: "Butler" },
{ title: "CHI Morgan Park", state: "IL", lng: -87.6644530, lat: 41.6792880, city: "Chicago" },
{ title: "Camarillo", state: "CA", lng: -119.0731290, lat: 34.2172390, city: "Camarillo" },
{ title: "Cambridge", state: "MN", lng: -93.2002240, lat: 45.5742450, city: "Cambridge" },
{ title: "Cambridge Central Square", state: "MA", lng: -71.1025750, lat: 42.3645610, city: "Cambridge" },
{ title: "Cambridge Porter Square", state: "MA", lng: -71.1186590, lat: 42.3886480, city: "Cambridge" },
{ title: "Camillus", state: "NY", lng: -76.2361520, lat: 43.0470550, city: "Syracuse" },
{ title: "Canton", state: "GA", lng: -84.4566840, lat: 34.2345970, city: "Canton" },
{ title: "Canton", state: "MI", lng: -83.4715540, lat: 42.3234650, city: "Canton" },
{ title: "Canton", state: "OH", lng: -81.4309750, lat: 40.8616420, city: "North Canton" },
{ title: "Canton South", state: "MI", lng: -83.5029640, lat: 42.2696350, city: "Canton" },
{ title: "Cape Coral", state: "FL", lng: -81.9767070, lat: 26.6065380, city: "Cape Coral" },
{ title: "Cape Coral North", state: "FL", lng: -81.9327930, lat: 26.6696950, city: "Cape Coral" },
{ title: "Cape Girardeau", state: "MO", lng: -89.5801940, lat: 37.2992120, city: "Cape Girardeau" },
{ title: "Capitola", state: "CA", lng: -121.9687610, lat: 36.9747840, city: "Capitola" },
{ title: "Carlisle", state: "PA", lng: -77.1575970, lat: 40.1955090, city: "Carlisle" },
{ title: "Carmel", state: "IN", lng: -86.1283310, lat: 40.0085410, city: "Carmel" },
{ title: "Carmel West", state: "IN", lng: -86.2323200, lat: 39.9360850, city: "Carmel" },
{ title: "Carrollton", state: "GA", lng: -85.0764730, lat: 33.5589200, city: "Carrollton" },
{ title: "Carson", state: "CA", lng: -118.2856540, lat: 33.8092390, city: "Carson" },
{ title: "Carson City", state: "NV", lng: -119.7775410, lat: 39.0999280, city: "Carson City" },
{ title: "Carson North", state: "CA", lng: -118.2606190, lat: 33.8431690, city: "Carson" },
{ title: "Cartersville", state: "GA", lng: -84.7856380, lat: 34.1724910, city: "Cartersville" },
{ title: "Cary", state: "NC", lng: -78.7384050, lat: 35.7580610, city: "Cary" },
{ title: "Cary West", state: "NC", lng: -78.8853050, lat: 35.8447710, city: "Cary" },
{ title: "Casper", state: "WY", lng: -106.2646670, lat: 42.8471310, city: "Casper" },
{ title: "Casselberry", state: "FL", lng: -81.3404510, lat: 28.6710520, city: "Casselberry" },
{ title: "Castle Rock", state: "CO", lng: -104.8565890, lat: 39.4083660, city: "Castle Rock" },
{ title: "Cedar Falls", state: "IA", lng: -92.4436610, lat: 42.4814990, city: "Cedar Falls" },
{ title: "Cedar Hill", state: "TX", lng: -96.9366940, lat: 32.6032290, city: "Cedar Hill" },
{ title: "Cedar Park", state: "TX", lng: -97.8133370, lat: 30.5283180, city: "Cedar Park" },
{ title: "Cedar Rapids North", state: "IA", lng: -91.6503770, lat: 42.0366580, city: "Cedar Rapids" },
{ title: "Cedar Rapids South", state: "IA", lng: -91.7169600, lat: 41.9443250, city: "Cedar Rapids" },
{ title: "Center Township", state: "PA", lng: -80.3120810, lat: 40.6808310, city: "Monaca" },
{ title: "Centerville", state: "UT", lng: -111.8872040, lat: 40.9182470, city: "Centerville" },
{ title: "Central Islip", state: "NY", lng: -73.2022590, lat: 40.7726680, city: "Central Islip" },
{ title: "Cerritos", state: "CA", lng: -118.0625720, lat: 33.8471570, city: "Cerritos" },
{ title: "Cerritos West", state: "CA", lng: -118.0879400, lat: 33.8592950, city: "Cerritos" },
{ title: "Chambersburg", state: "PA", lng: -77.6278340, lat: 39.9414930, city: "Chambersburg" },
{ title: "Champaign", state: "IL", lng: -88.2554400, lat: 40.1415220, city: "Champaign" },
{ title: "Champlin", state: "MN", lng: -93.3884830, lat: 45.1723430, city: "Champlin" },
{ title: "Chandler South", state: "AZ", lng: -111.8383310, lat: 33.2500200, city: "Chandler" },
{ title: "Chandler West Santan", state: "AZ", lng: -111.8999630, lat: 33.2960760, city: "Chandler" },
{ title: "Chanhassen", state: "MN", lng: -93.5426830, lat: 44.8617830, city: "Chanhassen" },
{ title: "Chantilly", state: "VA", lng: -77.4458380, lat: 38.8952000, city: "Chantilly" },
{ title: "Charleston", state: "WV", lng: -81.7145170, lat: 38.3382270, city: "South Charleston" },
{ title: "Charleston South", state: "SC", lng: -80.0306060, lat: 32.7994300, city: "Charleston" },
{ title: "Charlotte Blakeney", state: "NC", lng: -80.8077200, lat: 35.0373980, city: "Charlotte" },
{ title: "Charlotte East", state: "NC", lng: -80.6943360, lat: 35.2093450, city: "Charlotte" },
{ title: "Charlotte Midtown", state: "NC", lng: -80.8348730, lat: 35.2145050, city: "Charlotte" },
{ title: "Charlotte North", state: "NC", lng: -80.8596360, lat: 35.3496550, city: "Charlotte" },
{ title: "Charlotte SE", state: "NC", lng: -80.7064490, lat: 35.1225940, city: "Matthews" },
{ title: "Charlotte SW", state: "NC", lng: -80.9857990, lat: 35.1004000, city: "Charlotte" },
{ title: "Charlotte Stonecrest", state: "NC", lng: -80.8153920, lat: 35.0586130, city: "Charlotte" },
{ title: "Charlotte Tyvola", state: "NC", lng: -80.8886000, lat: 35.1626000, city: "Charlotte" },
{ title: "Charlottesville", state: "VA", lng: -78.4409930, lat: 38.1285100, city: "Charlottesville" },
{ title: "Chaska", state: "MN", lng: -93.6005060, lat: 44.8270560, city: "Chaska" },
{ title: "Chattanooga East", state: "TN", lng: -85.1560060, lat: 35.0243440, city: "Chattanooga" },
{ title: "Chattanooga North", state: "TN", lng: -85.2515080, lat: 35.1464200, city: "Hixson" },
{ title: "Cheektowaga", state: "NY", lng: -78.6983310, lat: 42.8793260, city: "Depew" },
{ title: "Cheltenham", state: "PA", lng: -75.1553050, lat: 40.0762290, city: "Wyncote" },
{ title: "Cherry Hill", state: "NJ", lng: -75.0245160, lat: 39.9347440, city: "Cherry Hill" },
{ title: "Chesapeake Sq Mall", state: "VA", lng: -76.4144230, lat: 36.8285860, city: "Chesapeake" },
{ title: "Chester", state: "VA", lng: -77.4104290, lat: 37.3502810, city: "Chester" },
{ title: "Chesterfield", state: "MO", lng: -90.5858700, lat: 38.6667620, city: "Chesterfield" },
{ title: "Chesterfield", state: "MI", lng: -82.8290930, lat: 42.6770800, city: "Chesterfield" },
{ title: "Cheyenne", state: "WY", lng: -104.7996780, lat: 41.1616660, city: "Cheyenne" },
{ title: "Chicago Brickyard", state: "IL", lng: -87.7892700, lat: 41.9303710, city: "Chicago" },
{ title: "Chicago Hyde Park IL", state: "IL", lng: -87.5934000, lat: 41.7996000, city: "Chicago" },
{ title: "Chicago Lakeview Ashland", state: "IL", lng: -87.6670000, lat: 41.9416000, city: "Chicago" },
{ title: "Chicago Lakeview Belmont Stn", state: "IL", lng: -87.6513890, lat: 41.9400980, city: "Chicago" },
{ title: "Chicago Larrabee", state: "IL", lng: -87.6434530, lat: 41.9038480, city: "Chicago" },
{ title: "Chicago Lincoln Park North", state: "IL", lng: -87.6445560, lat: 41.9314210, city: "Chicago" },
{ title: "Chicago McKinley Park", state: "IL", lng: -87.6748690, lat: 41.8356130, city: "Chicago" },
{ title: "Chicago Mid North", state: "IL", lng: -87.7019450, lat: 41.9451250, city: "Chicago" },
{ title: "Chicago Near North", state: "IL", lng: -87.6851280, lat: 41.9293860, city: "Chicago" },
{ title: "Chicago Peterson Ave", state: "IL", lng: -87.6828370, lat: 41.9907860, city: "Chicago" },
{ title: "Chicago South", state: "IL", lng: -87.6062360, lat: 41.7389480, city: "Chicago" },
{ title: "Chicago South Loop", state: "IL", lng: -87.6307070, lat: 41.8677180, city: "Chicago" },
{ title: "Chicago South Pulaski", state: "IL", lng: -87.7225480, lat: 41.8129350, city: "Chicago" },
{ title: "Chicago State St.", state: "IL", lng: -87.6274090, lat: 41.8816990, city: "Chicago" },
{ title: "Chicago Streeterville", state: "IL", lng: -87.6174180, lat: 41.8909530, city: "Chicago" },
{ title: "Chicago West Loop", state: "IL", lng: -87.6546670, lat: 41.8777390, city: "Chicago" },
{ title: "Chicago Wicker Park", state: "IL", lng: -87.6692950, lat: 41.9036540, city: "Chicago" },
{ title: "Chicago Wilson Yard", state: "IL", lng: -87.6563930, lat: 41.9635610, city: "Chicago" },
{ title: "Chico", state: "CA", lng: -121.8031900, lat: 39.7259860, city: "Chico" },
{ title: "Chili", state: "NY", lng: -77.7461400, lat: 43.1046250, city: "Rochester" },
{ title: "Chino", state: "CA", lng: -117.6820430, lat: 34.0324940, city: "Chino" },
{ title: "Chino Hills", state: "CA", lng: -117.7182430, lat: 34.0014940, city: "Chino" },
{ title: "Christiana", state: "DE", lng: -75.6495760, lat: 39.6789400, city: "Newark" },
{ title: "Christiansburg", state: "VA", lng: -80.4224190, lat: 37.1572510, city: "Christiansburg" },
{ title: "Chula Vista Broadway", state: "CA", lng: -117.0804260, lat: 32.6045800, city: "Chula Vista" },
{ title: "Chula Vista East", state: "CA", lng: -116.9691070, lat: 32.6490710, city: "Chula Vista" },
{ title: "Cicero", state: "NY", lng: -76.1225790, lat: 43.1618150, city: "Cicero" },
{ title: "Cicero", state: "IL", lng: -87.7416350, lat: 41.8392850, city: "Cicero" },
{ title: "Cincinnati Central", state: "OH", lng: -84.4275800, lat: 39.1635000, city: "Cincinnati" },
{ title: "Cityplace Market", state: "TX", lng: -96.7913800, lat: 32.8043550, city: "Dallas" },
{ title: "Cityview", state: "TX", lng: -97.4125990, lat: 32.6786250, city: "Fort Worth" },
{ title: "Clackamas", state: "OR", lng: -122.5708100, lat: 45.4314040, city: "Clackamas" },
{ title: "Clark", state: "NJ", lng: -74.3079590, lat: 40.6273810, city: "Clark" },
{ title: "Clarkstown", state: "NY", lng: -73.9589850, lat: 41.0974360, city: "West Nyack" },
{ title: "Clarksville", state: "TN", lng: -87.2920820, lat: 36.5867540, city: "Clarksville" },
{ title: "Clay", state: "NY", lng: -76.2471070, lat: 43.1877970, city: "Liverpool" },
{ title: "Clear Lake Shores", state: "TX", lng: -95.0226590, lat: 29.5391030, city: "Clear Lake Shores" },
{ title: "Clearwater", state: "FL", lng: -82.7244970, lat: 27.9581820, city: "Clearwater" },
{ title: "Clermont", state: "FL", lng: -81.7048660, lat: 28.5493070, city: "Clermont" },
{ title: "Cleveland", state: "TN", lng: -84.8661130, lat: 35.2174410, city: "Cleveland" },
{ title: "Cleveland Park", state: "DC", lng: -77.0581980, lat: 38.9359920, city: "Washington" },
{ title: "Cleveland South", state: "OH", lng: -81.6894390, lat: 41.4580190, city: "Cleveland" },
{ title: "Cleveland West", state: "OH", lng: -81.7711740, lat: 41.4684200, city: "Cleveland" },
{ title: "Clifton", state: "NJ", lng: -74.1358390, lat: 40.8244270, city: "Clifton" },
{ title: "Clifton Park", state: "NY", lng: -73.7724160, lat: 42.8576010, city: "Clifton Park" },
{ title: "Clinton Pointe", state: "MI", lng: -82.9029450, lat: 42.5454550, city: "Clinton Township" },
{ title: "Closter NJ", state: "NJ", lng: -73.9578000, lat: 40.9712000, city: "Closter" },
{ title: "Clovis", state: "CA", lng: -119.6985620, lat: 36.8070260, city: "Clovis" },
{ title: "Clovis NW", state: "CA", lng: -119.7277110, lat: 36.8398280, city: "Clovis" },
{ title: "Cobb", state: "GA", lng: -84.5732290, lat: 34.0090470, city: "Kennesaw" },
{ title: "Cobb NE", state: "GA", lng: -84.4609260, lat: 34.0352080, city: "Marietta" },
{ title: "Coconut Point", state: "FL", lng: -81.8061680, lat: 26.4062560, city: "Estero" },
{ title: "Coeur d'Alene", state: "ID", lng: -116.7910650, lat: 47.7346760, city: "Coeur d'Alene" },
{ title: "Colerain", state: "OH", lng: -84.5894330, lat: 39.2358400, city: "Cincinnati" },
{ title: "College Park", state: "MD", lng: -76.9376150, lat: 38.9822520, city: "College Park" },
{ title: "College Point", state: "NY", lng: -73.8330950, lat: 40.7833880, city: "College Point" },
{ title: "College Station", state: "TX", lng: -96.3151220, lat: 30.6107550, city: "College Station" },
{ title: "Collierville", state: "TN", lng: -89.6903850, lat: 35.0506440, city: "Collierville" },
{ title: "Colma", state: "CA", lng: -122.4649360, lat: 37.6737390, city: "Colma" },
{ title: "Colonial Heights", state: "VA", lng: -77.3863970, lat: 37.2487890, city: "Colonial Heights" },
{ title: "Colonie Northway", state: "NY", lng: -73.8239250, lat: 42.7058050, city: "Colonie" },
{ title: "Colorado Springs East", state: "CO", lng: -104.7177150, lat: 38.8882070, city: "Colorado Springs" },
{ title: "Colorado Springs NE", state: "CO", lng: -104.7458740, lat: 38.9733820, city: "Colorado Springs" },
{ title: "Colorado Springs North", state: "CO", lng: -104.7800700, lat: 38.9052040, city: "Colorado Springs" },
{ title: "Columbia", state: "MD", lng: -76.8134830, lat: 39.1969710, city: "Columbia" },
{ title: "Columbia", state: "MO", lng: -92.3769630, lat: 38.9643590, city: "Columbia" },
{ title: "Columbia Garners Ferry", state: "SC", lng: -80.9683320, lat: 33.9816160, city: "Columbia" },
{ title: "Columbia Heights", state: "DC", lng: -77.0327460, lat: 38.9292750, city: "Washington" },
{ title: "Columbia NE", state: "SC", lng: -80.8771120, lat: 34.1180400, city: "Columbia" },
{ title: "Columbia NW", state: "SC", lng: -81.1647610, lat: 34.0667440, city: "Columbia" },
{ title: "Columbus", state: "GA", lng: -84.9710730, lat: 32.5346490, city: "Columbus" },
{ title: "Columbus", state: "IN", lng: -85.8852390, lat: 39.2194410, city: "Columbus" },
{ title: "Columbus Central", state: "OH", lng: -83.0269190, lat: 39.9934560, city: "Columbus" },
{ title: "Columbus East", state: "OH", lng: -82.7853630, lat: 39.9880480, city: "Reynoldsburg" },
{ title: "Columbus Far SW", state: "OH", lng: -83.1494570, lat: 39.9907640, city: "Hilliard" },
{ title: "Columbus NE", state: "OH", lng: -82.9208620, lat: 40.0561300, city: "Columbus" },
{ title: "Columbus NW", state: "OH", lng: -83.0899890, lat: 40.0902080, city: "Dublin" },
{ title: "Columbus Ohio State U", state: "OH", lng: -83.0080560, lat: 40.0010160, city: "Columbus" },
{ title: "Commack", state: "NY", lng: -73.2863620, lat: 40.8391330, city: "Commack" },
{ title: "Commack South", state: "NY", lng: -73.2868070, lat: 40.8094850, city: "Commack" },
{ title: "Commerce", state: "CA", lng: -118.1508000, lat: 34.0182030, city: "Commerce" },
{ title: "Commerce Township", state: "MI", lng: -83.4412730, lat: 42.5339160, city: "Walled Lake" },
{ title: "Compton-Rancho Dom", state: "CA", lng: -118.2189420, lat: 33.8796530, city: "Compton" },
{ title: "Concord", state: "NH", lng: -71.4851990, lat: 43.2189000, city: "Concord" },
{ title: "Concord Township", state: "PA", lng: -75.5279710, lat: 39.8807800, city: "Glen Mills" },
{ title: "Conroe", state: "TX", lng: -95.4738530, lat: 30.3143140, city: "Conroe" },
{ title: "Conway", state: "AR", lng: -92.4140340, lat: 35.0864310, city: "Conway" },
{ title: "Conyers", state: "GA", lng: -84.0162160, lat: 33.6333900, city: "Conyers" },
{ title: "Cool Springs", state: "TN", lng: -86.8124550, lat: 35.9656400, city: "Franklin" },
{ title: "Coon Rapids", state: "MN", lng: -93.3503660, lat: 45.1949420, city: "Coon Rapids" },
{ title: "Copiague", state: "NY", lng: -73.4061330, lat: 40.6882270, city: "Copiague" },
{ title: "Copperfield", state: "TX", lng: -95.6468550, lat: 29.8776080, city: "Houston" },
{ title: "Coral Springs", state: "FL", lng: -80.2042000, lat: 26.2847170, city: "Coral Springs" },
{ title: "Coral Springs NW", state: "FL", lng: -80.2521350, lat: 26.2970520, city: "Coral Springs" },
{ title: "Cordova", state: "TN", lng: -89.7980650, lat: 35.1380770, city: "Cordova" },
{ title: "Corona", state: "CA", lng: -117.5166140, lat: 33.8262660, city: "Corona" },
{ title: "Corpus Christi", state: "TX", lng: -97.3740150, lat: 27.7068210, city: "Corpus Christi" },
{ title: "Costa Mesa", state: "CA", lng: -117.9178370, lat: 33.6824250, city: "Costa Mesa" },
{ title: "Cottage Grove", state: "MN", lng: -92.9310080, lat: 44.8150200, city: "Cottage Grove" },
{ title: "Council Bluffs", state: "IA", lng: -95.8389760, lat: 41.2207230, city: "Council Bluffs" },
{ title: "Covington", state: "LA", lng: -90.1406600, lat: 30.4424420, city: "Covington" },
{ title: "Cranberry", state: "PA", lng: -80.0849920, lat: 40.6880760, city: "Cranberry Twp" },
{ title: "Crestwood", state: "IL", lng: -87.7457320, lat: 41.6569030, city: "Crestwood" },
{ title: "Crofton", state: "MD", lng: -76.6840000, lat: 39.0341000, city: "Gambrills" },
{ title: "Crystal", state: "MN", lng: -93.3655550, lat: 45.0527320, city: "Crystal" },
{ title: "Crystal Lake", state: "IL", lng: -88.3049730, lat: 42.2286480, city: "Crystal Lake" },
{ title: "Culpeper", state: "VA", lng: -77.9668280, lat: 38.4833800, city: "Culpeper" },
{ title: "Culver City", state: "CA", lng: -118.3940380, lat: 33.9991350, city: "Culver City" },
{ title: "Culver City South", state: "CA", lng: -118.3946950, lat: 33.9853000, city: "Culver City" },
{ title: "Cumming", state: "GA", lng: -84.1341160, lat: 34.1857000, city: "Cumming" },
{ title: "Cupertino", state: "CA", lng: -122.0364250, lat: 37.3239440, city: "Cupertino" },
{ title: "Cupertino Main Street", state: "CA", lng: -122.0113000, lat: 37.3235000, city: "Cupertino" },
{ title: "Cutler Ridge", state: "FL", lng: -80.3751530, lat: 25.5759470, city: "Miami" },
{ title: "Cuyahoga Falls", state: "OH", lng: -81.4769270, lat: 41.1203900, city: "Cuyahoga Falls" },
{ title: "Cypress", state: "TX", lng: -95.6961890, lat: 29.9698640, city: "Cypress" },
{ title: "Cypress", state: "CA", lng: -118.0129020, lat: 33.8037310, city: "Cypress" },
{ title: "D'Iberville", state: "MS", lng: -88.8998950, lat: 30.4549420, city: "D'iberville" },
{ title: "Dadeland", state: "FL", lng: -80.3056950, lat: 25.6931420, city: "Miami" },
{ title: "Dadeland South", state: "FL", lng: -80.3225820, lat: 25.6727910, city: "Miami" },
{ title: "Dallas NE", state: "TX", lng: -96.7450080, lat: 32.8656900, city: "Dallas" },
{ title: "Dallas Preston Center", state: "TX", lng: -96.8073640, lat: 32.8644910, city: "Dallas" },
{ title: "Dallas South", state: "TX", lng: -96.8630180, lat: 32.6498860, city: "Dallas" },
{ title: "Daly City Serramonte", state: "CA", lng: -122.4701730, lat: 37.6705530, city: "Daly City" },
{ title: "Danvers", state: "MA", lng: -70.9376160, lat: 42.5526160, city: "Danvers" },
{ title: "Danville", state: "VA", lng: -79.4185790, lat: 36.5992440, city: "Danville" },
{ title: "Daphne", state: "AL", lng: -87.8965070, lat: 30.6032170, city: "Daphne" },
{ title: "Dardenne Prairie", state: "MO", lng: -90.7684160, lat: 38.7684120, city: "Dardenne Prairie" },
{ title: "Davenport", state: "IA", lng: -90.5266440, lat: 41.5730990, city: "Davenport" },
{ title: "Davie", state: "FL", lng: -80.2494590, lat: 26.0479830, city: "Davie" },
{ title: "Davis", state: "CA", lng: -121.6992900, lat: 38.5544340, city: "Davis" },
{ title: "Dayton South", state: "OH", lng: -84.2140620, lat: 39.6331880, city: "Dayton" },
{ title: "Daytona Beach", state: "FL", lng: -81.0797880, lat: 29.1832850, city: "Daytona Beach" },
{ title: "DeKalb", state: "IL", lng: -88.7249580, lat: 41.9551100, city: "Dekalb" },
{ title: "Dearborn", state: "MI", lng: -83.1995330, lat: 42.3279400, city: "Dearborn" },
{ title: "Dearborn Heights", state: "MI", lng: -83.3027040, lat: 42.3280970, city: "Dearborn Heights" },
{ title: "Decatur", state: "IL", lng: -88.9583880, lat: 39.8904650, city: "Decatur" },
{ title: "Decatur", state: "AL", lng: -86.9710300, lat: 34.5590640, city: "Decatur" },
{ title: "Deer Valley", state: "AZ", lng: -112.0688320, lat: 33.6386540, city: "Phoenix" },
{ title: "Deerfield Beach", state: "FL", lng: -80.0925740, lat: 26.3018790, city: "Deerfield Beach" },
{ title: "Deerfield Beach W", state: "FL", lng: -80.1514570, lat: 26.3195170, city: "Deerfield Beach" },
{ title: "Delafield", state: "WI", lng: -88.3768910, lat: 43.0506840, city: "Delafield" },
{ title: "Delran", state: "NJ", lng: -74.9587210, lat: 40.0125340, city: "Delran" },
{ title: "Delray Beach", state: "FL", lng: -80.0847740, lat: 26.4375810, city: "Delray Beach" },
{ title: "Denton", state: "TX", lng: -97.0987680, lat: 33.1899520, city: "Denton" },
{ title: "Denver Downtown", state: "CO", lng: -104.9917670, lat: 39.7451860, city: "Denver" },
{ title: "Denver SE", state: "CO", lng: -104.9002550, lat: 39.6553270, city: "Denver" },
{ title: "Denver SW", state: "CO", lng: -105.1010730, lat: 39.6104230, city: "Littleton" },
{ title: "Denver Stapleton", state: "CO", lng: -104.8949290, lat: 39.7839160, city: "Denver" },
{ title: "Denver West", state: "CO", lng: -105.1577240, lat: 39.7337930, city: "Lakewood" },
{ title: "Deptford", state: "NJ", lng: -75.0917810, lat: 39.8294300, city: "Deptford" },
{ title: "Derby", state: "KS", lng: -97.2416930, lat: 37.5689220, city: "Derby" },
{ title: "Des Moines North", state: "IA", lng: -93.6997350, lat: 41.6304180, city: "Des Moines" },
{ title: "Destin", state: "FL", lng: -86.4809350, lat: 30.3907410, city: "Destin" },
{ title: "Devon", state: "PA", lng: -75.4084290, lat: 40.0453860, city: "Wayne" },
{ title: "Diamond Bar", state: "CA", lng: -117.8210760, lat: 34.0050080, city: "Diamond Bar" },
{ title: "Dickson City", state: "PA", lng: -75.6390790, lat: 41.4671100, city: "Dickson City" },
{ title: "Dothan", state: "AL", lng: -85.4468080, lat: 31.2664920, city: "Dothan" },
{ title: "Douglas County", state: "CO", lng: -104.9656720, lat: 39.5650630, city: "Highlands Ranch" },
{ title: "Douglasville", state: "GA", lng: -84.7353760, lat: 33.7261060, city: "Douglasville" },
{ title: "Dover", state: "DE", lng: -75.5110660, lat: 39.1593450, city: "Dover" },
{ title: "Duarte", state: "CA", lng: -117.9829180, lat: 34.1381020, city: "Duarte" },
{ title: "Dublin", state: "CA", lng: -121.9310280, lat: 37.7065880, city: "Dublin" },
{ title: "Dublin East", state: "CA", lng: -121.8531950, lat: 37.7032280, city: "Dublin" },
{ title: "Dubuque", state: "IA", lng: -90.7218550, lat: 42.4902190, city: "Dubuque" },
{ title: "Dulles", state: "VA", lng: -77.4396550, lat: 39.0092160, city: "Sterling" },
{ title: "Duluth", state: "MN", lng: -92.1674500, lat: 46.8083910, city: "Duluth" },
{ title: "Dumfries", state: "VA", lng: -77.3331100, lat: 38.5973760, city: "Dumfries" },
{ title: "Durham", state: "NC", lng: -78.9594480, lat: 35.9664620, city: "Durham" },
{ title: "Durham SE", state: "NC", lng: -78.9564020, lat: 35.9032570, city: "Durham" },
{ title: "Eagan", state: "MN", lng: -93.2058460, lat: 44.7911540, city: "Eagan" },
{ title: "Eagle Creek", state: "IN", lng: -86.2800710, lat: 39.8213280, city: "Indianapolis" },
{ title: "East Colonial", state: "FL", lng: -81.3454930, lat: 28.5552430, city: "Orlando" },
{ title: "East Greenbush", state: "NY", lng: -73.7004650, lat: 42.6448240, city: "Rensselaer" },
{ title: "East Hanover", state: "NJ", lng: -74.3805450, lat: 40.8131540, city: "East Hanover" },
{ title: "East Lansing", state: "MI", lng: -84.4133210, lat: 42.7243290, city: "Okemos" },
{ title: "East Liberty", state: "PA", lng: -79.9222760, lat: 40.4608650, city: "PITTSBURGH" },
{ title: "East Orange", state: "CA", lng: -117.8251770, lat: 33.7872080, city: "Orange" },
{ title: "East Palo Alto CA", state: "CA", lng: -122.1354660, lat: 37.4600570, city: "East Palo Alto" },
{ title: "East Peoria", state: "IL", lng: -89.5838480, lat: 40.6720110, city: "East Peoria" },
{ title: "East Point", state: "GA", lng: -84.4998250, lat: 33.6592010, city: "East Point" },
{ title: "East St Paul", state: "MN", lng: -93.0284180, lat: 44.9496010, city: "Saint Paul" },
{ title: "East Windsor", state: "NJ", lng: -74.5409460, lat: 40.2768720, city: "East Windsor" },
{ title: "Eastchase", state: "TX", lng: -97.1701620, lat: 32.7582760, city: "Fort Worth" },
{ title: "Eastern Hills", state: "NY", lng: -78.6985020, lat: 42.9946640, city: "Williamsville" },
{ title: "Easton", state: "MA", lng: -71.1437800, lat: 42.0271370, city: "South Easton" },
{ title: "Easton", state: "MD", lng: -76.0864000, lat: 38.7822000, city: "Easton" },
{ title: "Eastvale", state: "CA", lng: -117.5538180, lat: 33.9779140, city: "Mira Loma" },
{ title: "Eau Claire", state: "WI", lng: -91.4340780, lat: 44.7808610, city: "Eau Claire" },
{ title: "Eden Prairie", state: "MN", lng: -93.4253420, lat: 44.8557010, city: "Eden Prairie" },
{ title: "Edgewater", state: "NJ", lng: -73.9822230, lat: 40.8136630, city: "Edgewater" },
{ title: "Edgewater", state: "CO", lng: -105.0554460, lat: 39.7467220, city: "Edgewater" },
{ title: "Edina", state: "MN", lng: -93.3236000, lat: 44.8754720, city: "Edina" },
{ title: "Edmond", state: "OK", lng: -97.4635390, lat: 35.6505010, city: "Edmond" },
{ title: "Edwardsville", state: "IL", lng: -89.9490430, lat: 38.7834200, city: "Edwardsville" },
{ title: "El Cajon", state: "CA", lng: -116.9589980, lat: 32.8092710, city: "El Cajon" },
{ title: "El Centro", state: "CA", lng: -115.5676420, lat: 32.8133280, city: "El Centro" },
{ title: "El Dorado Hills", state: "CA", lng: -121.0628800, lat: 38.6502140, city: "El Dorado Hills" },
{ title: "El Paso Central", state: "TX", lng: -106.4147180, lat: 31.7831520, city: "El Paso" },
{ title: "El Paso East", state: "TX", lng: -106.3051410, lat: 31.7698180, city: "El Paso" },
{ title: "El Paso Far East", state: "TX", lng: -106.2653120, lat: 31.7591860, city: "El Paso" },
{ title: "El Paso West", state: "TX", lng: -106.5482960, lat: 31.8184400, city: "El Paso" },
{ title: "Elgin", state: "IL", lng: -88.3414990, lat: 42.0256580, city: "Elgin" },
{ title: "Elizabethtown", state: "KY", lng: -85.8803390, lat: 37.7284290, city: "Elizabethtown" },
{ title: "Elk Grove", state: "CA", lng: -121.4150970, lat: 38.4262890, city: "Elk Grove" },
{ title: "Ellicott City", state: "MD", lng: -76.8172650, lat: 39.2505750, city: "Ellicott City" },
{ title: "Elmont", state: "NY", lng: -73.7038000, lat: 40.7087000, city: "Elmont" },
{ title: "Elyria", state: "OH", lng: -82.1084530, lat: 41.3885170, city: "Elyria" },
{ title: "Encinitas", state: "CA", lng: -117.2647110, lat: 33.0630400, city: "Encinitas" },
{ title: "Enfield", state: "CT", lng: -72.5815250, lat: 41.9958330, city: "Enfield" },
{ title: "Erie", state: "PA", lng: -80.0945220, lat: 42.0555230, city: "Erie" },
{ title: "Escondido", state: "CA", lng: -117.0996320, lat: 33.1131070, city: "Escondido" },
{ title: "Escondido South", state: "CA", lng: -117.0652910, lat: 33.0699270, city: "Escondido" },
{ title: "Eugene", state: "OR", lng: -123.1707850, lat: 44.0493570, city: "Eugene" },
{ title: "Euless", state: "TX", lng: -97.1044420, lat: 32.8808800, city: "Euless" },
{ title: "Eureka", state: "CA", lng: -124.1447570, lat: 40.8059080, city: "Eureka" },
{ title: "Evans", state: "GA", lng: -82.1186530, lat: 33.5271740, city: "Evans" },
{ title: "Evanston", state: "IL", lng: -87.7056360, lat: 42.0205620, city: "Evanston" },
{ title: "Evanston Downtown", state: "IL", lng: -87.6820640, lat: 42.0477540, city: "Evanston" },
{ title: "Evansville", state: "IN", lng: -87.4707140, lat: 37.9754060, city: "Evansville" },
{ title: "Evansville North", state: "IN", lng: -87.5764670, lat: 38.0157270, city: "Evansville" },
{ title: "Everett", state: "MA", lng: -71.0718550, lat: 42.3990350, city: "Everett" },
{ title: "Everett", state: "WA", lng: -122.2267840, lat: 47.9100510, city: "Everett" },
{ title: "Exeter Township", state: "PA", lng: -75.8594180, lat: 40.3083250, city: "Reading" },
{ title: "Exton", state: "PA", lng: -75.6294700, lat: 40.0394070, city: "Exton" },
{ title: "Factoria", state: "WA", lng: -122.1729470, lat: 47.5742020, city: "Bellevue" },
{ title: "Fair Lakes", state: "VA", lng: -77.3929180, lat: 38.8556880, city: "Fairfax" },
{ title: "Fairfax", state: "VA", lng: -77.3016820, lat: 38.7986870, city: "Fairfax" },
{ title: "Fairfield", state: "NJ", lng: -74.2714140, lat: 40.8896230, city: "Fairfield" },
{ title: "Fairfield", state: "CA", lng: -122.0682120, lat: 38.2467020, city: "Fairfield" },
{ title: "Fairfield Township", state: "OH", lng: -84.5041700, lat: 39.3874840, city: "Hamilton" },
{ title: "Fairlawn", state: "OH", lng: -81.6048170, lat: 41.1275610, city: "Fairlawn" },
{ title: "Fairview", state: "OR", lng: -122.4421440, lat: 45.5327850, city: "Fairview" },
{ title: "Fairview Heights", state: "IL", lng: -89.9868280, lat: 38.5720740, city: "Fairview Heights" },
{ title: "Fairview Park", state: "OH", lng: -81.8501810, lat: 41.4583870, city: "Fairview Park" },
{ title: "Falls Church", state: "VA", lng: -77.1420450, lat: 38.8680470, city: "Falls Church" },
{ title: "Falls Church Tinner Hill", state: "VA", lng: -77.1768450, lat: 38.8798210, city: "Falls Church" },
{ title: "Far North Scottsdale", state: "AZ", lng: -111.9230140, lat: 33.7790270, city: "Scottsdale" },
{ title: "Fargo", state: "ND", lng: -96.8529850, lat: 46.8606280, city: "Fargo" },
{ title: "Farmingdale", state: "NY", lng: -73.4194070, lat: 40.7509610, city: "Farmingdale" },
{ title: "Farmington", state: "NM", lng: -108.1482150, lat: 36.7686390, city: "Farmington" },
{ title: "Farmington Hills", state: "MI", lng: -83.3433230, lat: 42.4520870, city: "Farmington Hills" },
{ title: "Farragut", state: "TN", lng: -84.1513120, lat: 35.9005770, city: "Knoxville" },
{ title: "Fayetteville", state: "AR", lng: -94.1555000, lat: 36.1157000, city: "Fayetteville" },
{ title: "Fayetteville", state: "NY", lng: -76.0197820, lat: 43.0318490, city: "Fayetteville" },
{ title: "Fayetteville", state: "NC", lng: -78.9746890, lat: 35.0547090, city: "Fayetteville" },
{ title: "Fayetteville", state: "GA", lng: -84.4385310, lat: 33.4817440, city: "Fayetteville" },
{ title: "Federal Way", state: "WA", lng: -122.3055390, lat: 47.3135920, city: "Federal Way" },
{ title: "Fenton", state: "MO", lng: -90.4469530, lat: 38.5028430, city: "Fenton" },
{ title: "Fenton", state: "MI", lng: -83.7369280, lat: 42.7872600, city: "Fenton" },
{ title: "Fields Ertel", state: "OH", lng: -84.3048050, lat: 39.2955650, city: "Cincinnati" },
{ title: "Fishers", state: "IN", lng: -86.0093960, lat: 39.9592980, city: "Fishers" },
{ title: "Fitchburg", state: "WI", lng: -89.4819320, lat: 43.0137040, city: "Fitchburg" },
{ title: "Flagstaff", state: "AZ", lng: -111.6600100, lat: 35.1838370, city: "Flagstaff" },
{ title: "Fleming Island", state: "FL", lng: -81.7074760, lat: 30.1040090, city: "Orange Park" },
{ title: "Flint", state: "MI", lng: -83.7494550, lat: 42.9836460, city: "Flint" },
{ title: "Florence", state: "KY", lng: -84.6332430, lat: 39.0195970, city: "Florence" },
{ title: "Florence", state: "AL", lng: -87.6347640, lat: 34.8421300, city: "Florence" },
{ title: "Florence", state: "SC", lng: -79.8374920, lat: 34.1930020, city: "Florence" },
{ title: "Florissant", state: "MO", lng: -90.3107490, lat: 38.8053610, city: "Florissant" },
{ title: "Flower Mound", state: "TX", lng: -97.0832710, lat: 33.0678920, city: "Flower Mound" },
{ title: "Flowery Branch", state: "GA", lng: -83.9112840, lat: 34.1787220, city: "Flowery Branch" },
{ title: "Flowood", state: "MS", lng: -90.0606230, lat: 32.3433380, city: "Flowood" },
{ title: "Flushing", state: "NY", lng: -73.8341700, lat: 40.7572850, city: "Flushing" },
{ title: "Folsom", state: "CA", lng: -121.1532840, lat: 38.6716080, city: "Folsom" },
{ title: "Fond du Lac", state: "WI", lng: -88.4849650, lat: 43.7909030, city: "Fond Du Lac" },
{ title: "Fontana", state: "CA", lng: -117.4345690, lat: 34.0649810, city: "Fontana" },
{ title: "Fontana North", state: "CA", lng: -117.4729630, lat: 34.1521520, city: "Fontana" },
{ title: "Foothill Ranch", state: "CA", lng: -117.6642980, lat: 33.6769540, city: "Foothill Ranch" },
{ title: "Forest Hill", state: "VA", lng: -77.5276400, lat: 37.5351490, city: "Richmond" },
{ title: "Forest Hills", state: "NY", lng: -73.8471210, lat: 40.7208970, city: "FOREST HILLS" },
{ title: "Forest Lake", state: "MN", lng: -93.0000510, lat: 45.2742860, city: "Forest Lake" },
{ title: "Forestville", state: "MD", lng: -76.8864390, lat: 38.8486360, city: "District Heights" },
{ title: "Fort Collins", state: "CO", lng: -105.0785370, lat: 40.5273260, city: "Fort Collins" },
{ title: "Fort Collins East", state: "CO", lng: -105.0224200, lat: 40.5270990, city: "Fort Collins" },
{ title: "Fort Dodge", state: "IA", lng: -94.1573540, lat: 42.5061540, city: "Fort Dodge" },
{ title: "Fort Myers North", state: "FL", lng: -81.8011960, lat: 26.6151490, city: "Fort Myers" },
{ title: "Fort Myers SW", state: "FL", lng: -81.9456240, lat: 26.5103650, city: "Fort Myers" },
{ title: "Fort Smith", state: "AR", lng: -94.3881250, lat: 35.3410030, city: "Fort Smith" },
{ title: "Fort Union", state: "UT", lng: -111.8501850, lat: 40.6225650, city: "Salt Lake City" },
{ title: "Fort Wayne SW", state: "IN", lng: -85.2033600, lat: 41.0768050, city: "Fort Wayne" },
{ title: "Fort Worth", state: "TX", lng: -97.3247800, lat: 32.9021200, city: "Fort Worth" },
{ title: "Fort Worth Central", state: "TX", lng: -97.3540780, lat: 32.7554760, city: "Fort Worth" },
{ title: "Fountain Hills", state: "AZ", lng: -111.7183550, lat: 33.5739290, city: "Fountain Hills" },
{ title: "Four Points", state: "TX", lng: -97.8502250, lat: 30.4021090, city: "Austin" },
{ title: "Framingham", state: "MA", lng: -71.3983870, lat: 42.3053280, city: "Framingham" },
{ title: "Franklin", state: "TN", lng: -86.8806870, lat: 35.8923300, city: "Franklin" },
{ title: "Franklin", state: "WI", lng: -88.0370630, lat: 42.9039140, city: "Franklin" },
{ title: "Frederick", state: "MD", lng: -77.3979790, lat: 39.3822700, city: "Frederick" },
{ title: "Fredericksburg", state: "VA", lng: -77.5124930, lat: 38.2998520, city: "Fredericksburg" },
{ title: "Fredericksburg S", state: "VA", lng: -77.5018370, lat: 38.2249170, city: "Fredericksburg" },
{ title: "Freeport", state: "NY", lng: -73.5716000, lat: 40.6558000, city: "Freeport" },
{ title: "Fremont Hub", state: "CA", lng: -121.9844010, lat: 37.5451460, city: "Fremont" },
{ title: "Fremont South", state: "CA", lng: -121.9680370, lat: 37.5022190, city: "Fremont" },
{ title: "Fresno Central", state: "CA", lng: -119.7884980, lat: 36.8214130, city: "Fresno" },
{ title: "Fresno NW", state: "CA", lng: -119.9125660, lat: 36.8347300, city: "Fresno" },
{ title: "Fresno North", state: "CA", lng: -119.7869930, lat: 36.8470750, city: "Fresno" },
{ title: "Fresno South", state: "CA", lng: -119.7711790, lat: 36.7803520, city: "Fresno" },
{ title: "Fresno West", state: "CA", lng: -119.8473240, lat: 36.8094330, city: "Fresno" },
{ title: "Fridley", state: "MN", lng: -93.2512000, lat: 45.0659000, city: "Fridley" },
{ title: "Frisco", state: "TX", lng: -96.8119820, lat: 33.1047970, city: "Frisco" },
{ title: "Frisco North", state: "TX", lng: -96.8449070, lat: 33.1736050, city: "Frisco" },
{ title: "Front Royal", state: "VA", lng: -78.1924000, lat: 38.9635000, city: "Front Royal" },
{ title: "Ft Lauderdale", state: "FL", lng: -80.1158560, lat: 26.1682480, city: "Fort Lauderdale" },
{ title: "Ft Myers", state: "FL", lng: -81.8687000, lat: 26.5425190, city: "Fort Myers" },
{ title: "Ft Wayne Glenbrook", state: "IN", lng: -85.1381570, lat: 41.1112790, city: "Fort Wayne" },
{ title: "Ft Wayne NE", state: "IN", lng: -85.0640300, lat: 41.1221610, city: "Fort Wayne" },
{ title: "Fullerton South", state: "CA", lng: -117.9276870, lat: 33.8585110, city: "Fullerton" },
{ title: "Fullerton Yorba Linda", state: "CA", lng: -117.8772970, lat: 33.8877290, city: "Fullerton" },
{ title: "Fultondale", state: "AL", lng: -86.8062300, lat: 33.6055950, city: "Fultondale" },
{ title: "Gainesville", state: "VA", lng: -77.6067510, lat: 38.7947300, city: "Gainesville" },
{ title: "Gainesville", state: "FL", lng: -82.3836180, lat: 29.6212590, city: "Gainesville" },
{ title: "Gainesville", state: "GA", lng: -83.8465030, lat: 34.2905560, city: "Gainesville" },
{ title: "Gainesville University of FL", state: "FL", lng: -82.3383890, lat: 29.6535390, city: "Gainesville" },
{ title: "Gaithersburg", state: "MD", lng: -77.2023600, lat: 39.1188340, city: "Gaithersburg" },
{ title: "Galesburg", state: "IL", lng: -90.3873030, lat: 40.9755750, city: "Galesburg" },
{ title: "Galleria", state: "TX", lng: -95.4533730, lat: 29.7452430, city: "Houston" },
{ title: "Galveston", state: "TX", lng: -94.8403000, lat: 29.2906820, city: "Galveston" },
{ title: "Gandy", state: "FL", lng: -82.5045680, lat: 27.8946750, city: "Tampa" },
{ title: "Garden City", state: "KS", lng: -100.8434760, lat: 37.9796760, city: "Garden City" },
{ title: "Garden Grove Harbor", state: "CA", lng: -117.9136140, lat: 33.7870310, city: "Garden Grove" },
{ title: "Gardena", state: "CA", lng: -118.3160790, lat: 33.8866750, city: "Gardena" },
{ title: "Garland East", state: "TX", lng: -96.6466990, lat: 32.9652710, city: "Garland" },
{ title: "Garner", state: "NC", lng: -78.6382270, lat: 35.7159370, city: "Garner" },
{ title: "Gastonia", state: "NC", lng: -81.1383000, lat: 35.2642000, city: "Gastonia" },
{ title: "Gateway", state: "NY", lng: -73.8702710, lat: 40.6524620, city: "Brooklyn" },
{ title: "Georgetown", state: "TX", lng: -97.6981220, lat: 30.6315120, city: "Georgetown" },
{ title: "Georgia and Eastern", state: "DC", lng: -77.0269930, lat: 38.9844590, city: "Washington" },
{ title: "Germantown", state: "MD", lng: -77.2487220, lat: 39.1989220, city: "Germantown" },
{ title: "Germantown", state: "TN", lng: -89.7557290, lat: 35.0652070, city: "Germantown" },
{ title: "Gig Harbor", state: "WA", lng: -122.6073390, lat: 47.3608640, city: "Gig Harbor" },
{ title: "Gilbert", state: "AZ", lng: -111.7573660, lat: 33.3342430, city: "Gilbert" },
{ title: "Gilbert SE", state: "AZ", lng: -111.6896750, lat: 33.3229490, city: "Mesa" },
{ title: "Gilbert SW", state: "AZ", lng: -111.7863530, lat: 33.2784100, city: "Gilbert" },
{ title: "Gilroy", state: "CA", lng: -121.5541130, lat: 37.0003260, city: "Gilroy" },
{ title: "Glen Burnie", state: "MD", lng: -76.6346010, lat: 39.1330670, city: "Glen Burnie" },
{ title: "Glen Burnie North", state: "MD", lng: -76.6105870, lat: 39.1899880, city: "Glen Burnie" },
{ title: "Glendale", state: "CO", lng: -104.9377050, lat: 39.7082040, city: "Glendale" },
{ title: "Glendale", state: "CA", lng: -118.2590880, lat: 34.1430810, city: "Glendale" },
{ title: "Glendale", state: "AZ", lng: -112.1529710, lat: 33.5801840, city: "Glendale" },
{ title: "Glendale Heights", state: "IL", lng: -88.0988610, lat: 41.9374640, city: "Glendale Heights" },
{ title: "Glenview", state: "IL", lng: -87.8134580, lat: 42.1026440, city: "Glenview" },
{ title: "Glenville", state: "NY", lng: -73.9309230, lat: 42.8666160, city: "Schenectady" },
{ title: "Glenwood Springs", state: "CO", lng: -107.3437830, lat: 39.5558550, city: "Glenwood Springs" },
{ title: "Gloucester Township", state: "NJ", lng: -74.9940640, lat: 39.7473470, city: "Sicklerville" },
{ title: "Goldsboro", state: "NC", lng: -77.9394230, lat: 35.3796230, city: "Goldsboro" },
{ title: "Golf Mills", state: "IL", lng: -87.8388990, lat: 42.0528440, city: "Niles" },
{ title: "Goodyear", state: "AZ", lng: -112.3556920, lat: 33.4629420, city: "Goodyear" },
{ title: "Goodyear West", state: "AZ", lng: -112.4218690, lat: 33.4374070, city: "Goodyear" },
{ title: "Goshen", state: "IN", lng: -85.9050350, lat: 41.6220520, city: "Goshen" },
{ title: "Graceland", state: "OH", lng: -83.0207610, lat: 40.0654170, city: "Columbus" },
{ title: "Grafton", state: "WI", lng: -87.9223070, lat: 43.3191400, city: "Grafton" },
{ title: "Granada Hills", state: "CA", lng: -118.5029390, lat: 34.2733380, city: "Granada Hills" },
{ title: "Grand Forks", state: "ND", lng: -97.0794680, lat: 47.8871880, city: "Grand Forks" },
{ title: "Grand Junction", state: "CO", lng: -108.6011790, lat: 39.0928700, city: "Grand Junction" },
{ title: "Grand Prairie", state: "TX", lng: -97.0096420, lat: 32.6778270, city: "Grand Prairie" },
{ title: "Grand Prairie S", state: "TX", lng: -97.0605690, lat: 32.6428240, city: "Grand Prairie" },
{ title: "Grand Rapids", state: "MN", lng: -93.5271930, lat: 47.2095490, city: "Grand Rapids" },
{ title: "Grand Rapids East", state: "MI", lng: -85.5411570, lat: 42.9083170, city: "Grand Rapids" },
{ title: "Grand Rapids North", state: "MI", lng: -85.6875980, lat: 43.0219510, city: "Walker" },
{ title: "Grand Rapids South", state: "MI", lng: -85.6154120, lat: 42.8459570, city: "Caledonia" },
{ title: "Grandville", state: "MI", lng: -85.7407670, lat: 42.8822140, city: "Grandville" },
{ title: "Grapevine", state: "TX", lng: -97.0895830, lat: 32.9306310, city: "Grapevine" },
{ title: "Great Falls", state: "MT", lng: -111.2713120, lat: 47.4933810, city: "Great Falls" },
{ title: "Greece", state: "NY", lng: -77.6929250, lat: 43.2024000, city: "Rochester" },
{ title: "Greeley", state: "CO", lng: -104.7505510, lat: 40.3938740, city: "Greeley" },
{ title: "Green", state: "OH", lng: -81.4952200, lat: 40.9836340, city: "Akron" },
{ title: "Green Bay West", state: "WI", lng: -88.0706660, lat: 44.4905900, city: "Green Bay" },
{ title: "Greenacres", state: "FL", lng: -80.1367320, lat: 26.6181840, city: "Greenacres" },
{ title: "Greenbelt", state: "MD", lng: -76.9067110, lat: 38.9986520, city: "Greenbelt" },
{ title: "Greenbrier", state: "VA", lng: -76.2317620, lat: 36.7717660, city: "Chesapeake" },
{ title: "Greenfield", state: "WI", lng: -87.9514240, lat: 42.9574110, city: "Greenfield" },
{ title: "Greenland", state: "NH", lng: -70.8185870, lat: 43.0489510, city: "Greenland" },
{ title: "Greensboro NW", state: "NC", lng: -79.8209500, lat: 36.1043030, city: "Greensboro" },
{ title: "Greensboro South", state: "NC", lng: -79.9069450, lat: 36.0569430, city: "Greensboro" },
{ title: "Greensboro West", state: "NC", lng: -79.8768310, lat: 36.1138150, city: "Greensboro" },
{ title: "Greensburg", state: "PA", lng: -79.5961780, lat: 40.3035260, city: "Greensburg" },
{ title: "Greenville", state: "NC", lng: -77.3831950, lat: 35.5786010, city: "Greenville" },
{ title: "Greenville", state: "SC", lng: -82.3080250, lat: 34.8300760, city: "Greenville" },
{ title: "Greenwich Township", state: "NJ", lng: -75.1345240, lat: 40.6735760, city: "Phillipsburg" },
{ title: "Greenwood South", state: "IN", lng: -86.1576340, lat: 39.6030690, city: "Greenwood" },
{ title: "Greer", state: "SC", lng: -82.2793020, lat: 34.9374400, city: "Taylors" },
{ title: "Grossmont", state: "CA", lng: -117.0123030, lat: 32.7797170, city: "La Mesa" },
{ title: "Grove City", state: "OH", lng: -83.0374580, lat: 39.8766070, city: "Grove City" },
{ title: "Gulf Shores", state: "AL", lng: -87.6805280, lat: 30.3035740, city: "Gulf Shores" },
{ title: "Gurnee", state: "IL", lng: -87.9657560, lat: 42.3831160, city: "Gurnee" },
{ title: "Hackensack", state: "NJ", lng: -74.0388180, lat: 40.8984910, city: "Hackensack" },
{ title: "Haddon Township", state: "NJ", lng: -75.0629780, lat: 39.9014640, city: "Haddon Township" },
{ title: "Hadley", state: "MA", lng: -72.5472410, lat: 42.3573110, city: "Hadley" },
{ title: "Hagerstown", state: "MD", lng: -77.7725740, lat: 39.6203010, city: "Hagerstown" },
{ title: "Hammond", state: "LA", lng: -90.4615890, lat: 30.4805320, city: "Hammond" },
{ title: "Hampton", state: "VA", lng: -76.3924460, lat: 37.0424420, city: "Hampton" },
{ title: "Hampton Village", state: "MO", lng: -90.2951720, lat: 38.5923560, city: "Saint Louis" },
{ title: "Hanford", state: "CA", lng: -119.6758080, lat: 36.3241190, city: "Hanford" },
{ title: "Hanover", state: "MA", lng: -70.8388300, lat: 42.1374010, city: "Hanover" },
{ title: "Hanover", state: "PA", lng: -76.9982550, lat: 39.8273600, city: "Hanover" },
{ title: "Hanover Township", state: "PA", lng: -75.4396070, lat: 40.6391110, city: "Allentown" },
{ title: "Harker Heights", state: "TX", lng: -97.6625300, lat: 31.0739370, city: "Harker Heights" },
{ title: "Harlem", state: "NY", lng: -73.9311920, lat: 40.7955610, city: "New York" },
{ title: "Harlingen", state: "TX", lng: -97.7217190, lat: 26.1830070, city: "Harlingen" },
{ title: "Harmar", state: "PA", lng: -79.8370730, lat: 40.5379550, city: "Pittsburgh" },
{ title: "Harrisburg East", state: "PA", lng: -76.8066820, lat: 40.2461290, city: "Harrisburg" },
{ title: "Harrisburg North", state: "PA", lng: -76.7964290, lat: 40.3089260, city: "Harrisburg" },
{ title: "Harrisonburg", state: "VA", lng: -78.8430000, lat: 38.4258760, city: "Harrisonburg" },
{ title: "Hartland Township", state: "MI", lng: -83.7574370, lat: 42.6350480, city: "Howell" },
{ title: "Harvey", state: "LA", lng: -90.0534310, lat: 29.8895470, city: "Harvey" },
{ title: "Hattiesburg", state: "MS", lng: -89.3850610, lat: 31.3235140, city: "Hattiesburg" },
{ title: "Haverhill", state: "MA", lng: -71.1159590, lat: 42.7880720, city: "Haverhill" },
{ title: "Hawaii-Hilo", state: "HI", lng: -155.0592350, lat: 19.7005010, city: "Hilo" },
{ title: "Hawaii-Kona", state: "HI", lng: -156.0028540, lat: 19.6484130, city: "Kailua Kona" },
{ title: "Hawthorne", state: "CA", lng: -118.3211260, lat: 33.9225670, city: "Hawthorne" },
{ title: "Hayward", state: "CA", lng: -122.0630050, lat: 37.6079730, city: "Hayward" },
{ title: "Hayward North", state: "CA", lng: -122.1200840, lat: 37.6662850, city: "Hayward" },
{ title: "Heath", state: "OH", lng: -82.4510510, lat: 40.0323240, city: "Heath" },
{ title: "Helena", state: "MT", lng: -112.0192780, lat: 46.6212950, city: "Helena" },
{ title: "Hemet", state: "CA", lng: -117.0088660, lat: 33.7458860, city: "Hemet" },
{ title: "Henderson", state: "NV", lng: -115.0477120, lat: 36.0650590, city: "Henderson" },
{ title: "Henderson SW", state: "NV", lng: -115.0851830, lat: 36.0033990, city: "Henderson" },
{ title: "Henderson South", state: "NV", lng: -114.9940980, lat: 36.0384770, city: "Henderson" },
{ title: "Hendersonville", state: "TN", lng: -86.6252710, lat: 36.3343950, city: "Hendersonville" },
{ title: "Henrietta", state: "NY", lng: -77.6320500, lat: 43.0784490, city: "Rochester" },
{ title: "Hesperia", state: "CA", lng: -117.3839940, lat: 34.4250360, city: "Hesperia" },
{ title: "Hialeah", state: "FL", lng: -80.3171610, lat: 25.8537860, city: "Hialeah" },
{ title: "Hickory", state: "NC", lng: -81.3076790, lat: 35.7004490, city: "Hickory" },
{ title: "Hicksville", state: "NY", lng: -73.5329450, lat: 40.7716820, city: "Hicksville" },
{ title: "High Point", state: "NC", lng: -80.0082730, lat: 35.9934780, city: "High Point" },
{ title: "Highland", state: "IN", lng: -87.4683300, lat: 41.5241730, city: "Highland" },
{ title: "Highland Park", state: "IL", lng: -87.8249650, lat: 42.1916760, city: "Highland Park" },
{ title: "Highlands Ranch", state: "CO", lng: -105.0051070, lat: 39.5495520, city: "Highlands Ranch" },
{ title: "Hillcrest", state: "VA", lng: -76.2340370, lat: 36.6590110, city: "Chesapeake" },
{ title: "Hilliard", state: "OH", lng: -83.1232370, lat: 40.0380550, city: "Hilliard" },
{ title: "Hillsboro", state: "OR", lng: -122.9570160, lat: 45.5071970, city: "Hillsboro" },
{ title: "Hillside", state: "IL", lng: -87.8872600, lat: 41.8679360, city: "Hillside" },
{ title: "Hilton Head", state: "SC", lng: -80.8502450, lat: 32.2550690, city: "Bluffton" },
{ title: "Hiram", state: "GA", lng: -84.7442190, lat: 33.8858140, city: "Hiram" },
{ title: "Hodgkins", state: "IL", lng: -87.8600880, lat: 41.7807230, city: "Hodgkins" },
{ title: "Hoffman Estates", state: "IL", lng: -88.1930460, lat: 42.0737210, city: "HoffMan Estates" },
{ title: "Holland", state: "MI", lng: -86.0920030, lat: 42.8311160, city: "Holland" },
{ title: "Hollister", state: "CA", lng: -121.3900480, lat: 36.8354050, city: "Hollister" },
{ title: "Holly Springs", state: "NC", lng: -78.8513830, lat: 35.6605800, city: "Holly Springs" },
{ title: "Hollywood", state: "FL", lng: -80.1743800, lat: 26.0127060, city: "Hollywood" },
{ title: "Holyoke", state: "MA", lng: -72.6422320, lat: 42.1682210, city: "Holyoke" },
{ title: "Homewood", state: "IL", lng: -87.6342840, lat: 41.5687890, city: "Homewood" },
{ title: "Homewood", state: "AL", lng: -86.7749170, lat: 33.4676920, city: "Homewood" },
{ title: "Hooksett", state: "NH", lng: -71.4612020, lat: 43.0456150, city: "Hooksett" },
{ title: "Hoover West", state: "AL", lng: -86.8525590, lat: 33.3615980, city: "Birmingham" },
{ title: "Horn Lake", state: "MS", lng: -90.0045600, lat: 34.9657230, city: "Horn Lake" },
{ title: "Houma", state: "LA", lng: -90.7569860, lat: 29.6112260, city: "Houma" },
{ title: "Houston Central", state: "TX", lng: -95.3848160, lat: 29.7746630, city: "Houston" },
{ title: "Houston Far West", state: "TX", lng: -95.6267430, lat: 29.7330150, city: "Houston" },
{ title: "Houston Memorial", state: "TX", lng: -95.5422670, lat: 29.7824730, city: "Houston" },
{ title: "Houston Meyerland", state: "TX", lng: -95.4624880, lat: 29.6866780, city: "Houston" },
{ title: "Houston NW", state: "TX", lng: -95.5027070, lat: 29.8492440, city: "Houston" },
{ title: "Houston North Central", state: "TX", lng: -95.4343190, lat: 30.0503940, city: "Spring" },
{ title: "Houston South", state: "TX", lng: -95.2645700, lat: 29.6021300, city: "Houston" },
{ title: "Houston South Central", state: "TX", lng: -95.4184380, lat: 29.6928690, city: "Houston" },
{ title: "Houston Tomball North", state: "TX", lng: -95.6397360, lat: 30.0916150, city: "Tomball" },
{ title: "Howell Township", state: "NJ", lng: -74.2200360, lat: 40.1318750, city: "Howell" },
{ title: "Huber Heights", state: "OH", lng: -84.1336740, lat: 39.8714230, city: "Huber Heights" },
{ title: "Hudson", state: "WI", lng: -92.7237460, lat: 44.9657140, city: "Hudson" },
{ title: "Humble", state: "TX", lng: -95.2681620, lat: 30.0195060, city: "Humble" },
{ title: "Hunters Creek", state: "FL", lng: -81.4071840, lat: 28.3695410, city: "Orlando" },
{ title: "Huntersville", state: "NC", lng: -80.8618450, lat: 35.4429590, city: "Huntersville" },
{ title: "Huntington", state: "NY", lng: -73.4060640, lat: 40.8278010, city: "Huntington Station" },
{ title: "Huntington Beach East", state: "CA", lng: -117.9556530, lat: 33.6714990, city: "Huntington Beach" },
{ title: "Huntsville", state: "TX", lng: -95.5662440, lat: 30.7068900, city: "Huntsville" },
{ title: "Huntsville South", state: "AL", lng: -86.5416320, lat: 34.6734980, city: "Huntsville" },
{ title: "Huntsville West", state: "AL", lng: -86.6815230, lat: 34.7416370, city: "Huntsville" },
{ title: "Hurst", state: "TX", lng: -97.1839810, lat: 32.8366660, city: "Hurst" },
{ title: "Hutchinson", state: "MN", lng: -94.3778260, lat: 44.8685460, city: "Hutchinson" },
{ title: "Idaho Falls", state: "ID", lng: -111.9832000, lat: 43.4780640, city: "Idaho Falls" },
{ title: "Independence", state: "MO", lng: -94.3692650, lat: 39.0507230, city: "Independence" },
{ title: "Indy Glendale", state: "IN", lng: -86.1197020, lat: 39.8664030, city: "Indianapolis" },
{ title: "Inglewood", state: "CA", lng: -118.3328440, lat: 33.9480250, city: "Inglewood" },
{ title: "Inver Grove Heights", state: "MN", lng: -93.0877700, lat: 44.8360170, city: "Inver Grove Heights" },
{ title: "Iowa City", state: "IA", lng: -91.5996860, lat: 41.6915810, city: "Coralville" },
{ title: "Irondequoit", state: "NY", lng: -77.5738850, lat: 43.1980150, city: "Rochester" },
{ title: "Irvine", state: "CA", lng: -117.8125760, lat: 33.6855810, city: "Irvine" },
{ title: "Irvine North", state: "CA", lng: -117.7849150, lat: 33.7274360, city: "Irvine" },
{ title: "Irvine Spectrum", state: "CA", lng: -117.7400770, lat: 33.6479500, city: "Irvine" },
{ title: "Irvine University Town Center", state: "CA", lng: -117.8383370, lat: 33.6499560, city: "Irvine" },
{ title: "Irving", state: "TX", lng: -96.9909520, lat: 32.8391990, city: "Irving" },
{ title: "Irving North", state: "TX", lng: -96.9619010, lat: 32.9130920, city: "Irving" },
{ title: "Issaquah", state: "WA", lng: -122.0508740, lat: 47.5422080, city: "Issaquah" },
{ title: "Jackson", state: "MI", lng: -84.4258980, lat: 42.2671830, city: "Jackson" },
{ title: "Jackson", state: "TN", lng: -88.8577220, lat: 35.6865650, city: "Jackson" },
{ title: "Jacksonville", state: "NC", lng: -77.4040380, lat: 34.7858850, city: "Jacksonville" },
{ title: "Jacksonville Beach", state: "FL", lng: -81.3908330, lat: 30.2539510, city: "Jacksonville Beach" },
{ title: "Jacksonville East", state: "FL", lng: -81.4569980, lat: 30.2853610, city: "Jacksonville" },
{ title: "Jacksonville Mandarin", state: "FL", lng: -81.6291690, lat: 30.1885580, city: "Jacksonville" },
{ title: "Jacksonville St Johns", state: "FL", lng: -81.5250110, lat: 30.2605150, city: "Jacksonville" },
{ title: "Jacksonville West", state: "FL", lng: -81.8247130, lat: 30.1992320, city: "Jacksonville" },
{ title: "Janesville", state: "WI", lng: -88.9982940, lat: 42.7220670, city: "Janesville" },
{ title: "Jefferson City", state: "MO", lng: -92.2142400, lat: 38.5793810, city: "Jefferson City" },
{ title: "Jeffersontown", state: "KY", lng: -85.5944760, lat: 38.2153740, city: "Louisville" },
{ title: "Jersey City", state: "NJ", lng: -74.0357200, lat: 40.7323360, city: "Jersey City" },
{ title: "Johns Creek", state: "GA", lng: -84.1731880, lat: 34.0970810, city: "Suwanee" },
{ title: "Johnson City", state: "TN", lng: -82.3738410, lat: 36.3429070, city: "Johnson City" },
{ title: "Joliet", state: "IL", lng: -88.1543910, lat: 41.5771230, city: "Joliet" },
{ title: "Jonesboro", state: "AR", lng: -90.6664480, lat: 35.8229360, city: "Jonesboro" },
{ title: "Joplin", state: "MO", lng: -94.4741580, lat: 37.0851880, city: "Joplin" },
{ title: "KC Speedway", state: "KS", lng: -94.8318290, lat: 39.1272350, city: "Kansas City" },
{ title: "Kalamazoo West", state: "MI", lng: -85.6549580, lat: 42.2980500, city: "Kalamazoo" },
{ title: "Kalispell", state: "MT", lng: -114.3267370, lat: 48.2359750, city: "Kalispell" },
{ title: "Kannapolis", state: "NC", lng: -80.6784760, lat: 35.4171240, city: "Concord" },
{ title: "Kansas City Chouteau", state: "MO", lng: -94.5330730, lat: 39.1738980, city: "Kansas City" },
{ title: "Kansas City NW", state: "MO", lng: -94.6546430, lat: 39.2576920, city: "Kansas City" },
{ title: "Kansas City North", state: "MO", lng: -94.5951710, lat: 39.2490070, city: "Kansas City" },
{ title: "Katy", state: "TX", lng: -95.7167560, lat: 29.7823550, city: "Houston" },
{ title: "Katy West", state: "TX", lng: -95.7757860, lat: 29.7357510, city: "Katy" },
{ title: "Kearney", state: "NE", lng: -99.0856400, lat: 40.7224190, city: "Kearney" },
{ title: "Kearny Mesa", state: "CA", lng: -117.1510260, lat: 32.8163650, city: "San Diego" },
{ title: "Keene", state: "NH", lng: -72.3019060, lat: 42.9281880, city: "Keene" },
{ title: "Keizer", state: "OR", lng: -122.9950540, lat: 45.0122610, city: "Keizer" },
{ title: "Kelso", state: "WA", lng: -122.8993210, lat: 46.1427140, city: "Kelso" },
{ title: "Kendall", state: "FL", lng: -80.4379340, lat: 25.6854670, city: "Miami" },
{ title: "Kenner", state: "LA", lng: -90.2475140, lat: 30.0170650, city: "Kenner" },
{ title: "Kennewick", state: "WA", lng: -119.2220100, lat: 46.2219150, city: "Kennewick" },
{ title: "Kent", state: "WA", lng: -122.2029740, lat: 47.3666090, city: "Kent" },
{ title: "Kernersville", state: "NC", lng: -80.0999620, lat: 36.1097460, city: "Kernersville" },
{ title: "Killingly", state: "CT", lng: -71.8837780, lat: 41.8390190, city: "Dayville" },
{ title: "King of Prussia", state: "PA", lng: -75.3655210, lat: 40.0949500, city: "King of Prussia" },
{ title: "Kingsport", state: "TN", lng: -82.4938770, lat: 36.5518450, city: "Kingsport" },
{ title: "Kingston", state: "NY", lng: -73.9855550, lat: 41.9682480, city: "Kingston" },
{ title: "Kingston", state: "MA", lng: -70.7168580, lat: 41.9711250, city: "Kingston" },
{ title: "Kips Bay", state: "NY", lng: -73.9780920, lat: 40.7414840, city: "New York" },
{ title: "Kirkwood", state: "MO", lng: -90.4047350, lat: 38.5647090, city: "Kirkwood" },
{ title: "Kissimmee West", state: "FL", lng: -81.4713960, lat: 28.3315610, city: "Kissimmee" },
{ title: "Knightdale", state: "NC", lng: -78.5092180, lat: 35.7981900, city: "Knightdale" },
{ title: "Knollwood", state: "MN", lng: -93.3927370, lat: 44.9359290, city: "Minneapolis" },
{ title: "Knoxville NW", state: "TN", lng: -84.0221710, lat: 36.0084640, city: "Knoxville" },
{ title: "Knoxville North", state: "TN", lng: -83.8878060, lat: 36.0368590, city: "Knoxville" },
{ title: "Knoxville South", state: "TN", lng: -84.0782390, lat: 35.8620420, city: "Knoxville" },
{ title: "Knoxville West", state: "TN", lng: -84.0477810, lat: 35.9221240, city: "Knoxville" },
{ title: "Kohler", state: "WI", lng: -87.7665300, lat: 43.7164680, city: "Sheboygan Falls" },
{ title: "Kokomo", state: "IN", lng: -86.1091580, lat: 40.4749850, city: "Kokomo" },
{ title: "Kyle", state: "TX", lng: -97.8643630, lat: 30.0116920, city: "Kyle" },
{ title: "LA Beverly", state: "CA", lng: -118.3755000, lat: 34.0743000, city: "Los Angeles" },
{ title: "LA Burbank West", state: "CA", lng: -118.3480020, lat: 34.1690400, city: "Burbank" },
{ title: "LA Central", state: "CA", lng: -118.2610070, lat: 34.0488330, city: "Los Angeles" },
{ title: "LA Glassell Park", state: "CA", lng: -118.2251420, lat: 34.1229360, city: "Los Angeles" },
{ title: "LA Sawtelle", state: "CA", lng: -118.4565710, lat: 34.0435300, city: "Los Angeles" },
{ title: "LA Westwood", state: "CA", lng: -118.4441990, lat: 34.0630270, city: "Los Angeles" },
{ title: "La Canada Flintridge", state: "CA", lng: -118.1992700, lat: 34.2051300, city: "La Canada Flintridge" },
{ title: "La Cantera", state: "TX", lng: -98.5974320, lat: 29.6064760, city: "San Antonio" },
{ title: "La Habra", state: "CA", lng: -117.9566570, lat: 33.9161150, city: "La Habra" },
{ title: "La Quinta", state: "CA", lng: -116.2896980, lat: 33.7085820, city: "La Quinta" },
{ title: "LaCrosse", state: "WI", lng: -91.1933090, lat: 43.8739470, city: "Onalaska" },
{ title: "LaPlata", state: "MD", lng: -76.9824920, lat: 38.5414840, city: "La Plata" },
{ title: "Lacey", state: "WA", lng: -122.8358600, lat: 47.0427490, city: "Lacey" },
{ title: "Lady Lake", state: "FL", lng: -81.9398330, lat: 28.9336090, city: "The Villages" },
{ title: "Lafayette", state: "LA", lng: -92.0491020, lat: 30.1601030, city: "Lafayette" },
{ title: "Lafayette", state: "IN", lng: -86.8472330, lat: 40.4194820, city: "Lafayette" },
{ title: "Lafayette N", state: "LA", lng: -91.9958320, lat: 30.2652990, city: "Lafayette" },
{ title: "Lake Bluff", state: "IL", lng: -87.8738270, lat: 42.2791530, city: "Lake Bluff" },
{ title: "Lake Charles", state: "LA", lng: -93.2459210, lat: 30.1998430, city: "Lake Charles" },
{ title: "Lake County", state: "IN", lng: -87.3030740, lat: 41.4694860, city: "Merrillville" },
{ title: "Lake Elsinore", state: "CA", lng: -117.3419960, lat: 33.6891460, city: "Lake Elsinore" },
{ title: "Lake Geneva", state: "WI", lng: -88.4153030, lat: 42.5981150, city: "Lake Geneva" },
{ title: "Lake Jackson", state: "TX", lng: -95.4646990, lat: 29.0502080, city: "Lake Jackson" },
{ title: "Lake Mary", state: "FL", lng: -81.3488460, lat: 28.7545860, city: "Lake Mary" },
{ title: "Lake Park/Palm Beach Gardens", state: "FL", lng: -80.0828940, lat: 26.8058590, city: "Lake Park" },
{ title: "Lake Stevens", state: "WA", lng: -122.1019090, lat: 47.9986840, city: "Lake Stevens" },
{ title: "Lake Street", state: "MN", lng: -93.2367420, lat: 44.9499510, city: "Minneapolis" },
{ title: "Lake Worth", state: "TX", lng: -97.4293220, lat: 32.8141280, city: "Lake Worth" },
{ title: "Lake Zurich", state: "IL", lng: -88.1044450, lat: 42.1870520, city: "Lake Zurich" },
{ title: "Lakeland North", state: "FL", lng: -81.9709170, lat: 28.0923930, city: "Lakeland" },
{ title: "Lakeland South", state: "FL", lng: -81.9729420, lat: 28.0001680, city: "Lakeland" },
{ title: "Lakeside", state: "MI", lng: -82.9965910, lat: 42.6285320, city: "Shelby Township" },
{ title: "Lakeville", state: "MN", lng: -93.2917570, lat: 44.6839170, city: "Lakeville" },
{ title: "Lakewood", state: "CO", lng: -105.0795110, lat: 39.7083690, city: "Lakewood" },
{ title: "Lakewood", state: "WA", lng: -122.5117820, lat: 47.1636390, city: "Lakewood" },
{ title: "Lakewood Center Mall", state: "CA", lng: -118.1398190, lat: 33.8530380, city: "Lakewood" },
{ title: "Lancaster", state: "CA", lng: -118.1493990, lat: 34.6736560, city: "Lancaster" },
{ title: "Lancaster", state: "OH", lng: -82.6214040, lat: 39.7306900, city: "Lancaster" },
{ title: "Lancaster Central", state: "PA", lng: -76.3114420, lat: 40.0681110, city: "Lancaster" },
{ title: "Lancaster East", state: "PA", lng: -76.2034470, lat: 40.0262160, city: "Lancaster" },
{ title: "Lanesborough", state: "MA", lng: -73.2061160, lat: 42.4952640, city: "Lanesborough" },
{ title: "Lanham", state: "MD", lng: -76.8246250, lat: 38.9539170, city: "Bowie" },
{ title: "Lansing", state: "NY", lng: -76.4905980, lat: 42.4849330, city: "Ithaca" },
{ title: "Lansing South", state: "MI", lng: -84.5438800, lat: 42.6633900, city: "Lansing" },
{ title: "Laredo", state: "TX", lng: -99.4999340, lat: 27.5695840, city: "Laredo" },
{ title: "Laredo East", state: "TX", lng: -99.4518070, lat: 27.5161100, city: "Laredo" },
{ title: "Largo", state: "MD", lng: -76.8267620, lat: 38.8961560, city: "Upper Marlboro" },
{ title: "Largo", state: "FL", lng: -82.7849930, lat: 27.8926520, city: "Largo" },
{ title: "Las Cruces", state: "NM", lng: -106.7442050, lat: 32.3174350, city: "Las Cruces" },
{ title: "Las Vegas Blue Diamond", state: "NV", lng: -115.1946440, lat: 36.0407200, city: "Las Vegas" },
{ title: "Las Vegas Boca Park", state: "NV", lng: -115.2871340, lat: 36.1610860, city: "Las Vegas" },
{ title: "Las Vegas East", state: "NV", lng: -115.0609620, lat: 36.1580600, city: "Las Vegas" },
{ title: "Las Vegas Far NW", state: "NV", lng: -115.2637410, lat: 36.2804380, city: "Las Vegas" },
{ title: "Las Vegas Far SW", state: "NV", lng: -115.3111270, lat: 36.1144710, city: "Las Vegas" },
{ title: "Las Vegas Flamingo", state: "NV", lng: -115.1388600, lat: 36.1165410, city: "Las Vegas" },
{ title: "Las Vegas N Decatur", state: "NV", lng: -115.2094820, lat: 36.2729880, city: "Las Vegas" },
{ title: "Las Vegas NW", state: "NV", lng: -115.2498300, lat: 36.2195360, city: "Las Vegas" },
{ title: "Las Vegas Silverado Ranch", state: "NV", lng: -115.1217980, lat: 36.0121180, city: "Las Vegas" },
{ title: "Latham", state: "NY", lng: -73.7710770, lat: 42.7564950, city: "Latham" },
{ title: "Lathrop", state: "CA", lng: -121.2990570, lat: 37.8085380, city: "Lathrop" },
{ title: "Laurel", state: "MD", lng: -76.8096630, lat: 39.0969910, city: "Laurel" },
{ title: "Laverne", state: "CA", lng: -117.7598860, lat: 34.1100600, city: "La Verne" },
{ title: "Lawrence", state: "KS", lng: -95.2635130, lat: 38.9255380, city: "Lawrence" },
{ title: "Lawrenceville", state: "GA", lng: -84.0149270, lat: 33.9701330, city: "Lawrenceville" },
{ title: "Lawton", state: "OK", lng: -98.4949140, lat: 34.6292860, city: "Lawton" },
{ title: "Layton", state: "UT", lng: -111.9811120, lat: 41.0877500, city: "Layton" },
{ title: "League City", state: "TX", lng: -95.0851940, lat: 29.4657690, city: "Dickinson" },
{ title: "Lee County", state: "FL", lng: -81.7865260, lat: 26.4835910, city: "Fort Myers" },
{ title: "Lees Summit", state: "MO", lng: -94.4089400, lat: 38.9311530, city: "Lees Summit" },
{ title: "Leesburg", state: "VA", lng: -77.5347230, lat: 39.1156380, city: "Leesburg" },
{ title: "Lemon Grove", state: "CA", lng: -117.0555250, lat: 32.7412600, city: "San Diego" },
{ title: "Lemont", state: "IL", lng: -88.0040720, lat: 41.6440070, city: "Lemont" },
{ title: "Leominster", state: "MA", lng: -71.7137400, lat: 42.5271930, city: "Leominster" },
{ title: "Levittown", state: "NY", lng: -73.4942600, lat: 40.7249290, city: "Levittown" },
{ title: "Lewisville", state: "TX", lng: -96.8850360, lat: 33.0640370, city: "Lewisville" },
{ title: "Lexington", state: "SC", lng: -81.1938330, lat: 34.0067870, city: "Lexington" },
{ title: "Lexington", state: "KY", lng: -84.5264480, lat: 37.9929250, city: "Lexington" },
{ title: "Lexington Park", state: "MD", lng: -76.5138260, lat: 38.2976830, city: "California" },
{ title: "Lexington SE", state: "KY", lng: -84.4151470, lat: 38.0220570, city: "Lexington" },
{ title: "Liberty", state: "MO", lng: -94.4633730, lat: 39.2473760, city: "Kansas City" },
{ title: "Lincoln", state: "RI", lng: -71.4786710, lat: 41.9374750, city: "Lincoln" },
{ title: "Lincoln", state: "NE", lng: -96.6549040, lat: 40.8160870, city: "Lincoln" },
{ title: "Lincoln", state: "CA", lng: -121.3037800, lat: 38.8704680, city: "Lincoln" },
{ title: "Lincoln SW", state: "NE", lng: -96.6652800, lat: 40.7284210, city: "Lincoln" },
{ title: "Lincoln South", state: "NE", lng: -96.6412940, lat: 40.7595050, city: "Lincoln" },
{ title: "Linden", state: "NJ", lng: -74.2443290, lat: 40.6192140, city: "Linden" },
{ title: "Lino Lakes", state: "MN", lng: -93.1045460, lat: 45.1844940, city: "Lino Lakes" },
{ title: "Lisbon", state: "CT", lng: -71.9969300, lat: 41.5851920, city: "Lisbon" },
{ title: "Little Rock North", state: "AR", lng: -92.2283360, lat: 34.7884160, city: "North Little Rock" },
{ title: "Little Rock Univer", state: "AR", lng: -92.3450770, lat: 34.7497890, city: "Little Rock" },
{ title: "Little Rock West", state: "AR", lng: -92.4143740, lat: 34.7555080, city: "Little Rock" },
{ title: "Livermore", state: "CA", lng: -121.7464350, lat: 37.7008550, city: "Livermore" },
{ title: "Livonia", state: "MI", lng: -83.3347700, lat: 42.3667650, city: "Livonia" },
{ title: "Lodi", state: "CA", lng: -121.3037860, lat: 38.1171560, city: "Lodi" },
{ title: "Lone Tree", state: "CO", lng: -104.8836530, lat: 39.5348700, city: "Lone Tree" },
{ title: "Long Beach Bellflower", state: "CA", lng: -118.1232360, lat: 33.7984380, city: "Long Beach" },
{ title: "Long Beach Bixby", state: "CA", lng: -118.1196700, lat: 33.7744000, city: "Long Beach" },
{ title: "Long Beach NW", state: "CA", lng: -118.1666330, lat: 33.8775710, city: "Long Beach" },
{ title: "Longmont", state: "CO", lng: -105.1335330, lat: 40.1530200, city: "Longmont" },
{ title: "Longview", state: "TX", lng: -94.7248010, lat: 32.5486380, city: "Longview" },
{ title: "Los Angeles", state: "CA", lng: -118.3732870, lat: 34.0226980, city: "Los Angeles" },
{ title: "Los Angeles Eagle Rock", state: "CA", lng: -118.2243360, lat: 34.1416680, city: "Los Angeles" },
{ title: "Los Angeles Koreatown", state: "CA", lng: -118.2861310, lat: 34.0626400, city: "Los Angeles" },
{ title: "Los Angeles Topanga", state: "CA", lng: -118.6028990, lat: 34.1916430, city: "Canoga Park" },
{ title: "Los Angeles USC Village", state: "CA", lng: -118.2851140, lat: 34.0243060, city: "LOS ANGELES" },
{ title: "Los Banos", state: "CA", lng: -120.8732960, lat: 37.0546970, city: "Los Banos" },
{ title: "Louisville Jefferson Pavilion", state: "KY", lng: -85.6726420, lat: 38.1456840, city: "Louisville" },
{ title: "Love Field", state: "TX", lng: -96.8544390, lat: 32.8627450, city: "Dallas" },
{ title: "Loveland", state: "CO", lng: -105.0044970, lat: 40.4092880, city: "Loveland" },
{ title: "Lowell", state: "MA", lng: -71.3183040, lat: 42.6236220, city: "Lowell" },
{ title: "Lower East Side Grand and Clinto", state: "NY", lng: -73.9868770, lat: 40.7162040, city: "New York" },
{ title: "Lower Macungie Twp", state: "PA", lng: -75.5608620, lat: 40.5661870, city: "ALLENTOWN" },
{ title: "Lower Nazareth", state: "PA", lng: -75.2881400, lat: 40.7126820, city: "Easton" },
{ title: "Lubbock", state: "TX", lng: -101.8722990, lat: 33.5280090, city: "Lubbock" },
{ title: "Lubbock West", state: "TX", lng: -101.9532810, lat: 33.5477940, city: "Lubbock" },
{ title: "Lufkin", state: "TX", lng: -94.7200710, lat: 31.3134340, city: "Lufkin" },
{ title: "Lynchburg", state: "VA", lng: -79.1909850, lat: 37.3462110, city: "Lynchburg" },
{ title: "Lynnwood", state: "WA", lng: -122.2665880, lat: 47.8324460, city: "Lynnwood" },
{ title: "Macedonia", state: "OH", lng: -81.5259520, lat: 41.3117870, city: "Northfield" },
{ title: "Machesney Park", state: "IL", lng: -89.0282300, lat: 42.3672020, city: "Machesney Park" },
{ title: "Macomb Twp", state: "MI", lng: -82.9125770, lat: 42.6305810, city: "Macomb" },
{ title: "Madison", state: "AL", lng: -86.7558740, lat: 34.7493130, city: "Madison" },
{ title: "Madison East", state: "WI", lng: -89.3072390, lat: 43.1193660, city: "Madison" },
{ title: "Madison Heights", state: "MI", lng: -83.1085360, lat: 42.5285150, city: "Madison Heights" },
{ title: "Madison Hilldale", state: "WI", lng: -89.4535200, lat: 43.0747850, city: "Madison" },
{ title: "Madison West", state: "WI", lng: -89.5250210, lat: 43.0621400, city: "Madison" },
{ title: "Malvern", state: "PA", lng: -75.5200280, lat: 40.0493650, city: "Malvern" },
{ title: "Manalapan", state: "NJ", lng: -74.3017010, lat: 40.2913580, city: "Manalapan" },
{ title: "Manassas West", state: "VA", lng: -77.5320440, lat: 38.7394410, city: "Manassas" },
{ title: "Manhattan", state: "KS", lng: -96.6053450, lat: 39.1717580, city: "Manhattan" },
{ title: "Manhattan Beach", state: "CA", lng: -118.3948280, lat: 33.8889200, city: "Manhattan Beach" },
{ title: "Manhattan East Village", state: "NY", lng: -73.9801900, lat: 40.7301250, city: "New York" },
{ title: "Manhattan Herald Square", state: "NY", lng: -73.9893090, lat: 40.7502450, city: "New York" },
{ title: "Mankato", state: "MN", lng: -93.9514250, lat: 44.1729240, city: "Mankato" },
{ title: "Mansfield", state: "OH", lng: -82.5942870, lat: 40.7862650, city: "Mansfield" },
{ title: "Mansfield", state: "TX", lng: -97.1444080, lat: 32.5899650, city: "Mansfield" },
{ title: "Manteca", state: "CA", lng: -121.1972830, lat: 37.7950290, city: "Manteca" },
{ title: "Mantua", state: "NJ", lng: -75.1321220, lat: 39.7649850, city: "Sewell" },
{ title: "Maple Grove North", state: "MN", lng: -93.4744290, lat: 45.1362080, city: "Maple Grove" },
{ title: "Marietta East", state: "GA", lng: -84.4296100, lat: 33.9850000, city: "Marietta" },
{ title: "Marin City", state: "CA", lng: -122.5107960, lat: 37.8737770, city: "Sausalito" },
{ title: "Marina", state: "CA", lng: -121.8103830, lat: 36.6671560, city: "Marina" },
{ title: "Marion", state: "IL", lng: -88.9793090, lat: 37.7490390, city: "Marion" },
{ title: "Marlborough", state: "MA", lng: -71.6071590, lat: 42.3594870, city: "Marlborough" },
{ title: "Marlborough East", state: "MA", lng: -71.5049670, lat: 42.3487480, city: "Marlborough" },
{ title: "Marlton", state: "NJ", lng: -74.9226410, lat: 39.8669730, city: "Marlton" },
{ title: "Marquette", state: "MI", lng: -87.4603260, lat: 46.5511760, city: "Marquette" },
{ title: "Marshfield", state: "WI", lng: -90.1630060, lat: 44.6842350, city: "Marshfield" },
{ title: "Martinsburg", state: "WV", lng: -77.9919670, lat: 39.4377450, city: "Martinsburg" },
{ title: "Mary Esther", state: "FL", lng: -86.6588740, lat: 30.4105540, city: "Mary Esther" },
{ title: "Marysville", state: "WA", lng: -122.1920270, lat: 48.1494160, city: "Marysville" },
{ title: "Maryville", state: "TN", lng: -83.9915250, lat: 35.7519720, city: "Maryville" },
{ title: "Mason City", state: "IA", lng: -93.2533690, lat: 43.1497830, city: "Mason City" },
{ title: "Massillon", state: "OH", lng: -81.4969900, lat: 40.8008110, city: "Massillon" },
{ title: "Maui-Kahului", state: "HI", lng: -156.4576000, lat: 20.8732000, city: "Kahului" },
{ title: "Mayfield Heights", state: "OH", lng: -81.4355510, lat: 41.5250920, city: "Mayfield Heights" },
{ title: "Mays Landing", state: "NJ", lng: -74.6335920, lat: 39.4518310, city: "Mays Landing" },
{ title: "McAllen", state: "TX", lng: -98.2130580, lat: 26.1863690, city: "McAllen" },
{ title: "McAllen North", state: "TX", lng: -98.2165530, lat: 26.2684820, city: "Mcallen" },
{ title: "McAllen Northwest", state: "TX", lng: -98.2543670, lat: 26.2445700, city: "McAllen" },
{ title: "McCandless", state: "PA", lng: -80.0421530, lat: 40.5864570, city: "Pittsburgh" },
{ title: "McDonough", state: "GA", lng: -84.2165110, lat: 33.4673900, city: "Mcdonough" },
{ title: "McKinney", state: "TX", lng: -96.6381820, lat: 33.2200950, city: "Mckinney" },
{ title: "McKinney SW", state: "TX", lng: -96.7311760, lat: 33.1290740, city: "McKinney" },
{ title: "Mechanicsburg", state: "PA", lng: -77.0107340, lat: 40.2500510, city: "Mechanicsburg" },
{ title: "Mechanicsville", state: "VA", lng: -77.3507550, lat: 37.6001940, city: "Mechanicsville" },
{ title: "Medallion", state: "TX", lng: -96.7527030, lat: 32.8564080, city: "Dallas" },
{ title: "Medford", state: "NY", lng: -72.9889530, lat: 40.8249590, city: "Medford" },
{ title: "Medford", state: "OR", lng: -122.8781980, lat: 42.3473950, city: "Medford" },
{ title: "Medford MA", state: "MA", lng: -71.0990200, lat: 42.4207200, city: "Medford" },
{ title: "Medina", state: "MN", lng: -93.5295830, lat: 45.0454080, city: "Medina" },
{ title: "Medina", state: "OH", lng: -81.8648330, lat: 41.1551230, city: "Medina" },
{ title: "Melbourne", state: "FL", lng: -80.6659640, lat: 28.0800030, city: "Melbourne Village" },
{ title: "Melrose Park", state: "IL", lng: -87.8439550, lat: 41.9055970, city: "Melrose Park" },
{ title: "Memphis Central", state: "TN", lng: -89.9036200, lat: 35.1131760, city: "Memphis" },
{ title: "Memphis East", state: "TN", lng: -89.8629780, lat: 35.1013570, city: "Memphis" },
{ title: "Memphis NE", state: "TN", lng: -89.7966080, lat: 35.2034640, city: "Memphis" },
{ title: "Menifee", state: "CA", lng: -117.1728370, lat: 33.6801050, city: "Menifee" },
{ title: "Menlo Park", state: "NJ", lng: -74.3326970, lat: 40.5514560, city: "Edison" },
{ title: "Menomonee Falls", state: "WI", lng: -88.1290090, lat: 43.1896420, city: "Menomonee Falls" },
{ title: "Mentor", state: "OH", lng: -81.2930720, lat: 41.6864380, city: "Mentor" },
{ title: "Merced", state: "CA", lng: -120.4855090, lat: 37.3224880, city: "Merced" },
{ title: "Meriden", state: "CT", lng: -72.8154540, lat: 41.5525400, city: "Meriden" },
{ title: "Merrifield", state: "VA", lng: -77.2294340, lat: 38.8725670, city: "Fairfax" },
{ title: "Merritt Island", state: "FL", lng: -80.7046650, lat: 28.3866890, city: "Merritt Island" },
{ title: "Mesa Central", state: "AZ", lng: -111.7859870, lat: 33.3941660, city: "Mesa" },
{ title: "Mesa East", state: "AZ", lng: -111.6834740, lat: 33.3889090, city: "Mesa" },
{ title: "Mesa Red Mountain", state: "AZ", lng: -111.6822750, lat: 33.4539550, city: "Mesa" },
{ title: "Mesa West", state: "AZ", lng: -111.8648690, lat: 33.3921550, city: "Mesa" },
{ title: "Mesquite", state: "TX", lng: -96.6215770, lat: 32.8134610, city: "Mesquite" },
{ title: "Metairie", state: "LA", lng: -90.1841120, lat: 30.0028980, city: "Metairie" },
{ title: "Methuen", state: "MA", lng: -71.1613230, lat: 42.7407840, city: "Methuen" },
{ title: "Miami Central", state: "FL", lng: -80.1936430, lat: 25.8103440, city: "Miami" },
{ title: "Miami Flagler", state: "FL", lng: -80.3597930, lat: 25.7711890, city: "Miami" },
{ title: "Miami Lakes", state: "FL", lng: -80.2911480, lat: 25.9405450, city: "Miami Gardens" },
{ title: "Middle River", state: "MD", lng: -76.4480580, lat: 39.3346980, city: "Middle River" },
{ title: "Middletown", state: "NJ", lng: -74.1354310, lat: 40.4115460, city: "Middletown" },
{ title: "Middletown", state: "NY", lng: -74.3690570, lat: 41.4522840, city: "Middletown" },
{ title: "Middletown", state: "KY", lng: -85.5149870, lat: 38.2460490, city: "Louisville" },
{ title: "Midland", state: "MI", lng: -84.2416620, lat: 43.6583230, city: "Midland" },
{ title: "Midland", state: "TX", lng: -102.1454530, lat: 32.0237960, city: "Midland" },
{ title: "Midwest City", state: "OK", lng: -97.3966340, lat: 35.4371040, city: "Midwest City" },
{ title: "Milford", state: "MA", lng: -71.4988680, lat: 42.1608270, city: "Milford" },
{ title: "Milford", state: "OH", lng: -84.2742560, lat: 39.1625600, city: "Milford" },
{ title: "Milford", state: "CT", lng: -73.0380920, lat: 41.2351740, city: "Milford" },
{ title: "Millbury", state: "MA", lng: -71.7746870, lat: 42.1943950, city: "Millbury" },
{ title: "Milltown", state: "NJ", lng: -74.4258200, lat: 40.4413230, city: "Milltown" },
{ title: "Millville", state: "NJ", lng: -75.0409670, lat: 39.4206730, city: "Millville" },
{ title: "Milton", state: "GA", lng: -84.2692270, lat: 34.0994470, city: "Milton" },
{ title: "Milwaukee Chase", state: "WI", lng: -87.9082100, lat: 42.9920090, city: "Milwaukee" },
{ title: "Minneapolis Dinkytown", state: "MN", lng: -93.2350750, lat: 44.9816160, city: "Minneapolis" },
{ title: "Minneapolis NE", state: "MN", lng: -93.2299320, lat: 45.0048140, city: "Minneapolis" },
{ title: "Minneapolis Uptown", state: "MN", lng: -93.2961790, lat: 44.9487630, city: "Minneapolis" },
{ title: "Minnetonka", state: "MN", lng: -93.5048960, lat: 44.9169090, city: "Minnetonka" },
{ title: "Minot", state: "ND", lng: -101.3133910, lat: 48.2071080, city: "Minot" },
{ title: "Mira Mesa", state: "CA", lng: -117.1463130, lat: 32.9108130, city: "San Diego" },
{ title: "Miramar", state: "FL", lng: -80.3715030, lat: 25.9801090, city: "Miramar" },
{ title: "Mishawaka", state: "IN", lng: -86.1768250, lat: 41.7181270, city: "Granger" },
{ title: "Mission", state: "KS", lng: -94.6653310, lat: 39.0177800, city: "Mission" },
{ title: "Mission", state: "TX", lng: -98.2836690, lat: 26.1972030, city: "Mission" },
{ title: "Mission Hills CA", state: "CA", lng: -118.4666600, lat: 34.2577280, city: "Mission Hills" },
{ title: "Mission Viejo", state: "CA", lng: -117.6888120, lat: 33.6062770, city: "Mission Viejo" },
{ title: "Mission Viejo N", state: "CA", lng: -117.6816180, lat: 33.6233230, city: "Mission Viejo" },
{ title: "Mission Viejo South", state: "CA", lng: -117.6716480, lat: 33.5626150, city: "Mission Viejo" },
{ title: "Missoula", state: "MT", lng: -114.0372360, lat: 46.8876450, city: "Missoula" },
{ title: "Missouri City", state: "TX", lng: -95.5673240, lat: 29.5656280, city: "Missouri City" },
{ title: "Mobile West", state: "AL", lng: -88.2283040, lat: 30.6738820, city: "Mobile" },
{ title: "Modesto", state: "CA", lng: -120.9955830, lat: 37.6871540, city: "Modesto" },
{ title: "Modesto NW", state: "CA", lng: -121.0631210, lat: 37.6938200, city: "Modesto" },
{ title: "Monroe", state: "LA", lng: -92.0706890, lat: 32.4998270, city: "Monroe" },
{ title: "Monroe", state: "NY", lng: -74.1533000, lat: 41.3178510, city: "Monroe" },
{ title: "Monroe", state: "NC", lng: -80.5808660, lat: 35.0199850, city: "Monroe" },
{ title: "Monroeville", state: "PA", lng: -79.7720370, lat: 40.4343760, city: "Monroeville" },
{ title: "Montclair", state: "CA", lng: -117.6905440, lat: 34.0898340, city: "Montclair" },
{ title: "Montgomery", state: "AL", lng: -86.1606700, lat: 32.3603050, city: "Montgomery" },
{ title: "Montgomeryville", state: "PA", lng: -75.2395730, lat: 40.2244260, city: "North Wales" },
{ title: "Monticello", state: "MN", lng: -93.7728110, lat: 45.2934750, city: "Monticello" },
{ title: "Montrose", state: "CO", lng: -107.8685500, lat: 38.4437560, city: "Montrose" },
{ title: "Moore", state: "OK", lng: -97.5002500, lat: 35.3180580, city: "Moore" },
{ title: "Mooresville", state: "NC", lng: -80.8710480, lat: 35.5979940, city: "Mooresville" },
{ title: "Moorhead", state: "MN", lng: -96.7283110, lat: 46.8757020, city: "Moorhead" },
{ title: "Moorpark", state: "CA", lng: -118.8677550, lat: 34.2787570, city: "Moorpark" },
{ title: "Moreno Valley East", state: "CA", lng: -117.1891160, lat: 33.9376580, city: "Moreno Valley" },
{ title: "Morgan Hill", state: "CA", lng: -121.6537670, lat: 37.1575920, city: "Morgan Hill" },
{ title: "Morgantown", state: "WV", lng: -80.0009960, lat: 39.6494320, city: "Morgantown" },
{ title: "Morrisville", state: "NC", lng: -78.8161330, lat: 35.8054020, city: "Morrisville" },
{ title: "Mount Laurel", state: "NJ", lng: -74.9144330, lat: 39.9683990, city: "Mount Laurel" },
{ title: "Mount Nebo", state: "PA", lng: -80.0677720, lat: 40.5354630, city: "Pittsburgh" },
{ title: "Mountain View", state: "CA", lng: -122.1063210, lat: 37.4011650, city: "Mountain View" },
{ title: "Mpls Nicollet Mall", state: "MN", lng: -93.2741040, lat: 44.9750170, city: "Minneapolis" },
{ title: "Mt Dora", state: "FL", lng: -81.6677150, lat: 28.8196230, city: "Mount Dora" },
{ title: "Mt Juliet", state: "TN", lng: -86.5083740, lat: 36.1685080, city: "Mount Juliet" },
{ title: "Mt Kisco", state: "NY", lng: -73.7227460, lat: 41.2161970, city: "Mount Kisco" },
{ title: "Mt Pleasant", state: "SC", lng: -79.8178200, lat: 32.8243430, city: "Mount Pleasant" },
{ title: "Mt Pleasant", state: "MI", lng: -84.7659320, lat: 43.5765010, city: "Mount Pleasant" },
{ title: "Mt Vernon", state: "NY", lng: -73.8178400, lat: 40.9009660, city: "Mount Vernon" },
{ title: "Muhlenberg Township", state: "PA", lng: -75.9288690, lat: 40.3972930, city: "Temple" },
{ title: "Muncie", state: "IN", lng: -85.3807710, lat: 40.2218350, city: "Muncie" },
{ title: "Mundelein", state: "IL", lng: -88.0447370, lat: 42.2838810, city: "Mundelein" },
{ title: "Munster", state: "IN", lng: -87.5072840, lat: 41.5671140, city: "Munster" },
{ title: "Murfreesboro", state: "TN", lng: -86.4262920, lat: 35.8439210, city: "Murfreesboro" },
{ title: "Murrieta", state: "CA", lng: -117.2039080, lat: 33.5656420, city: "Murrieta" },
{ title: "Murrieta North", state: "CA", lng: -117.1735960, lat: 33.6038880, city: "Murrieta" },
{ title: "Myrtle Beach", state: "SC", lng: -78.8935790, lat: 33.7134410, city: "Myrtle Beach" },
{ title: "Myrtle Beach SO", state: "SC", lng: -78.9804900, lat: 33.6539350, city: "Myrtle Beach" },
{ title: "N Las Vegas Deer SP", state: "NV", lng: -115.1330950, lat: 36.2886690, city: "North Las Vegas" },
{ title: "NE Charlotte", state: "NC", lng: -80.7453140, lat: 35.2931920, city: "Charlotte" },
{ title: "NE Polk County", state: "FL", lng: -81.6439130, lat: 28.2328190, city: "Davenport" },
{ title: "Nampa", state: "ID", lng: -116.5894540, lat: 43.6101620, city: "Nampa" },
{ title: "Napa", state: "CA", lng: -122.2770020, lat: 38.2827340, city: "Napa" },
{ title: "Napa North", state: "CA", lng: -122.3076270, lat: 38.3224610, city: "Napa" },
{ title: "Naperville", state: "IL", lng: -88.2037840, lat: 41.7716080, city: "Naperville" },
{ title: "Naples", state: "FL", lng: -81.7706810, lat: 26.2091390, city: "Naples" },
{ title: "Naples North", state: "FL", lng: -81.7404670, lat: 26.2706880, city: "Naples" },
{ title: "Nashua", state: "NH", lng: -71.4377910, lat: 42.7027710, city: "Nashua" },
{ title: "Nashua NW", state: "NH", lng: -71.5367900, lat: 42.7989900, city: "Nashua" },
{ title: "Nashville East", state: "TN", lng: -86.6379070, lat: 36.1826250, city: "Nashville" },
{ title: "Nashville West", state: "TN", lng: -86.8913630, lat: 36.1351030, city: "Nashville" },
{ title: "Natl Cty Pl Bonita", state: "CA", lng: -117.0648900, lat: 32.6545000, city: "National City" },
{ title: "Neshaminy", state: "PA", lng: -74.9616050, lat: 40.1357180, city: "Bensalem" },
{ title: "New Albany", state: "IN", lng: -85.8416320, lat: 38.3055070, city: "New Albany" },
{ title: "New Berlin", state: "WI", lng: -88.1068970, lat: 42.9580730, city: "New Berlin" },
{ title: "New Bern", state: "NC", lng: -77.0967600, lat: 35.1014640, city: "New Bern" },
{ title: "New Braunfels", state: "TX", lng: -98.0734440, lat: 29.7308900, city: "New Braunfels" },
{ title: "New Britain", state: "CT", lng: -72.7638620, lat: 41.7106260, city: "New Britain" },
{ title: "New Hartford", state: "NY", lng: -75.3151580, lat: 43.0836460, city: "New Hartford" },
{ title: "New Lenox", state: "IL", lng: -87.9206310, lat: 41.5071970, city: "New Lenox" },
{ title: "New Tampa", state: "FL", lng: -82.3555700, lat: 28.1728330, city: "Wesley Chapel" },
{ title: "Newburgh", state: "NY", lng: -74.0582120, lat: 41.5052950, city: "Newburgh" },
{ title: "Newington", state: "CT", lng: -72.7256730, lat: 41.6605720, city: "Newington" },
{ title: "Newnan", state: "GA", lng: -84.7588750, lat: 33.3929070, city: "Newnan" },
{ title: "Newport", state: "KY", lng: -84.4775030, lat: 39.0887460, city: "Newport" },
{ title: "Newport News", state: "VA", lng: -76.4922720, lat: 37.1078270, city: "Newport News" },
{ title: "Niagara Falls", state: "NY", lng: -78.9798330, lat: 43.0897640, city: "Niagara Falls" },
{ title: "Niles", state: "OH", lng: -80.7525960, lat: 41.2165280, city: "Niles" },
{ title: "Niles", state: "IL", lng: -87.7805100, lat: 42.0125310, city: "Niles" },
{ title: "Niskayuna", state: "NY", lng: -73.8900720, lat: 42.7757130, city: "Schenectady" },
{ title: "Nora Plaza", state: "IN", lng: -86.1386970, lat: 39.9149090, city: "Indianapolis" },
{ title: "Norco", state: "CA", lng: -117.5643530, lat: 33.9007560, city: "Norco" },
{ title: "Norfolk", state: "VA", lng: -76.2122980, lat: 36.8652700, city: "Norfolk" },
{ title: "Norfolk", state: "NE", lng: -97.4305130, lat: 42.0202730, city: "Norfolk" },
{ title: "Norman", state: "OK", lng: -97.4827090, lat: 35.2360430, city: "Norman" },
{ title: "Norridge", state: "IL", lng: -87.8084150, lat: 41.9537930, city: "Norridge" },
{ title: "North Attleborough", state: "MA", lng: -71.3519310, lat: 41.9403440, city: "North Attleboro" },
{ title: "North Aurora", state: "IL", lng: -88.3646320, lat: 41.7975760, city: "North Aurora" },
{ title: "North Bergen Commons", state: "NJ", lng: -74.0214240, lat: 40.8017440, city: "North Bergen" },
{ title: "North Brunswick", state: "NJ", lng: -74.5048290, lat: 40.4358190, city: "North Brunswick" },
{ title: "North Buffalo", state: "NY", lng: -78.8737570, lat: 42.9558020, city: "Buffalo" },
{ title: "North Charleston", state: "SC", lng: -80.0362320, lat: 32.9355080, city: "North Charleston" },
{ title: "North Dale Mabry", state: "FL", lng: -82.5049730, lat: 28.0886130, city: "Tampa" },
{ title: "North Dallas", state: "TX", lng: -96.8130820, lat: 32.9277800, city: "Dallas" },
{ title: "North Dallas Coit Road", state: "TX", lng: -96.7695790, lat: 32.9830520, city: "Dallas" },
{ title: "North Dartmouth", state: "MA", lng: -71.0032680, lat: 41.6372900, city: "North Dartmouth" },
{ title: "North Druid Hills", state: "GA", lng: -84.3254780, lat: 33.8282470, city: "Atlanta" },
{ title: "North Fayette", state: "PA", lng: -80.1832840, lat: 40.4457630, city: "Pittsburgh" },
{ title: "North Haven", state: "CT", lng: -72.8716730, lat: 41.3509490, city: "North Haven" },
{ title: "North Hollywood", state: "CA", lng: -118.3716450, lat: 34.1881600, city: "North Hollywood" },
{ title: "North Huntingdon", state: "PA", lng: -79.6883420, lat: 40.3208430, city: "North Huntingdon" },
{ title: "North Jackson", state: "MS", lng: -90.1478170, lat: 32.3985600, city: "Jackson" },
{ title: "North Miami", state: "FL", lng: -80.1567270, lat: 25.9068860, city: "North Miami Beach" },
{ title: "North Olmsted", state: "OH", lng: -81.8953780, lat: 41.4203710, city: "North Olmsted" },
{ title: "North Richland Hills", state: "TX", lng: -97.1876520, lat: 32.9081850, city: "North Richland Hills" },
{ title: "North Sarasota", state: "FL", lng: -82.4622200, lat: 27.3366170, city: "Sarasota" },
{ title: "North Scottsdale", state: "AZ", lng: -111.8882930, lat: 33.6272920, city: "Scottsdale" },
{ title: "North Spokane", state: "WA", lng: -117.4002590, lat: 47.7475730, city: "Spokane" },
{ title: "North St Paul", state: "MN", lng: -93.0090680, lat: 45.0137670, city: "North Saint Paul" },
{ title: "North Tacoma", state: "WA", lng: -122.4799430, lat: 47.2372130, city: "Tacoma" },
{ title: "Northfield", state: "MN", lng: -93.1863780, lat: 44.4336500, city: "Northfield" },
{ title: "Northgate", state: "WA", lng: -122.3250120, lat: 47.7089700, city: "Seattle" },
{ title: "Northlake", state: "GA", lng: -84.2459880, lat: 33.8451170, city: "Tucker" },
{ title: "Northridge", state: "CA", lng: -118.5608080, lat: 34.2308020, city: "Northridge" },
{ title: "Northtown", state: "MN", lng: -93.2687460, lat: 45.1268210, city: "Coon Rapids" },
{ title: "Norton Shores", state: "MI", lng: -86.2085620, lat: 43.1603740, city: "Muskegon" },
{ title: "Norwalk", state: "CA", lng: -118.1070450, lat: 33.9251340, city: "Norwalk" },
{ title: "Norwalk East", state: "CA", lng: -118.0761300, lat: 33.9179620, city: "Norwalk" },
{ title: "Novato", state: "CA", lng: -122.5531390, lat: 38.0897480, city: "Novato" },
{ title: "Novi", state: "MI", lng: -83.5336620, lat: 42.4883560, city: "Novi" },
{ title: "O'Fallon", state: "MO", lng: -90.6966660, lat: 38.7775480, city: "O Fallon" },
{ title: "Oahu Honolulu Ala Moana", state: "HI", lng: -157.8420550, lat: 21.2923510, city: "Honolulu" },
{ title: "Oahu-Honolulu West", state: "HI", lng: -157.9287510, lat: 21.3557020, city: "Honolulu" },
{ title: "Oahu-Kailua", state: "HI", lng: -157.7394160, lat: 21.3914290, city: "Kailua" },
{ title: "Oahu-Kapolei", state: "HI", lng: -158.0928220, lat: 21.3315780, city: "Kapolei" },
{ title: "Oak Creek", state: "WI", lng: -87.9156530, lat: 42.8827660, city: "Oak Creek" },
{ title: "Oak Lawn", state: "IL", lng: -87.7249640, lat: 41.7209970, city: "Oak Lawn" },
{ title: "OakPark", state: "IL", lng: -87.8038480, lat: 41.8880680, city: "Oak Park" },
{ title: "Oakdale", state: "MN", lng: -92.9459560, lat: 44.9968990, city: "Oakdale" },
{ title: "Oakland-Emeryville", state: "CA", lng: -122.2891270, lat: 37.8283340, city: "Emeryville" },
{ title: "Ocala", state: "FL", lng: -82.1569120, lat: 29.1737590, city: "Ocala" },
{ title: "Ocean Township", state: "NJ", lng: -74.0444850, lat: 40.2309280, city: "Ocean" },
{ title: "Oceanside", state: "CA", lng: -117.3296970, lat: 33.1840260, city: "Oceanside" },
{ title: "Oceanside East", state: "CA", lng: -117.2932280, lat: 33.2470390, city: "Oceanside" },
{ title: "Odessa", state: "TX", lng: -102.3478200, lat: 31.8919400, city: "Odessa" },
{ title: "Oklahoma City NW", state: "OK", lng: -97.6400950, lat: 35.5560310, city: "Oklahoma City" },
{ title: "Oklahoma City North", state: "OK", lng: -97.5644170, lat: 35.5244080, city: "Oklahoma City" },
{ title: "Olathe", state: "KS", lng: -94.7644080, lat: 38.9106860, city: "Olathe" },
{ title: "Olathe South", state: "KS", lng: -94.8199410, lat: 38.8489480, city: "Olathe" },
{ title: "Olive Branch West", state: "MS", lng: -89.8986930, lat: 34.9649280, city: "Olive Branch" },
{ title: "Olympia", state: "WA", lng: -122.9373680, lat: 47.0446270, city: "Olympia" },
{ title: "Omaha", state: "NE", lng: -96.0253860, lat: 41.2608720, city: "Omaha" },
{ title: "Omaha Far NW", state: "NE", lng: -96.1793890, lat: 41.2896850, city: "Omaha" },
{ title: "Omaha Far SW", state: "NE", lng: -96.1086910, lat: 41.2142970, city: "Omaha" },
{ title: "Omaha NW", state: "NE", lng: -96.1167940, lat: 41.2944290, city: "Omaha" },
{ title: "Omaha North", state: "NE", lng: -96.0269130, lat: 41.3187450, city: "Omaha" },
{ title: "Omaha West", state: "NE", lng: -96.1939360, lat: 41.2359670, city: "Omaha" },
{ title: "Ontario", state: "CA", lng: -117.5617780, lat: 34.0758000, city: "Ontario" },
{ title: "Opelika", state: "AL", lng: -85.4106360, lat: 32.6181080, city: "Opelika" },
{ title: "Orange", state: "CT", lng: -72.9875150, lat: 41.2802780, city: "Orange" },
{ title: "Orange", state: "CA", lng: -117.8349970, lat: 33.8243840, city: "Orange" },
{ title: "Orange City", state: "FL", lng: -81.2927100, lat: 28.9158390, city: "Orange City" },
{ title: "Orange Show", state: "CA", lng: -117.2918440, lat: 34.0787160, city: "San Bernardino" },
{ title: "Orchard Park", state: "NY", lng: -78.7837260, lat: 42.7920840, city: "Orchard Park" },
{ title: "Orem State Street", state: "UT", lng: -111.6992390, lat: 40.2959000, city: "Orem" },
{ title: "Orland Park", state: "IL", lng: -87.8506490, lat: 41.6032970, city: "Orland Park" },
{ title: "Orlando - Sodo", state: "FL", lng: -81.3794690, lat: 28.5158460, city: "Orlando" },
{ title: "Orlando Millenia", state: "FL", lng: -81.4301650, lat: 28.4929320, city: "Orlando" },
{ title: "Orlando SW", state: "FL", lng: -81.6142190, lat: 28.3441670, city: "Kissimmee" },
{ title: "Orlando South", state: "FL", lng: -81.3906540, lat: 28.4493460, city: "Orlando" },
{ title: "Oro Valley", state: "AZ", lng: -110.9594460, lat: 32.3991580, city: "Oro Valley" },
{ title: "Ortega", state: "FL", lng: -81.6951840, lat: 30.2349980, city: "Jacksonville" },
{ title: "Osage Beach", state: "MO", lng: -92.6042640, lat: 38.1618050, city: "Osage Beach" },
{ title: "Oshkosh", state: "WI", lng: -88.5776380, lat: 43.9984280, city: "Oshkosh" },
{ title: "Oswego", state: "IL", lng: -88.3160210, lat: 41.6969600, city: "Oswego" },
{ title: "Otsego", state: "MN", lng: -93.5634920, lat: 45.2782320, city: "Otsego" },
{ title: "Overland Park", state: "KS", lng: -94.6746590, lat: 38.9081990, city: "Overland Park" },
{ title: "Overland Park South", state: "KS", lng: -94.6819940, lat: 38.8536690, city: "Overland Park" },
{ title: "Overland Park West", state: "KS", lng: -94.7188610, lat: 38.9503860, city: "Overland Park" },
{ title: "Oviedo", state: "FL", lng: -81.2356330, lat: 28.6579270, city: "Oviedo" },
{ title: "Owasso", state: "OK", lng: -95.8439560, lat: 36.2896400, city: "Owasso" },
{ title: "Owatonna", state: "MN", lng: -93.2490080, lat: 44.0865770, city: "Owatonna" },
{ title: "Owensboro", state: "KY", lng: -87.1226150, lat: 37.7174880, city: "Owensboro" },
{ title: "Owings Mills", state: "MD", lng: -76.7992030, lat: 39.4334050, city: "Owings Mills" },
{ title: "Oxford", state: "AL", lng: -85.7831820, lat: 33.6088250, city: "Oxford" },
{ title: "Oxford Valley", state: "PA", lng: -74.8784320, lat: 40.1765020, city: "Langhorne" },
{ title: "Oxnard West", state: "CA", lng: -119.1780120, lat: 34.2423890, city: "Oxnard" },
{ title: "Pace", state: "FL", lng: -87.1262740, lat: 30.6011740, city: "Pace" },
{ title: "Pacoima", state: "CA", lng: -118.4192690, lat: 34.2457350, city: "Pacoima" },
{ title: "Palatine", state: "IL", lng: -88.0274200, lat: 42.1375140, city: "Palatine" },
{ title: "Palm Coast", state: "FL", lng: -81.2184320, lat: 29.4772030, city: "Palm Coast" },
{ title: "Palm Desert", state: "CA", lng: -116.4034270, lat: 33.7243270, city: "Palm Desert" },
{ title: "Palm Springs", state: "CA", lng: -116.4814560, lat: 33.7895520, city: "Cathedral City" },
{ title: "Palmdale", state: "CA", lng: -118.1467340, lat: 34.5993590, city: "Palmdale" },
{ title: "Palmdale East", state: "CA", lng: -118.0478390, lat: 34.5743550, city: "Palmdale" },
{ title: "Panama City", state: "FL", lng: -85.6491570, lat: 30.1912300, city: "Panama City" },
{ title: "Papillion", state: "NE", lng: -96.0446830, lat: 41.1655320, city: "Papillion" },
{ title: "Paradise Valley", state: "AZ", lng: -111.9892390, lat: 33.6004070, city: "Phoenix" },
{ title: "Paramus", state: "NJ", lng: -74.0611340, lat: 40.9158760, city: "Paramus" },
{ title: "Park & Tyrone", state: "FL", lng: -82.7557640, lat: 27.8127010, city: "Saint Petersburg" },
{ title: "Park North", state: "TX", lng: -98.5044880, lat: 29.5170560, city: "San Antonio" },
{ title: "Parker", state: "CO", lng: -104.7717910, lat: 39.5130870, city: "Parker" },
{ title: "Parma", state: "OH", lng: -81.7355800, lat: 41.3776240, city: "Parma" },
{ title: "Parsippany", state: "NJ", lng: -74.3880870, lat: 40.8617400, city: "Parsippany" },
{ title: "Pasadena", state: "TX", lng: -95.1524970, lat: 29.6522500, city: "Pasadena" },
{ title: "Pasadena", state: "CA", lng: -118.1347380, lat: 34.1467690, city: "Pasadena" },
{ title: "Pasadena East", state: "CA", lng: -118.0857510, lat: 34.1470970, city: "Pasadena" },
{ title: "Paso Robles", state: "CA", lng: -120.6984240, lat: 35.5841980, city: "Paso Robles" },
{ title: "Peachtree City", state: "GA", lng: -84.5901460, lat: 33.4368650, city: "Peachtree City" },
{ title: "Peachtree Corners", state: "GA", lng: -84.2322820, lat: 33.9514310, city: "Peachtree Corners" },
{ title: "Pearland", state: "TX", lng: -95.3840250, lat: 29.5533370, city: "Pearland" },
{ title: "Pembroke Pines", state: "FL", lng: -80.2994590, lat: 26.0090870, city: "Pembroke Pines" },
{ title: "Penfield", state: "NY", lng: -77.4431960, lat: 43.1283910, city: "Fairport" },
{ title: "Pensacola", state: "FL", lng: -87.2085930, lat: 30.4689920, city: "Pensacola" },
{ title: "Pensacola NE", state: "FL", lng: -87.2238280, lat: 30.5300820, city: "Pensacola" },
{ title: "Pensacola West", state: "FL", lng: -87.3580860, lat: 30.3631620, city: "Pensacola" },
{ title: "Peoria", state: "IL", lng: -89.6352330, lat: 40.7482760, city: "Peoria" },
{ title: "Peoria Far North", state: "AZ", lng: -112.2753200, lat: 33.7094730, city: "Peoria" },
{ title: "Peoria North", state: "AZ", lng: -112.2285400, lat: 33.6362070, city: "Peoria" },
{ title: "Peoria SW", state: "AZ", lng: -112.2597870, lat: 33.5541790, city: "Glendale" },
{ title: "Peru", state: "IL", lng: -89.1288160, lat: 41.3619110, city: "Peru" },
{ title: "Petaluma", state: "CA", lng: -122.6264020, lat: 38.2446540, city: "Petaluma" },
{ title: "Pflugerville", state: "TX", lng: -97.5981240, lat: 30.4673710, city: "Pflugerville" },
{ title: "Phila Broad and Washington", state: "PA", lng: -75.1671760, lat: 39.9383490, city: "Philadelphia" },
{ title: "Phila Northern Liberties", state: "PA", lng: -75.1478460, lat: 39.9598080, city: "Philadelphia" },
{ title: "Phila Roxborough", state: "PA", lng: -75.2327310, lat: 40.0444290, city: "Philadelphia" },
{ title: "Phila-Art Museum PA", state: "PA", lng: -75.1726930, lat: 39.9616300, city: "Philadelphia" },
{ title: "Phila-Bridesburg", state: "PA", lng: -75.0897450, lat: 39.9912150, city: "Philadelphia" },
{ title: "Phila-Cottman", state: "PA", lng: -75.0586310, lat: 40.0513330, city: "Philadelphia" },
{ title: "Phila-Rittenhouse Square N", state: "PA", lng: -75.1720600, lat: 39.9517900, city: "Philadelphia" },
{ title: "Phila-Washington Square W", state: "PA", lng: -75.1598170, lat: 39.9502750, city: "Philadelphia" },
{ title: "Philadelphia NE", state: "PA", lng: -75.0108450, lat: 40.1018820, city: "Philadelphia" },
{ title: "Philadelphia SE", state: "PA", lng: -75.1458990, lat: 39.9237720, city: "Philadelphia" },
{ title: "Philadelphia West", state: "PA", lng: -75.2121450, lat: 40.0060860, city: "Philadelphia" },
{ title: "Phoenix NE", state: "AZ", lng: -111.9745850, lat: 33.6748840, city: "Phoenix" },
{ title: "Phoenix North Central", state: "AZ", lng: -112.1195770, lat: 33.6667610, city: "Phoenix" },
{ title: "Phoenix SW", state: "AZ", lng: -112.2693810, lat: 33.4230590, city: "Tolleson" },
{ title: "Phoenix Spectrum", state: "AZ", lng: -112.0967980, lat: 33.5207690, city: "Phoenix" },
{ title: "Phoenix Uptown Camelback", state: "AZ", lng: -112.0464620, lat: 33.5075220, city: "Phoenix" },
{ title: "Pico Rivera", state: "CA", lng: -118.0859990, lat: 34.0011250, city: "Pico Rivera" },
{ title: "Pier Park", state: "FL", lng: -85.8686860, lat: 30.2197810, city: "Panama City Beach" },
{ title: "Pikesville", state: "MD", lng: -76.7314600, lat: 39.3847430, city: "Pikesville" },
{ title: "Pinellas Park", state: "FL", lng: -82.6846960, lat: 27.8368420, city: "Pinellas Park" },
{ title: "Pineville", state: "NC", lng: -80.8789910, lat: 35.1078030, city: "Charlotte" },
{ title: "Pinole", state: "CA", lng: -122.3098470, lat: 37.9876000, city: "Pinole" },
{ title: "Pittsburg", state: "CA", lng: -121.8406240, lat: 38.0077040, city: "Pittsburg" },
{ title: "Plainfield", state: "IL", lng: -88.2055910, lat: 41.6497330, city: "Plainfield" },
{ title: "Plainfield", state: "IN", lng: -86.3551330, lat: 39.7164570, city: "Plainfield" },
{ title: "Plainville", state: "MA", lng: -71.3105810, lat: 42.0337140, city: "Plainville" },
{ title: "Plano", state: "TX", lng: -96.7082500, lat: 33.0374040, city: "Plano" },
{ title: "Plano West", state: "TX", lng: -96.8269520, lat: 33.0303360, city: "Plano" },
{ title: "Plantation", state: "FL", lng: -80.2581570, lat: 26.1182080, city: "Plantation" },
{ title: "Plattsburgh", state: "NY", lng: -73.4918750, lat: 44.7023380, city: "Plattsburgh" },
{ title: "Pleasant Hill", state: "CA", lng: -122.0667560, lat: 37.9773610, city: "Pleasant Hill" },
{ title: "Pleasant Prairie", state: "WI", lng: -87.9284000, lat: 42.5644100, city: "Pleasant Prairie" },
{ title: "Plymouth", state: "MN", lng: -93.4508010, lat: 45.0314240, city: "Plymouth" },
{ title: "Plymouth Meeting", state: "PA", lng: -75.2960820, lat: 40.1048590, city: "Plymouth Meeting" },
{ title: "Polaris", state: "OH", lng: -82.9791600, lat: 40.1388040, city: "Columbus" },
{ title: "Pomona", state: "CA", lng: -117.7565440, lat: 34.0346370, city: "Pomona" },
{ title: "Port Arthur", state: "TX", lng: -93.9889950, lat: 29.9457020, city: "Port Arthur" },
{ title: "Port Charlotte", state: "FL", lng: -82.1427290, lat: 27.0134970, city: "Port Charlotte" },
{ title: "Port Huron", state: "MI", lng: -82.4533530, lat: 43.0342550, city: "Fort Gratiot" },
{ title: "Port Orange", state: "FL", lng: -81.0280670, lat: 29.1104130, city: "Port Orange" },
{ title: "Port St Lucie", state: "FL", lng: -80.4270470, lat: 27.2699400, city: "Port Saint Lucie" },
{ title: "Port Washington North", state: "NY", lng: -73.7044590, lat: 40.8412030, city: "Port Washington" },
{ title: "Portage", state: "MI", lng: -85.5880100, lat: 42.2185300, city: "Portage" },
{ title: "Porterville", state: "CA", lng: -119.0467140, lat: 36.0786630, city: "Porterville" },
{ title: "Portland East", state: "OR", lng: -122.5623510, lat: 45.5160170, city: "Portland" },
{ title: "Portland Galleria", state: "OR", lng: -122.6818480, lat: 45.5201510, city: "Portland" },
{ title: "Portland NE", state: "OR", lng: -122.5648230, lat: 45.5765900, city: "Portland" },
{ title: "Portland NW", state: "OR", lng: -122.6823610, lat: 45.6129670, city: "Portland" },
{ title: "Portland Powell", state: "OR", lng: -122.6340970, lat: 45.4974950, city: "Portland" },
{ title: "Potomac Mills", state: "VA", lng: -77.2887860, lat: 38.6544760, city: "Woodbridge" },
{ title: "Poughkeepsie", state: "NY", lng: -73.9192750, lat: 41.6262160, city: "Poughkeepsie" },
{ title: "Poway", state: "CA", lng: -117.0608660, lat: 32.9805820, city: "Poway" },
{ title: "Powell", state: "OH", lng: -83.0949070, lat: 40.1431170, city: "Powell" },
{ title: "Prattville", state: "AL", lng: -86.3955080, lat: 32.4575570, city: "Prattville" },
{ title: "Prescott", state: "AZ", lng: -112.4317740, lat: 34.5496100, city: "Prescott" },
{ title: "Prince Georges Plaza", state: "MD", lng: -76.9554530, lat: 38.9680750, city: "Hyattsville" },
{ title: "Princeton", state: "NJ", lng: -74.6770470, lat: 40.3061360, city: "Princeton" },
{ title: "Provo State St and Bulldog Blvd ", state: "UT", lng: -111.6663490, lat: 40.2516130, city: "Provo" },
{ title: "Pueblo", state: "CO", lng: -104.6060760, lat: 38.3031640, city: "Pueblo" },
{ title: "Puente Hills", state: "CA", lng: -117.9190520, lat: 33.9917680, city: "Rowland Heights" },
{ title: "Puyallup", state: "WA", lng: -122.2951640, lat: 47.1593450, city: "Puyallup" },
{ title: "Puyallup South", state: "WA", lng: -122.2922140, lat: 47.1134560, city: "Puyallup" },
{ title: "Quail Springs", state: "OK", lng: -97.5474330, lat: 35.6128820, city: "Oklahoma City" },
{ title: "Queen Creek", state: "AZ", lng: -111.6416320, lat: 33.2544190, city: "Queen Creek" },
{ title: "Queens Place", state: "NY", lng: -73.8749130, lat: 40.7353310, city: "Elmhurst" },
{ title: "Queensbury", state: "NY", lng: -73.6785410, lat: 43.3278930, city: "Queensbury" },
{ title: "Racine", state: "WI", lng: -87.8437160, lat: 42.6988950, city: "Racine" },
{ title: "Raleigh Central", state: "NC", lng: -78.6426120, lat: 35.8362910, city: "Raleigh" },
{ title: "Raleigh Hwy 70", state: "NC", lng: -78.7194680, lat: 35.8704720, city: "Raleigh" },
{ title: "Raleigh NC State Hillsborough St", state: "NC", lng: -78.6687870, lat: 35.7882060, city: "Raleigh" },
{ title: "Raleigh NE", state: "NC", lng: -78.5679830, lat: 35.8658490, city: "Raleigh" },
{ title: "Raleigh NW", state: "NC", lng: -78.7858340, lat: 35.9028540, city: "Raleigh" },
{ title: "Rancho California", state: "CA", lng: -117.1463520, lat: 33.5062950, city: "Temecula" },
{ title: "Rancho Cordova", state: "CA", lng: -121.2856800, lat: 38.5960530, city: "Rancho Cordova" },
{ title: "Rancho Cucamonga", state: "CA", lng: -117.5738990, lat: 34.1082290, city: "Rancho Cucamonga" },
{ title: "Rancho San Diego", state: "CA", lng: -116.9385300, lat: 32.7387950, city: "El Cajon" },
{ title: "Rancho Santa Margarita", state: "CA", lng: -117.5975870, lat: 33.6418380, city: "Rancho Santa Margarita" },
{ title: "Rapid City", state: "SD", lng: -103.1884430, lat: 44.0987210, city: "Rapid City" },
{ title: "Red Wing", state: "MN", lng: -92.5825460, lat: 44.5687430, city: "Red Wing" },
{ title: "Redding", state: "CA", lng: -122.3487200, lat: 40.5868170, city: "Redding" },
{ title: "Redlands", state: "CA", lng: -117.2069070, lat: 34.0719160, city: "Redlands" },
{ title: "Redmond", state: "WA", lng: -122.1040250, lat: 47.6724240, city: "Redmond" },
{ title: "Redondo Beach", state: "CA", lng: -118.3570510, lat: 33.8693080, city: "Redondo Beach" },
{ title: "Redwood City", state: "CA", lng: -122.2176830, lat: 37.4751460, city: "Redwood City" },
{ title: "Regency", state: "FL", lng: -81.5485580, lat: 30.3289250, city: "Jacksonville" },
{ title: "Reno South", state: "NV", lng: -119.7809640, lat: 39.4635310, city: "Reno" },
{ title: "Renton", state: "WA", lng: -122.2003990, lat: 47.4967720, city: "Renton" },
{ title: "Reston", state: "VA", lng: -77.3699270, lat: 38.9547100, city: "Reston" },
{ title: "Revere", state: "MA", lng: -71.0003260, lat: 42.3997600, city: "Revere" },
{ title: "Reynoldsburg", state: "OH", lng: -82.7927940, lat: 39.9345780, city: "Reynoldsburg" },
{ title: "Richardson Sq Mall", state: "TX", lng: -96.6972990, lat: 32.9404040, city: "Richardson" },
{ title: "Richfield", state: "MN", lng: -93.2494020, lat: 44.8854840, city: "Richfield" },
{ title: "Richland", state: "WA", lng: -119.3132940, lat: 46.2583910, city: "Richland" },
{ title: "Richland Twp", state: "PA", lng: -75.3727370, lat: 40.4591240, city: "Quakertown" },
{ title: "Richland Twp North", state: "PA", lng: -79.9413130, lat: 40.6423370, city: "Gibsonia" },
{ title: "Richmond", state: "CA", lng: -122.3282070, lat: 37.9319960, city: "Richmond" },
{ title: "Richmond Brandermill", state: "VA", lng: -77.6341800, lat: 37.4208870, city: "Midlothian" },
{ title: "Richmond Central", state: "VA", lng: -77.5007960, lat: 37.5869190, city: "Richmond" },
{ title: "Richmond East", state: "VA", lng: -77.3561100, lat: 37.5309640, city: "Richmond" },
{ title: "Richmond Far West", state: "VA", lng: -77.6927380, lat: 37.5117800, city: "Midlothian" },
{ title: "Richmond Grand Pkwy SW", state: "TX", lng: -95.7107700, lat: 29.6582140, city: "Richmond" },
{ title: "Richmond NW", state: "VA", lng: -77.6053430, lat: 37.6519200, city: "Glen Allen" },
{ title: "Richmond Near NW", state: "VA", lng: -77.5113540, lat: 37.6390080, city: "Henrico" },
{ title: "Richmond West", state: "VA", lng: -77.6051040, lat: 37.5040460, city: "Richmond" },
{ title: "Ridgedale", state: "MN", lng: -93.4474110, lat: 44.9701570, city: "Minnetonka" },
{ title: "Ridgmar", state: "TX", lng: -97.4320390, lat: 32.7489900, city: "Fort Worth" },
{ title: "Rio Rancho", state: "NM", lng: -106.6513900, lat: 35.2524250, city: "Rio Rancho" },
{ title: "Riverbank", state: "CA", lng: -120.9532820, lat: 37.7133580, city: "Riverbank" },
{ title: "Riverdale", state: "UT", lng: -112.0062350, lat: 41.1736120, city: "Riverdale" },
{ title: "Riverdale Rt 23 and Falston", state: "NJ", lng: -74.3258360, lat: 40.9897610, city: "Riverdale" },
{ title: "Rivergate", state: "TN", lng: -86.6945940, lat: 36.3041980, city: "Madison" },
{ title: "Riverhead", state: "NY", lng: -72.6793590, lat: 40.9331020, city: "Riverhead" },
{ title: "Riverside", state: "CA", lng: -117.4596270, lat: 33.9069120, city: "Riverside" },
{ title: "Riverside Arlington", state: "CA", lng: -117.3824330, lat: 33.9473880, city: "Riverside" },
{ title: "Riverside SE", state: "CA", lng: -117.2817400, lat: 33.9389160, city: "Riverside" },
{ title: "Riverwood", state: "GA", lng: -84.1883540, lat: 34.0146190, city: "Duluth" },
{ title: "Roanoke", state: "VA", lng: -79.9586030, lat: 37.2996740, city: "Roanoke" },
{ title: "Rochester", state: "MN", lng: -92.5029950, lat: 44.0631970, city: "Rochester" },
{ title: "Rochester", state: "MI", lng: -83.1294200, lat: 42.6379310, city: "Rochester Hills" },
{ title: "Rochester South", state: "MN", lng: -92.4648430, lat: 43.9545230, city: "Rochester" },
{ title: "Rock Hill", state: "SC", lng: -80.9778540, lat: 34.9391360, city: "Rock Hill" },
{ title: "Rockaway", state: "NJ", lng: -74.5593700, lat: 40.9060080, city: "Rockaway" },
{ title: "Rockford", state: "IL", lng: -88.9889410, lat: 42.2698620, city: "Rockford" },
{ title: "Rocklin", state: "CA", lng: -121.2086940, lat: 38.8049510, city: "Rocklin" },
{ title: "Rockville", state: "MD", lng: -77.1149470, lat: 39.0565910, city: "Rockville" },
{ title: "Rockwall", state: "TX", lng: -96.4679850, lat: 32.8940970, city: "Rockwall" },
{ title: "Rocky Mount", state: "NC", lng: -77.8132120, lat: 35.9716650, city: "Rocky Mount" },
{ title: "Rogers", state: "MN", lng: -93.5546310, lat: 45.1977500, city: "Rogers" },
{ title: "Rogers", state: "AR", lng: -94.1731460, lat: 36.2999360, city: "Rogers" },
{ title: "Rogers Park", state: "IL", lng: -87.6610000, lat: 41.9992440, city: "Chicago" },
{ title: "Rohnert Park", state: "CA", lng: -122.7198360, lat: 38.3467920, city: "Rohnert Park" },
{ title: "Rosemead", state: "CA", lng: -118.0700680, lat: 34.0749520, city: "Rosemead" },
{ title: "Rosemont", state: "IL", lng: -87.8865320, lat: 42.0064680, city: "Rosemont" },
{ title: "Rosenberg", state: "TX", lng: -95.7514540, lat: 29.5477540, city: "Rosenberg" },
{ title: "Roseville", state: "CA", lng: -121.2546060, lat: 38.7457630, city: "Roseville" },
{ title: "Roseville North", state: "CA", lng: -121.2895670, lat: 38.7911310, city: "Roseville" },
{ title: "Roseville T1", state: "MN", lng: -93.1637330, lat: 45.0076590, city: "Roseville" },
{ title: "Ross Township", state: "PA", lng: -80.0075240, lat: 40.5266860, city: "Pittsburgh" },
{ title: "Rosslyn", state: "VA", lng: -77.0743000, lat: 38.8946000, city: "Rosslyn" },
{ title: "Roswell", state: "GA", lng: -84.3980460, lat: 34.0638460, city: "Roswell" },
{ title: "Roswell", state: "NM", lng: -104.5217930, lat: 33.4277610, city: "Roswell" },
{ title: "Round Rock", state: "TX", lng: -97.6694000, lat: 30.4791000, city: "Round Rock" },
{ title: "Rowlett", state: "TX", lng: -96.5580850, lat: 32.9085410, city: "Rowlett" },
{ title: "Royal Palm Beach", state: "FL", lng: -80.2024910, lat: 26.7108740, city: "West Palm Beach" },
{ title: "S Colorado Springs", state: "CO", lng: -104.8015420, lat: 38.7929990, city: "Colorado Springs" },
{ title: "SW Military Drive", state: "TX", lng: -98.5425420, lat: 29.3559470, city: "San Antonio" },
{ title: "SW Moline", state: "IL", lng: -90.5250020, lat: 41.4695300, city: "Moline" },
{ title: "Sacramento Arden", state: "CA", lng: -121.4034010, lat: 38.6005670, city: "Sacramento" },
{ title: "Sacramento East", state: "CA", lng: -121.4265790, lat: 38.5492060, city: "Sacramento" },
{ title: "Sacramento Madison", state: "CA", lng: -121.3492260, lat: 38.6616100, city: "Sacramento" },
{ title: "Sacramento Natomas", state: "CA", lng: -121.4993270, lat: 38.6408870, city: "Sacramento" },
{ title: "Sacramento Riverside", state: "CA", lng: -121.4975100, lat: 38.5622210, city: "Sacramento" },
{ title: "Sacramento SW", state: "CA", lng: -121.4138600, lat: 38.4586250, city: "Sacramento" },
{ title: "Saginaw", state: "MI", lng: -83.9708390, lat: 43.4827800, city: "Saginaw" },
{ title: "Salem", state: "OR", lng: -122.9867510, lat: 44.9388810, city: "Salem" },
{ title: "Salem Broadway", state: "NH", lng: -71.2150390, lat: 42.7644750, city: "Salem" },
{ title: "Salem Highland Ave", state: "MA", lng: -70.9194210, lat: 42.5034680, city: "Salem" },
{ title: "Salina", state: "KS", lng: -97.6095370, lat: 38.7844520, city: "Salina" },
{ title: "Salinas", state: "CA", lng: -121.6529940, lat: 36.7148570, city: "Salinas" },
{ title: "Salisbury", state: "MD", lng: -75.5602470, lat: 38.4159650, city: "Salisbury" },
{ title: "Salt Lake City", state: "UT", lng: -111.9016640, lat: 40.7449160, city: "Salt Lake City" },
{ title: "San Angelo", state: "TX", lng: -100.5012450, lat: 31.4318750, city: "San Angelo" },
{ title: "San Antonio Culebra", state: "TX", lng: -98.7095620, lat: 29.4932530, city: "San Antonio" },
{ title: "San Antonio NE", state: "TX", lng: -98.3270980, lat: 29.5689970, city: "Selma" },
{ title: "San Antonio North", state: "TX", lng: -98.5101420, lat: 29.6118330, city: "San Antonio" },
{ title: "San Antonio SE", state: "TX", lng: -98.4365130, lat: 29.3535920, city: "San Antonio" },
{ title: "San Antonio West", state: "TX", lng: -98.6639650, lat: 29.5478420, city: "San Antonio" },
{ title: "San Antonio Westover", state: "TX", lng: -98.6490300, lat: 29.4387980, city: "San Antonio" },
{ title: "San Bernardino", state: "CA", lng: -117.2450100, lat: 34.1381280, city: "San Bernardino" },
{ title: "San Clemente", state: "CA", lng: -117.6067390, lat: 33.4631080, city: "San Clemente" },
{ title: "San Diego Del Sur", state: "CA", lng: -117.1256330, lat: 33.0201670, city: "San Diego" },
{ title: "San Diego Mission Valley", state: "CA", lng: -117.1509050, lat: 32.7675610, city: "San Diego" },
{ title: "San Diego North Park", state: "CA", lng: -117.1289430, lat: 32.7483690, city: "San Diego" },
{ title: "San Diego South Park", state: "CA", lng: -117.1290400, lat: 32.7268600, city: "San Diego" },
{ title: "San Dimas", state: "CA", lng: -117.8232540, lat: 34.1044220, city: "San Dimas" },
{ title: "San Francisco CBD East", state: "CA", lng: -122.4008600, lat: 37.7910700, city: "San Francisco" },
{ title: "San Francisco Central", state: "CA", lng: -122.4040020, lat: 37.7846420, city: "San Francisco" },
{ title: "San Francisco South", state: "CA", lng: -122.4613190, lat: 37.7251610, city: "San Francisco" },
{ title: "San Francisco Stonestown", state: "CA", lng: -122.4764640, lat: 37.7266140, city: "San Francisco" },
{ title: "San Francisco West", state: "CA", lng: -122.4470500, lat: 37.7818630, city: "San Francisco" },
{ title: "San Jose Capitol", state: "CA", lng: -121.8445880, lat: 37.3738570, city: "San Jose" },
{ title: "San Jose Central", state: "CA", lng: -121.8658070, lat: 37.3039890, city: "San Jose" },
{ title: "San Jose College Park", state: "CA", lng: -121.9050160, lat: 37.3391640, city: "San Jose" },
{ title: "San Jose East", state: "CA", lng: -121.8130150, lat: 37.3078600, city: "San Jose" },
{ title: "San Jose Landess", state: "CA", lng: -121.8763870, lat: 37.4140280, city: "San Jose" },
{ title: "San Jose North", state: "CA", lng: -121.9555060, lat: 37.4181120, city: "San Jose" },
{ title: "San Jose Oakridge", state: "CA", lng: -121.8600450, lat: 37.2520920, city: "San Jose" },
{ title: "San Jose South", state: "CA", lng: -121.8033740, lat: 37.2504100, city: "San Jose" },
{ title: "San Jose Story Road", state: "CA", lng: -121.8409310, lat: 37.3400990, city: "San Jose" },
{ title: "San Jose West", state: "CA", lng: -121.9188050, lat: 37.2646260, city: "San Jose" },
{ title: "San Jose Westgate", state: "CA", lng: -121.9897690, lat: 37.2909850, city: "San Jose" },
{ title: "San Leandro Bayfair", state: "CA", lng: -122.1268200, lat: 37.6997920, city: "San Leandro" },
{ title: "San Luis Obispo", state: "CA", lng: -120.6853560, lat: 35.2523320, city: "San Luis Obispo" },
{ title: "San Marcos", state: "TX", lng: -97.9702980, lat: 29.8464260, city: "San Marcos" },
{ title: "San Mateo Fashion Island", state: "CA", lng: -122.2837840, lat: 37.5589180, city: "San Mateo" },
{ title: "San Pedro", state: "CA", lng: -118.2934720, lat: 33.7600870, city: "San Pedro" },
{ title: "San Rafael", state: "CA", lng: -122.4905850, lat: 37.9551430, city: "San Rafael" },
{ title: "San Ramon", state: "CA", lng: -121.9641530, lat: 37.7617710, city: "San Ramon" },
{ title: "Sand City", state: "CA", lng: -121.8438210, lat: 36.6210790, city: "Sand City" },
{ title: "Sandusky", state: "OH", lng: -82.6728110, lat: 41.4209350, city: "Sandusky" },
{ title: "Sandy South Towne", state: "UT", lng: -111.8929710, lat: 40.5669840, city: "Sandy" },
{ title: "Sandy Springs Prado", state: "GA", lng: -84.3801410, lat: 33.9061360, city: "Sandy Springs" },
{ title: "Sanford", state: "FL", lng: -81.3364680, lat: 28.7985110, city: "Sanford" },
{ title: "Santa Ana", state: "CA", lng: -117.8869810, lat: 33.7027550, city: "Santa Ana" },
{ title: "Santa Ana", state: "CA", lng: -117.8507040, lat: 33.7592570, city: "Santa Ana" },
{ title: "Santa Ana NW", state: "CA", lng: -117.8874850, lat: 33.7614610, city: "Santa Ana" },
{ title: "Santa Barbara Galleria", state: "CA", lng: -119.7508530, lat: 34.4400280, city: "Santa Barbara" },
{ title: "Santa Clara", state: "CA", lng: -121.9608700, lat: 37.3502980, city: "Santa Clara" },
{ title: "Santa Clarita East", state: "CA", lng: -118.4649320, lat: 34.3941790, city: "Santa Clarita" },
{ title: "Santa Fe", state: "NM", lng: -106.0128630, lat: 35.6393520, city: "Santa Fe" },
{ title: "Santa Fe Springs", state: "CA", lng: -118.0477580, lat: 33.9379290, city: "Santa Fe Springs" },
{ title: "Santa Maria", state: "CA", lng: -120.4341780, lat: 34.9225760, city: "Santa Maria" },
{ title: "Santa Rosa North", state: "CA", lng: -122.7303680, lat: 38.4566140, city: "Santa Rosa" },
{ title: "Santa Rosa South", state: "CA", lng: -122.7095820, lat: 38.4170420, city: "Santa Rosa" },
{ title: "Santee", state: "CA", lng: -116.9830130, lat: 32.8419390, city: "Santee" },
{ title: "Sarasota", state: "FL", lng: -82.4921890, lat: 27.2281330, city: "Sarasota" },
{ title: "Saratoga Springs", state: "NY", lng: -73.7438290, lat: 43.0993970, city: "Saratoga Springs" },
{ title: "Saugus", state: "MA", lng: -71.0241540, lat: 42.4815830, city: "Saugus" },
{ title: "Savage", state: "MN", lng: -93.3774210, lat: 44.7437070, city: "Savage" },
{ title: "Savannah", state: "GA", lng: -81.1751460, lat: 31.9840420, city: "Savannah" },
{ title: "Savannah East", state: "GA", lng: -81.0683120, lat: 32.0409260, city: "Savannah" },
{ title: "Sawgrass", state: "FL", lng: -80.3185360, lat: 26.1540500, city: "Sunrise" },
{ title: "Sayville", state: "NY", lng: -73.0671590, lat: 40.7665100, city: "Sayville" },
{ title: "Scottsbluff", state: "NE", lng: -103.6431290, lat: 41.8700360, city: "Scottsbluff" },
{ title: "Scottsdale", state: "AZ", lng: -111.8876280, lat: 33.5402100, city: "Scottsdale" },
{ title: "Seal Beach", state: "CA", lng: -118.0699990, lat: 33.7826540, city: "Seal Beach" },
{ title: "Seattle Pike Plaza", state: "WA", lng: -122.3390580, lat: 47.6089410, city: "Seattle" },
{ title: "Seekonk", state: "MA", lng: -71.3211450, lat: 41.7960580, city: "Seekonk" },
{ title: "Selden", state: "NY", lng: -73.0506590, lat: 40.8660370, city: "Selden" },
{ title: "Selinsgrove", state: "PA", lng: -76.8378480, lat: 40.8423480, city: "Selinsgrove" },
{ title: "Seven Springs", state: "FL", lng: -82.6643540, lat: 28.2014130, city: "Trinity" },
{ title: "Shakopee", state: "MN", lng: -93.5008730, lat: 44.7756570, city: "Shakopee" },
{ title: "Shawnee", state: "KS", lng: -94.7680770, lat: 39.0102200, city: "Shawnee" },
{ title: "Shelby Township", state: "MI", lng: -83.0331360, lat: 42.7113990, city: "Shelby Township" },
{ title: "Sheridan", state: "CO", lng: -105.0059270, lat: 39.6496250, city: "Sheridan" },
{ title: "Sherman", state: "TX", lng: -96.6122170, lat: 33.6805060, city: "Sherman" },
{ title: "Sherwood", state: "OR", lng: -122.8386550, lat: 45.3664420, city: "Sherwood" },
{ title: "Sherwood Forest", state: "CA", lng: -118.5030010, lat: 34.2347940, city: "Northridge" },
{ title: "Shiloh", state: "IL", lng: -89.9239810, lat: 38.5726780, city: "Shiloh" },
{ title: "Shoreview", state: "MN", lng: -93.1448480, lat: 45.0567430, city: "Shoreview" },
{ title: "Shorewood", state: "IL", lng: -88.2027890, lat: 41.5422730, city: "Shorewood" },
{ title: "Shreveport", state: "LA", lng: -93.7196340, lat: 32.4395560, city: "Shreveport" },
{ title: "Sierra Vista", state: "AZ", lng: -110.2557640, lat: 31.5557780, city: "Sierra Vista" },
{ title: "Signal Hill", state: "CA", lng: -118.1821660, lat: 33.8168190, city: "Signal Hill" },
{ title: "Silver Spring", state: "MD", lng: -76.9564600, lat: 39.0520450, city: "Silver Spring" },
{ title: "Silverdale", state: "WA", lng: -122.6940490, lat: 47.6582170, city: "Silverdale" },
{ title: "Silverthorne", state: "CO", lng: -106.0776700, lat: 39.6372510, city: "Silverthorne" },
{ title: "Simi Valley", state: "CA", lng: -118.7392420, lat: 34.2802640, city: "Simi Valley" },
{ title: "Simi Valley West", state: "CA", lng: -118.7970490, lat: 34.2731940, city: "Simi Valley" },
{ title: "Simpsonville", state: "SC", lng: -82.2596110, lat: 34.7057390, city: "Simpsonville" },
{ title: "Sioux City", state: "IA", lng: -96.3332910, lat: 42.4488270, city: "Sioux City" },
{ title: "Sioux Falls", state: "SD", lng: -96.7692840, lat: 43.5117830, city: "Sioux Falls" },
{ title: "Sioux Falls East", state: "SD", lng: -96.6548290, lat: 43.5390390, city: "Sioux Falls" },
{ title: "Skokie IL", state: "IL", lng: -87.7512250, lat: 42.0404170, city: "Skokie" },
{ title: "Skyline", state: "VA", lng: -77.1184180, lat: 38.8446720, city: "Falls Church" },
{ title: "Smithfield", state: "RI", lng: -71.5182920, lat: 41.8770460, city: "Smithfield" },
{ title: "Smyrna", state: "TN", lng: -86.5717130, lat: 35.9793970, city: "Smyrna" },
{ title: "Smyrna", state: "GA", lng: -84.4794810, lat: 33.8979450, city: "Smyrna" },
{ title: "Snellville", state: "GA", lng: -84.0159650, lat: 33.8748540, city: "Snellville" },
{ title: "Somersworth", state: "NH", lng: -70.8845190, lat: 43.2350480, city: "Somersworth" },
{ title: "Somerville", state: "MA", lng: -71.0900280, lat: 42.3766950, city: "Somerville" },
{ title: "South Bend", state: "IN", lng: -86.2293480, lat: 41.6276400, city: "South Bend" },
{ title: "South Brunswick", state: "NJ", lng: -74.5759090, lat: 40.3815140, city: "Monmouth Junction" },
{ title: "South Burlington", state: "VT", lng: -73.1822600, lat: 44.4661540, city: "South Burlington" },
{ title: "South Center", state: "WA", lng: -122.2584020, lat: 47.4552990, city: "Tukwila" },
{ title: "South County", state: "MO", lng: -90.3391260, lat: 38.5067400, city: "Saint Louis" },
{ title: "South Des Moines", state: "IA", lng: -93.6020500, lat: 41.5237190, city: "Des Moines" },
{ title: "South Elgin", state: "IL", lng: -88.3431730, lat: 41.9757330, city: "South Elgin" },
{ title: "South Gate", state: "CA", lng: -118.1674900, lat: 33.9483760, city: "South Gate" },
{ title: "South Jordan", state: "UT", lng: -111.9827480, lat: 40.5415690, city: "South Jordan" },
{ title: "South Lebanon", state: "OH", lng: -84.2205070, lat: 39.3784640, city: "South Lebanon" },
{ title: "South Mountain", state: "AZ", lng: -112.0350100, lat: 33.3793330, city: "Phoenix" },
{ title: "South Plainfield", state: "NJ", lng: -74.4264640, lat: 40.5488250, city: "South Plainfield" },
{ title: "South Portland", state: "ME", lng: -70.3477740, lat: 43.6342420, city: "South Portland" },
{ title: "South Setauket", state: "NY", lng: -73.0997600, lat: 40.8848700, city: "South Setauket" },
{ title: "South Union Twp", state: "PA", lng: -79.7579930, lat: 39.9079440, city: "Uniontown" },
{ title: "South Windsor", state: "CT", lng: -72.5500280, lat: 41.8101400, city: "Manchester" },
{ title: "Southfield", state: "MI", lng: -83.2250260, lat: 42.5128960, city: "Southfield" },
{ title: "Southington", state: "CT", lng: -72.9013570, lat: 41.6114720, city: "Southington" },
{ title: "Southland", state: "MI", lng: -83.2551430, lat: 42.2032910, city: "Taylor" },
{ title: "Southport", state: "IN", lng: -86.0850260, lat: 39.6678550, city: "Indianapolis" },
{ title: "Southside", state: "FL", lng: -81.5491050, lat: 30.1937340, city: "Jacksonville" },
{ title: "Sparks South", state: "NV", lng: -119.7168920, lat: 39.5354350, city: "Sparks" },
{ title: "Spartanburg", state: "SC", lng: -82.0091150, lat: 34.9341240, city: "Spartanburg" },
{ title: "Spokane South", state: "WA", lng: -117.3653150, lat: 47.6095970, city: "Spokane" },
{ title: "Spokane Valley", state: "WA", lng: -117.2199740, lat: 47.6560510, city: "Spokane" },
{ title: "Sports Arena", state: "CA", lng: -117.2102470, lat: 32.7518970, city: "San Diego" },
{ title: "Spring Grand Parkway North", state: "TX", lng: -95.5203500, lat: 30.0874720, city: "Spring" },
{ title: "Spring Hill", state: "TN", lng: -86.9378250, lat: 35.7415400, city: "Spring Hill" },
{ title: "Spring Hill", state: "FL", lng: -82.5985060, lat: 28.4952820, city: "Spring Hill" },
{ title: "Spring Hill East", state: "FL", lng: -82.4793270, lat: 28.4791530, city: "Brooksville" },
{ title: "Spring Township", state: "PA", lng: -75.9833740, lat: 40.3594360, city: "Wyomissing" },
{ title: "Spring Valley", state: "NY", lng: -74.0232910, lat: 41.1044540, city: "Spring Valley" },
{ title: "Springdale", state: "OH", lng: -84.4538760, lat: 39.2879840, city: "Springdale" },
{ title: "Springfield", state: "MO", lng: -93.2623840, lat: 37.1515500, city: "Springfield" },
{ title: "Springfield", state: "PA", lng: -75.3344920, lat: 39.9155280, city: "Springfield" },
{ title: "Springfield", state: "VA", lng: -77.1735640, lat: 38.7756170, city: "Springfield" },
{ title: "Springfield", state: "OR", lng: -123.0453350, lat: 44.0717890, city: "Springfield" },
{ title: "Springfield", state: "IL", lng: -89.7101600, lat: 39.7500860, city: "Springfield" },
{ title: "Springfield West", state: "PA", lng: -75.3507630, lat: 39.9149020, city: "Springfield" },
{ title: "Springhurst", state: "KY", lng: -85.5571220, lat: 38.2969350, city: "Louisville" },
{ title: "St Augustine", state: "FL", lng: -81.3224100, lat: 29.8755130, city: "Saint Augustine" },
{ title: "St Charles", state: "MO", lng: -90.5628350, lat: 38.7876470, city: "Saint Charles" },
{ title: "St Charles", state: "IL", lng: -88.2637310, lat: 41.9187950, city: "St Charles" },
{ title: "St Cloud", state: "MN", lng: -94.2085280, lat: 45.5569250, city: "Saint Cloud" },
{ title: "St Cloud East", state: "MN", lng: -94.1451930, lat: 45.5654720, city: "Saint Cloud" },
{ title: "St George", state: "UT", lng: -113.5544680, lat: 37.1029870, city: "Saint George" },
{ title: "St John", state: "IN", lng: -87.4678340, lat: 41.4397200, city: "Saint John" },
{ title: "St Joseph", state: "MO", lng: -94.8123520, lat: 39.8154680, city: "St. Joseph" },
{ title: "St Louis Park", state: "MN", lng: -93.3467850, lat: 44.9369390, city: "St Louis Park" },
{ title: "St Matthews", state: "KY", lng: -85.6420570, lat: 38.2586360, city: "Louisville" },
{ title: "St Paul Midway", state: "MN", lng: -93.1557530, lat: 44.9534910, city: "Saint Paul" },
{ title: "St Peters", state: "MO", lng: -90.6362920, lat: 38.7392890, city: "Saint Peters" },
{ title: "St Petersburg Gateway", state: "FL", lng: -82.6441250, lat: 27.8461050, city: "Saint Petersburg" },
{ title: "St. Paul Highland Park", state: "MN", lng: -93.1882510, lat: 44.9176120, city: "Saint Paul" },
{ title: "Stafford", state: "VA", lng: -77.4086620, lat: 38.4687420, city: "Stafford" },
{ title: "Stafford South", state: "VA", lng: -77.4932000, lat: 38.3448000, city: "Fredericksburg" },
{ title: "Stafford Township", state: "NJ", lng: -74.2847600, lat: 39.7103890, city: "Manahawkin" },
{ title: "Stamford", state: "CT", lng: -73.5414200, lat: 41.0554000, city: "Stamford" },
{ title: "State College", state: "PA", lng: -77.9067030, lat: 40.8125710, city: "State College" },
{ title: "State College University Campus", state: "PA", lng: -77.8618000, lat: 40.7925000, city: "State College" },
{ title: "Stateline", state: "MO", lng: -94.6072300, lat: 38.8800850, city: "Kansas City" },
{ title: "Staten Island", state: "NY", lng: -74.2318990, lat: 40.5288570, city: "Staten Island" },
{ title: "Staten Island Cntl", state: "NY", lng: -74.1676300, lat: 40.5746840, city: "Staten Island" },
{ title: "Steeplechase", state: "TX", lng: -95.6049570, lat: 29.9192960, city: "Houston" },
{ title: "Sterling", state: "VA", lng: -77.4006100, lat: 39.0262920, city: "Sterling" },
{ title: "Sterling Heights", state: "MI", lng: -83.0263640, lat: 42.5560240, city: "Sterling Heights" },
{ title: "Sterling Heights W", state: "MI", lng: -83.0853140, lat: 42.5619770, city: "Sterling Heights" },
{ title: "Stevens Point", state: "WI", lng: -89.5227280, lat: 44.5244430, city: "Stevens Point" },
{ title: "Stillwater", state: "MN", lng: -92.8386890, lat: 45.0376860, city: "Stillwater" },
{ title: "Stockton", state: "CA", lng: -121.3145980, lat: 37.9916340, city: "Stockton" },
{ title: "Stockton North", state: "CA", lng: -121.3727210, lat: 38.0521300, city: "Stockton" },
{ title: "Stone Oak", state: "TX", lng: -98.4450340, lat: 29.6533110, city: "San Antonio" },
{ title: "Stoneham Redstone", state: "MA", lng: -71.1034010, lat: 42.4949320, city: "Stoneham" },
{ title: "Stoughton", state: "MA", lng: -71.0735410, lat: 42.1523830, city: "Stoughton" },
{ title: "Stow", state: "OH", lng: -81.4102070, lat: 41.1557100, city: "Stow" },
{ title: "Streamwood", state: "IL", lng: -88.2009110, lat: 42.0173050, city: "Streamwood" },
{ title: "Streetsboro", state: "OH", lng: -81.3527470, lat: 41.2374550, city: "Streetsboro" },
{ title: "Strongsville", state: "OH", lng: -81.8282910, lat: 41.3167120, city: "Strongsville" },
{ title: "Stroudsburg", state: "PA", lng: -75.2448330, lat: 40.9964330, city: "Stroudsburg" },
{ title: "Stuart", state: "FL", lng: -80.2714720, lat: 27.2365900, city: "Stuart" },
{ title: "Sturgeon Bay", state: "WI", lng: -87.4031630, lat: 44.8233980, city: "Sturgeon Bay" },
{ title: "Sugar Land", state: "TX", lng: -95.6272240, lat: 29.5964640, city: "Sugar Land" },
{ title: "Sugarcreek Township", state: "OH", lng: -84.1044620, lat: 39.6590060, city: "Dayton" },
{ title: "Summerville", state: "SC", lng: -80.1577350, lat: 33.0402830, city: "Summerville" },
{ title: "Sun Prairie", state: "WI", lng: -89.2673630, lat: 43.1706840, city: "Sun Prairie" },
{ title: "Sunnyvale", state: "CA", lng: -122.0330620, lat: 37.3738000, city: "Sunnyvale" },
{ title: "Superior", state: "CO", lng: -105.1736110, lat: 39.9565200, city: "Superior" },
{ title: "Surprise", state: "AZ", lng: -112.3532000, lat: 33.6372540, city: "Surprise" },
{ title: "Swansea", state: "MA", lng: -71.2074270, lat: 41.7490660, city: "Swansea" },
{ title: "Tallahassee", state: "FL", lng: -84.2443360, lat: 30.4325200, city: "Tallahassee" },
{ title: "Tallahassee FL State U", state: "FL", lng: -84.3135560, lat: 30.4486550, city: "Tallahassee" },
{ title: "Tallahassee North", state: "FL", lng: -84.2155400, lat: 30.5612880, city: "Tallahassee" },
{ title: "Tampa Central Walter's Crossing", state: "FL", lng: -82.5083110, lat: 27.9570420, city: "Tampa" },
{ title: "Tampa North", state: "FL", lng: -82.4703240, lat: 28.1728880, city: "Lutz" },
{ title: "Tampa West", state: "FL", lng: -82.6127490, lat: 28.0158390, city: "Tampa" },
{ title: "Tanasbourne", state: "OR", lng: -122.8648550, lat: 45.5391540, city: "Beaverton" },
{ title: "Tanforan", state: "CA", lng: -122.4164240, lat: 37.6368770, city: "San Bruno" },
{ title: "Taunton", state: "MA", lng: -71.0685770, lat: 41.8777430, city: "Taunton" },
{ title: "Tempe", state: "AZ", lng: -111.9074650, lat: 33.3792040, city: "Tempe" },
{ title: "Tempe NE", state: "AZ", lng: -111.9052480, lat: 33.4304410, city: "Tempe" },
{ title: "Temple", state: "TX", lng: -97.3855000, lat: 31.0926000, city: "Temple" },
{ title: "Texarkana", state: "TX", lng: -94.0921340, lat: 33.4579240, city: "Texarkana" },
{ title: "Thornton", state: "CO", lng: -104.9751000, lat: 39.9163520, city: "Thornton" },
{ title: "Thousand Oaks", state: "CA", lng: -118.9346420, lat: 34.1913520, city: "Thousand Oaks" },
{ title: "Timonium", state: "MD", lng: -76.6340990, lat: 39.4618510, city: "Cockeysville" },
{ title: "Tinley Park", state: "IL", lng: -87.7953070, lat: 41.5452820, city: "Tinley Park" },
{ title: "Titusville", state: "FL", lng: -80.8407580, lat: 28.5518490, city: "Titusville" },
{ title: "Toledo NE", state: "OH", lng: -83.5609170, lat: 41.7204840, city: "Toledo" },
{ title: "Toledo NW", state: "OH", lng: -83.6537670, lat: 41.6996270, city: "Toledo" },
{ title: "Toledo SE", state: "OH", lng: -83.5806050, lat: 41.5431810, city: "Rossford" },
{ title: "Toledo W", state: "OH", lng: -83.6952210, lat: 41.6153120, city: "Holland" },
{ title: "Tomball Parkway", state: "TX", lng: -95.5841100, lat: 30.0001920, city: "Houston" },
{ title: "Toms River", state: "NJ", lng: -74.1752270, lat: 39.9877370, city: "Toms River" },
{ title: "Topeka", state: "KS", lng: -95.7596680, lat: 39.0282170, city: "Topeka" },
{ title: "Topsham", state: "ME", lng: -69.9852710, lat: 43.9340380, city: "Topsham" },
{ title: "Torrance", state: "CA", lng: -118.3459860, lat: 33.8264490, city: "Torrance" },
{ title: "Torrington", state: "CT", lng: -73.0754770, lat: 41.8188570, city: "Torrington" },
{ title: "Town & Country", state: "FL", lng: -82.5483700, lat: 28.0277910, city: "Tampa" },
{ title: "Town And Country", state: "MO", lng: -90.5173690, lat: 38.6207390, city: "Chesterfield" },
{ title: "Towson", state: "MD", lng: -76.5822170, lat: 39.3947380, city: "Towson" },
{ title: "Tracy", state: "CA", lng: -121.4584510, lat: 37.7577900, city: "Tracy" },
{ title: "Traverse City", state: "MI", lng: -85.6377680, lat: 44.7253520, city: "Traverse City" },
{ title: "Tribeca", state: "NY", lng: -74.0112000, lat: 40.7147000, city: "New York" },
{ title: "Troy", state: "MI", lng: -83.1894640, lat: 42.5447890, city: "Troy" },
{ title: "Trumbull", state: "CT", lng: -73.1516770, lat: 41.2335400, city: "Trumbull" },
{ title: "Trumbull West", state: "CT", lng: -73.2253260, lat: 41.2287350, city: "Trumbull" },
{ title: "Trussville", state: "AL", lng: -86.6367430, lat: 33.6052600, city: "Birmingham" },
{ title: "Tucson Broadway", state: "AZ", lng: -110.8802560, lat: 32.2229570, city: "Tucson" },
{ title: "Tucson El Con Mall", state: "AZ", lng: -110.9145890, lat: 32.2234700, city: "Tucson" },
{ title: "Tucson NE", state: "AZ", lng: -110.8534110, lat: 32.2493110, city: "Tucson" },
{ title: "Tucson NW", state: "AZ", lng: -111.0483910, lat: 32.3361560, city: "Tucson" },
{ title: "Tucson North", state: "AZ", lng: -110.9767130, lat: 32.2798640, city: "Tucson" },
{ title: "Tucson SE", state: "AZ", lng: -110.7867740, lat: 32.2074170, city: "Tucson" },
{ title: "Tucson SW", state: "AZ", lng: -110.9897230, lat: 32.1609610, city: "Tucson" },
{ title: "Tulare", state: "CA", lng: -119.3145790, lat: 36.2245340, city: "Tulare" },
{ title: "Tulsa", state: "OK", lng: -95.9203970, lat: 36.1372720, city: "Tulsa" },
{ title: "Tulsa Hills", state: "OK", lng: -96.0018830, lat: 36.0552360, city: "Tulsa" },
{ title: "Tulsa SE", state: "OK", lng: -95.8563680, lat: 36.0624260, city: "Tulsa" },
{ title: "Tulsa South", state: "OK", lng: -95.8842180, lat: 36.0187960, city: "Tulsa" },
{ title: "Turlock", state: "CA", lng: -120.8790810, lat: 37.5208680, city: "Turlock" },
{ title: "Turnersville", state: "NJ", lng: -75.0396220, lat: 39.7334660, city: "Turnersville" },
{ title: "Tuscaloosa", state: "AL", lng: -87.5186720, lat: 33.1931040, city: "Tuscaloosa" },
{ title: "Tustin", state: "CA", lng: -117.8280420, lat: 33.6999500, city: "Tustin" },
{ title: "Twin Falls", state: "ID", lng: -114.4628970, lat: 42.5908370, city: "Twin Falls" },
{ title: "Tyler", state: "TX", lng: -95.3090530, lat: 32.2734290, city: "Tyler" },
{ title: "UC Calhoun St", state: "OH", lng: -84.5172300, lat: 39.1280410, city: "Cincinnati" },
{ title: "UNC Franklin St", state: "NC", lng: -79.0571310, lat: 35.9121740, city: "Chapel Hill" },
{ title: "Union", state: "NJ", lng: -74.3088610, lat: 40.6870480, city: "Union" },
{ title: "Union North", state: "NJ", lng: -74.2847320, lat: 40.7154860, city: "Vauxhall" },
{ title: "University Heights", state: "OH", lng: -81.5333770, lat: 41.5004770, city: "University Heights" },
{ title: "University Parkway", state: "FL", lng: -82.4579880, lat: 27.3871710, city: "Sarasota" },
{ title: "University Plaza", state: "FL", lng: -82.4282820, lat: 28.0718950, city: "Tampa" },
{ title: "Upland", state: "CA", lng: -117.6412210, lat: 34.1331890, city: "Upland" },
{ title: "Upper Providence", state: "PA", lng: -75.4531360, lat: 40.1305910, city: "Phoenixville" },
{ title: "Upper Providence N", state: "PA", lng: -75.4979710, lat: 40.2110110, city: "Royersford" },
{ title: "Upper St. Clair", state: "PA", lng: -80.0570740, lat: 40.3442450, city: "Pittsburgh" },
{ title: "Urbandale", state: "IA", lng: -93.7672940, lat: 41.6471940, city: "Urbandale" },
{ title: "Uwchlan Township", state: "PA", lng: -75.6653380, lat: 40.0525900, city: "Exton" },
{ title: "Vacaville", state: "CA", lng: -121.9618490, lat: 38.3613050, city: "Vacaville" },
{ title: "Vadnais Heights", state: "MN", lng: -93.0606960, lat: 45.0522350, city: "Vadnais Heights" },
{ title: "Valdosta", state: "GA", lng: -83.3164610, lat: 30.8435900, city: "Valdosta" },
{ title: "Valencia", state: "CA", lng: -118.5612290, lat: 34.4206800, city: "Valencia" },
{ title: "Vallejo", state: "CA", lng: -122.2226030, lat: 38.1324070, city: "Vallejo" },
{ title: "Valley Stream", state: "NY", lng: -73.7201290, lat: 40.6642480, city: "Valley Stream" },
{ title: "Valparaiso", state: "IN", lng: -87.0304160, lat: 41.4669560, city: "Valparaiso" },
{ title: "Van Nuys", state: "CA", lng: -118.4665150, lat: 34.1752340, city: "Van Nuys" },
{ title: "Van Nuys North", state: "CA", lng: -118.4602200, lat: 34.2126870, city: "Van Nuys" },
{ title: "Vancouver", state: "WA", lng: -122.5917790, lat: 45.6506760, city: "Vancouver" },
{ title: "Vancouver East", state: "WA", lng: -122.5051340, lat: 45.6167070, city: "Vancouver" },
{ title: "Vancouver NW", state: "WA", lng: -122.6676860, lat: 45.6863880, city: "Vancouver" },
{ title: "Venice", state: "FL", lng: -82.3906830, lat: 27.0518460, city: "Venice" },
{ title: "Ventura", state: "CA", lng: -119.2370250, lat: 34.2619140, city: "Ventura" },
{ title: "Ventura West", state: "CA", lng: -119.2491330, lat: 34.2704940, city: "Ventura" },
{ title: "Vernon Hills", state: "IL", lng: -87.9572300, lat: 42.2392100, city: "Vernon Hills" },
{ title: "Vero Beach", state: "FL", lng: -80.4480420, lat: 27.6404150, city: "Vero Beach" },
{ title: "Victor", state: "NY", lng: -77.4486910, lat: 43.0335330, city: "Victor" },
{ title: "Victoria", state: "TX", lng: -96.9993530, lat: 28.8654420, city: "Victoria" },
{ title: "Viera", state: "FL", lng: -80.7203240, lat: 28.2280070, city: "Melbourne" },
{ title: "Villa Park", state: "IL", lng: -87.9771050, lat: 41.9069840, city: "Villa Park" },
{ title: "Virginia", state: "MN", lng: -92.5497590, lat: 47.5108080, city: "Virginia" },
{ title: "Virginia Beach East", state: "VA", lng: -76.0228770, lat: 36.8467170, city: "Virginia Beach" },
{ title: "Virginia Beach Pemb", state: "VA", lng: -76.1334410, lat: 36.8446250, city: "Virginia Beach" },
{ title: "Virginia Beach SE", state: "VA", lng: -76.0097860, lat: 36.7558200, city: "Virginia Beach" },
{ title: "Virginia Beach South", state: "VA", lng: -76.1090250, lat: 36.7886870, city: "Virginia Beach" },
{ title: "Virginia Center Commons", state: "VA", lng: -77.4625990, lat: 37.6736070, city: "Glen Allen" },
{ title: "Visalia", state: "CA", lng: -119.3165710, lat: 36.2925170, city: "Visalia" },
{ title: "Visalia North", state: "CA", lng: -119.2952560, lat: 36.3587160, city: "Visalia" },
{ title: "Vista", state: "CA", lng: -117.2143630, lat: 33.1691560, city: "Vista" },
{ title: "Vista Ridge", state: "TX", lng: -96.9712030, lat: 33.0118460, city: "Lewisville" },
{ title: "Vista South", state: "CA", lng: -117.2285170, lat: 33.1367100, city: "Vista" },
{ title: "Voorhees", state: "NJ", lng: -74.9839260, lat: 39.8510420, city: "Voorhees" },
{ title: "Waco", state: "TX", lng: -97.1924320, lat: 31.5348920, city: "Waco" },
{ title: "Waconia", state: "MN", lng: -93.7703440, lat: 44.8408730, city: "Waconia" },
{ title: "Wadsworth", state: "OH", lng: -81.6907930, lat: 41.0406210, city: "Wadsworth" },
{ title: "Wake Forest", state: "NC", lng: -78.5414290, lat: 35.9743500, city: "Wake Forest" },
{ title: "Walden Galleria", state: "NY", lng: -78.7726220, lat: 42.9109280, city: "Cheektowaga" },
{ title: "Waldorf", state: "MD", lng: -76.9227990, lat: 38.6212170, city: "Waldorf" },
{ title: "Walnut Creek", state: "CA", lng: -122.0642770, lat: 37.9051310, city: "Walnut Creek" },
{ title: "Ward Parkway", state: "MO", lng: -94.6071180, lat: 38.9724720, city: "Kansas City" },
{ title: "Wareham", state: "MA", lng: -70.7455620, lat: 41.7736720, city: "Wareham" },
{ title: "Warner Robins", state: "GA", lng: -83.6863910, lat: 32.6165940, city: "Warner Robins" },
{ title: "Warren", state: "MI", lng: -83.0832640, lat: 42.5036630, city: "Warren" },
{ title: "Warrenville", state: "IL", lng: -88.1701510, lat: 41.8004570, city: "Warrenville" },
{ title: "Warrington", state: "PA", lng: -75.1370970, lat: 40.2241630, city: "Warrington" },
{ title: "Warwick", state: "RI", lng: -71.4941790, lat: 41.7065770, city: "Warwick" },
{ title: "Warwick North", state: "RI", lng: -71.4764100, lat: 41.7223920, city: "Warwick" },
{ title: "Warwick Township", state: "PA", lng: -76.3070230, lat: 40.1324290, city: "Lititz" },
{ title: "Washington", state: "PA", lng: -80.2269960, lat: 40.1881150, city: "Washington" },
{ title: "Washington", state: "MO", lng: -90.9829560, lat: 38.5365810, city: "Washington" },
{ title: "Washington Square", state: "IN", lng: -85.9863610, lat: 39.7775060, city: "Indianapolis" },
{ title: "Washington Square", state: "OR", lng: -122.7794590, lat: 45.4541650, city: "Tigard" },
{ title: "Washington Twp", state: "NJ", lng: -74.8083000, lat: 40.8465000, city: "Hackettstown" },
{ title: "Wasilla", state: "AK", lng: -149.4040660, lat: 61.5782020, city: "Wasilla" },
{ title: "Watauga", state: "TX", lng: -97.2569100, lat: 32.8897840, city: "Watauga" },
{ title: "Watchung", state: "NJ", lng: -74.4218450, lat: 40.6415320, city: "Watchung" },
{ title: "Waterbury", state: "CT", lng: -73.0343210, lat: 41.5825400, city: "Waterbury" },
{ title: "Waterford", state: "CT", lng: -72.1503070, lat: 41.3772110, city: "Waterford" },
{ title: "Waterford Lakes", state: "FL", lng: -81.2021710, lat: 28.5522010, city: "Orlando" },
{ title: "Waterford Park", state: "IN", lng: -85.7644380, lat: 38.3276410, city: "Clarksville" },
{ title: "Waterfront", state: "PA", lng: -79.9108060, lat: 40.4107630, city: "Homestead" },
{ title: "Waterloo", state: "IA", lng: -92.3272190, lat: 42.4654220, city: "Waterloo" },
{ title: "Watertown", state: "MA", lng: -71.1564620, lat: 42.3641780, city: "Watertown" },
{ title: "Watertown", state: "NY", lng: -75.9604950, lat: 43.9716770, city: "Watertown" },
{ title: "Watertown", state: "SD", lng: -97.0834510, lat: 44.8886510, city: "Watertown" },
{ title: "Watsonville", state: "CA", lng: -121.7743630, lat: 36.9155420, city: "Watsonville" },
{ title: "Waukegan", state: "IL", lng: -87.8564890, lat: 42.4079850, city: "Waukegan" },
{ title: "Waukesha", state: "WI", lng: -88.1775730, lat: 43.0345370, city: "Waukesha" },
{ title: "Waukesha South", state: "WI", lng: -88.2592030, lat: 42.9897380, city: "Waukesha" },
{ title: "Wausau", state: "WI", lng: -89.5913120, lat: 44.9067200, city: "Schofield" },
{ title: "Wauwatosa", state: "WI", lng: -88.0641240, lat: 43.0874990, city: "Wauwatosa" },
{ title: "Waxahachie", state: "TX", lng: -96.8375760, lat: 32.4221230, city: "Waxahachie" },
{ title: "Waynesboro", state: "VA", lng: -78.9422250, lat: 38.0563090, city: "Waynesboro" },
{ title: "Weatherford", state: "TX", lng: -97.7840600, lat: 32.7274210, city: "Weatherford" },
{ title: "Webster", state: "NY", lng: -77.4512150, lat: 43.2114040, city: "Webster" },
{ title: "Wellington South", state: "FL", lng: -80.2029370, lat: 26.5931540, city: "Lake Worth" },
{ title: "Wenatchee", state: "WA", lng: -120.3273830, lat: 47.4384380, city: "Wenatchee" },
{ title: "Wentzville", state: "MO", lng: -90.8803550, lat: 38.8191700, city: "Wentzville" },
{ title: "Wesley Chapel", state: "NC", lng: -80.6959600, lat: 34.9997760, city: "Wesley Chapel" },
{ title: "West Allis", state: "WI", lng: -88.0448250, lat: 42.9967370, city: "West Allis" },
{ title: "West Boca Raton", state: "FL", lng: -80.2045970, lat: 26.3548650, city: "Boca Raton" },
{ title: "West Chester Township", state: "OH", lng: -84.3614450, lat: 39.3560800, city: "West Chester" },
{ title: "West Covina", state: "CA", lng: -117.8846960, lat: 34.0741200, city: "West Covina" },
{ title: "West Covina South", state: "CA", lng: -117.9121460, lat: 34.0335470, city: "West Covina" },
{ title: "West Des Moines", state: "IA", lng: -93.7527510, lat: 41.5992590, city: "West Des Moines" },
{ title: "West Des Moines SW", state: "IA", lng: -93.7798330, lat: 41.5613220, city: "West Des Moines" },
{ title: "West Fullerton", state: "CA", lng: -117.9616190, lat: 33.8794200, city: "Fullerton" },
{ title: "West Hills", state: "CA", lng: -118.6264440, lat: 34.1909070, city: "West Hills" },
{ title: "West Hollywood", state: "CA", lng: -118.3446380, lat: 34.0903430, city: "West Hollywood" },
{ title: "West Jordan", state: "UT", lng: -111.9404830, lat: 40.6283210, city: "West Jordan" },
{ title: "West Jordan SW", state: "UT", lng: -111.9841110, lat: 40.6106520, city: "West Jordan" },
{ title: "West Lansing", state: "MI", lng: -84.6285220, lat: 42.7386240, city: "Lansing" },
{ title: "West Las Vegas", state: "NV", lng: -115.2415480, lat: 36.1244020, city: "Las Vegas" },
{ title: "West Livonia", state: "MI", lng: -83.4315970, lat: 42.4344080, city: "Livonia" },
{ title: "West Marietta", state: "GA", lng: -84.6266340, lat: 33.9448860, city: "Marietta" },
{ title: "West Melbourne", state: "FL", lng: -80.6614010, lat: 28.0381220, city: "Melbourne" },
{ title: "West Mifflin", state: "PA", lng: -79.9531990, lat: 40.3486130, city: "West Mifflin" },
{ title: "West Milwaukee", state: "WI", lng: -87.9696110, lat: 43.0148380, city: "West Milwaukee" },
{ title: "West Palm Beach", state: "FL", lng: -80.0850320, lat: 26.7226860, city: "West Palm Beach" },
{ title: "West Pottsgrove Twp", state: "PA", lng: -75.6562970, lat: 40.2690580, city: "Pottstown" },
{ title: "West Sacramento", state: "CA", lng: -121.5367020, lat: 38.5498960, city: "West Sacramento" },
{ title: "West Schaumburg", state: "IL", lng: -88.1454910, lat: 42.0232440, city: "Schaumburg" },
{ title: "West Seattle", state: "WA", lng: -122.3688340, lat: 47.5218890, city: "Seattle" },
{ title: "West St Paul", state: "MN", lng: -93.0785160, lat: 44.8937580, city: "West St Paul" },
{ title: "West Valley City", state: "UT", lng: -112.0234000, lat: 40.7139000, city: "West Valley City" },
{ title: "Westborough", state: "MA", lng: -71.6559290, lat: 42.2804350, city: "Westborough" },
{ title: "Westbury", state: "NY", lng: -73.5999090, lat: 40.7415470, city: "Westbury" },
{ title: "Westchase", state: "TX", lng: -95.5683350, lat: 29.7355330, city: "Houston" },
{ title: "Western Hills", state: "OH", lng: -84.6194540, lat: 39.1447030, city: "Cincinnati" },
{ title: "Westheimer", state: "TX", lng: -95.5174490, lat: 29.7351510, city: "Houston" },
{ title: "Westlake Village", state: "CA", lng: -118.7939390, lat: 34.1481190, city: "Westlake Village" },
{ title: "Westland", state: "MI", lng: -83.3904660, lat: 42.3373210, city: "Westland" },
{ title: "Westminster", state: "MD", lng: -76.9742650, lat: 39.5667360, city: "Westminster" },
{ title: "Westminster", state: "CO", lng: -105.0783790, lat: 39.8864530, city: "Westminster" },
{ title: "Westminster", state: "CA", lng: -117.9862900, lat: 33.7253830, city: "Westminster" },
{ title: "Westminster NE", state: "CO", lng: -104.9951180, lat: 39.9587170, city: "Westminster" },
{ title: "Westminster NW", state: "CA", lng: -118.0122570, lat: 33.7456180, city: "Westminster" },
{ title: "Westridge", state: "AZ", lng: -112.2186170, lat: 33.4754250, city: "Phoenix" },
{ title: "Westwood", state: "MA", lng: -71.1553000, lat: 42.2045000, city: "Westwood" },
{ title: "Westwood Village", state: "TX", lng: -95.5652890, lat: 30.2168790, city: "Magnolia" },
{ title: "Wheaton", state: "MD", lng: -77.0563300, lat: 39.0362860, city: "Silver Spring" },
{ title: "Wheaton", state: "IL", lng: -88.1401050, lat: 41.8593360, city: "Wheaton" },
{ title: "Wheeling", state: "IL", lng: -87.9509640, lat: 42.1545600, city: "Wheeling" },
{ title: "Wheeling", state: "WV", lng: -80.5993570, lat: 40.0563460, city: "Triadelphia" },
{ title: "White Bridge", state: "TN", lng: -86.8546730, lat: 36.1307790, city: "Nashville" },
{ title: "White Marsh", state: "MD", lng: -76.4515320, lat: 39.3706160, city: "Nottingham" },
{ title: "White Oak Garner", state: "NC", lng: -78.5792210, lat: 35.6875670, city: "Garner" },
{ title: "White Plains", state: "NY", lng: -73.7661320, lat: 41.0320790, city: "White Plains" },
{ title: "Whitehall", state: "OH", lng: -82.8957400, lat: 39.9713830, city: "Whitehall" },
{ title: "Whittier", state: "CA", lng: -117.9960390, lat: 33.9430060, city: "Whittier" },
{ title: "Wichita Falls", state: "TX", lng: -98.5338740, lat: 33.8647910, city: "Wichita Falls" },
{ title: "Wichita Far West", state: "KS", lng: -97.4311460, lat: 37.6782230, city: "Wichita" },
{ title: "Wichita NE", state: "KS", lng: -97.2114890, lat: 37.7242160, city: "Wichita" },
{ title: "Wichita NW", state: "KS", lng: -97.4648180, lat: 37.7329470, city: "Wichita" },
{ title: "Wilkes-Barre", state: "PA", lng: -75.8446020, lat: 41.2377840, city: "Wilkes-Barre Township" },
{ title: "Williamsburg", state: "VA", lng: -76.7606780, lat: 37.2713700, city: "Williamsburg" },
{ title: "Williamsburg East", state: "VA", lng: -76.6410550, lat: 37.2589550, city: "Williamsburg" },
{ title: "Williamsport", state: "PA", lng: -76.8352000, lat: 41.2438000, city: "Muncy" },
{ title: "Willmar", state: "MN", lng: -95.0413620, lat: 45.0978500, city: "Willmar" },
{ title: "Willoughby", state: "OH", lng: -81.4293260, lat: 41.6288590, city: "Willoughby" },
{ title: "Willowbrook", state: "IL", lng: -87.9434480, lat: 41.7501400, city: "Willowbrook" },
{ title: "Willowbrook", state: "TX", lng: -95.5311550, lat: 29.9680630, city: "Houston" },
{ title: "Wilmington", state: "NC", lng: -77.8811240, lat: 34.2484280, city: "Wilmington" },
{ title: "Wilmington", state: "MA", lng: -71.1598950, lat: 42.5897180, city: "Wilmington" },
{ title: "Wilson", state: "NC", lng: -77.9653680, lat: 35.7406340, city: "Wilson" },
{ title: "Wilsonville", state: "OR", lng: -122.7669970, lat: 45.3331010, city: "Wilsonville" },
{ title: "Winchester", state: "VA", lng: -78.1674400, lat: 39.1542460, city: "Winchester" },
{ title: "Winchester North", state: "VA", lng: -78.1352460, lat: 39.2219620, city: "Winchester" },
{ title: "Winder", state: "GA", lng: -83.7520110, lat: 33.9427880, city: "Bethlehem" },
{ title: "Windsor", state: "CT", lng: -72.6521280, lat: 41.8912070, city: "Windsor" },
{ title: "Winona", state: "MN", lng: -91.6208720, lat: 44.0318460, city: "Winona" },
{ title: "Winston-Salem North", state: "NC", lng: -80.2787840, lat: 36.1685810, city: "Winston Salem" },
{ title: "Winston-Salem South", state: "NC", lng: -80.3207060, lat: 36.0690710, city: "Winston Salem" },
{ title: "Winter Garden", state: "FL", lng: -81.5848430, lat: 28.5212620, city: "Winter Garden" },
{ title: "Winter Park", state: "FL", lng: -81.2881260, lat: 28.5951670, city: "Winter Park" },
{ title: "Woburn", state: "MA", lng: -71.1354610, lat: 42.5186090, city: "Woburn" },
{ title: "Wood Dale", state: "IL", lng: -87.9924390, lat: 41.9670290, city: "Wood Dale" },
{ title: "Woodbury", state: "MN", lng: -92.9597280, lat: 44.9267190, city: "Woodbury" },
{ title: "Woodbury East", state: "MN", lng: -92.9088220, lat: 44.9394860, city: "Woodbury" },
{ title: "Woodfield", state: "IL", lng: -88.0487920, lat: 42.0379790, city: "Schaumburg" },
{ title: "Woodhaven", state: "MI", lng: -83.2245910, lat: 42.1377290, city: "Woodhaven" },
{ title: "Woodinville", state: "WA", lng: -122.1546010, lat: 47.7589160, city: "Woodinville" },
{ title: "Woodland", state: "CA", lng: -121.7253130, lat: 38.6722090, city: "Woodland" },
{ title: "Woodland Hills", state: "CA", lng: -118.5855730, lat: 34.1670860, city: "Woodland Hills" },
{ title: "Woodlands", state: "TX", lng: -95.4535300, lat: 30.1693940, city: "The Woodlands" },
{ title: "Woodridge", state: "IL", lng: -88.0387040, lat: 41.7708480, city: "Woodridge" },
{ title: "Woodstock", state: "GA", lng: -84.5459330, lat: 34.0857670, city: "Woodstock" },
{ title: "Worcester", state: "MA", lng: -71.7751380, lat: 42.2924740, city: "Worcester" },
{ title: "Wylie", state: "TX", lng: -96.5934950, lat: 33.0091790, city: "Wylie" },
{ title: "Wyoming", state: "MI", lng: -85.6857200, lat: 42.8653070, city: "Wyoming" },
{ title: "Yakima", state: "WA", lng: -120.4900590, lat: 46.6066780, city: "Yakima" },
{ title: "York Galleria", state: "PA", lng: -76.6802900, lat: 39.9871560, city: "York" },
{ title: "York West", state: "PA", lng: -76.7781470, lat: 39.9651570, city: "York" },
{ title: "Yorkville", state: "IL", lng: -88.4645490, lat: 41.6628130, city: "Yorkville" },
{ title: "Yuba City", state: "CA", lng: -121.6328290, lat: 39.1465830, city: "Yuba City" },
{ title: "Yukon", state: "OK", lng: -97.7634450, lat: 35.4812060, city: "Yukon" },
{ title: "Yulee", state: "FL", lng: -81.5538420, lat: 30.6300080, city: "Yulee" },
{ title: "Yuma", state: "AZ", lng: -114.6053800, lat: 32.7047430, city: "Yuma" }
];
for (var i = 0; i < stores.length; i++) {
var store = stores[i];
addStore(store.lng, store.lat, store.title, store.city, store.state);
}
function addStore(longitude, latitude, title, city, state) {
pointSeries.data.push({
geometry: { type: "Point", coordinates: [longitude, latitude] },
title: title,
city: city,
state: state
});
}
// Make stuff animate on load
chart.appear(1000, 100);
Also see: Tab Triggers