JSFiddle - React, Tailwind, and code Playground
by cs3vigny
HTML
<script src="http://www.google.com/jsapi?ext.js"></script>
<div id="visualization"></div>
CSS
#visualization path {
stroke:#ffffff; /*choose a color for the border */
}
JavaScript
google.load('visualization', '1', {
'packages': ['geochart']
});
google.setOnLoadCallback(drawVisualization);
function drawVisualization() {
var data = new google.visualization.DataTable();
data.addColumn('number', 'Lat');
data.addColumn('number', 'Long');
data.addColumn({type:'string', role:'tooltip', p:{html:true}});
data.addRows([
[33.640897, -84.445703, '<strong>ATL</strong> - Hartsfield-Jackson Atlanta International Airport'],
[42.366820, -71.016556, '<strong>BOS</strong> - General Edward Lawrence Logan International Airport'],
[39.1753611, -76.6683333, '<strong>BWI</strong> - Baltimore/Washington International Thurgood Marshall Airport'],
[35.220637, -80.944157, '<strong>CLT</strong> - Charlotte-Douglas International Airport'],
[38.849367, -77.041127, '<strong>DCA</strong> - Ronald Reagan Washington National Airport'],
[39.850017, -104.673915, '<strong>DEN</strong> - Denver International Airport'],
[32.904821, -97.032626, '<strong>DFW</strong> - Dallas/Fort Worth International Airport'],
[42.224227, -83.359357, '<strong>DTW</strong> - Detroit Metropolitan Wayne County Airport'],
[40.690486, -74.176968, '<strong>EWR</strong> - Newark Liberty International Airport'],
[26.0725962, -80.1527414, '<strong>FLL</strong> - Fort Lauderdale-Hollywood International'],
[21.3186813, -157.9224287, '<strong>HNL</strong> - Honolulu International Airport'],
[38.952751, -77.447828, '<strong>IAD</strong> - Washington Dulles International Airport'],
[29.9844444, -95.3414444, '<strong>IAH</strong> - George Bush Intercontinental</strong> - Houston Airport'],
[40.6397511, -73.7789256, '<strong>JFK</strong> - John F. Kennedy International Airport'],
[36.0800556, -115.1522500, '<strong>LAS</strong> - McCarran International Airport'],
[33.9424955, -118.4080684, '<strong>LAX</strong> - Los Angeles International Airport'],
...