JSFiddle - React, Tailwind, and code Playground

HTML

<html>
<head>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/2.0.0/jquery.min.js"></script>
<script type="text/javascript" src="http://maps.google.com/maps/api/js?sensor=false"></script>
<script type="text/javascript">
var center = new google.maps.LatLng(39.51744763480339, -104.76698394101561);
var infowindow = new google.maps.InfoWindow();

function init() {
    map = new google.maps.Map(document.getElementById('map_canvas'), {
    center: center,
    zoom: 6,
    mapTypeId: google.maps.MapTypeId.ROADMAP
  });
}
var street_address1 = new google.maps.FusionTablesLayer({
query: {
    select: 'street_address_Auckland_000001_080000',
    from: '1WoKvD3GvX8Rif7TFmHGEvvbtpbYWFs-K-DeF7WU'
  },
    suppressInfoWindows: false
    }); 
google.maps.event.addListener(street_address1, 'click', function(e) {
if(infowindow) infowindow.close();
else infowindow = new google.maps.InfoWindow();
    infoWindowContent = infowindow.setContent(
        '<h3 style="font-family: Arial; font-size: 13px; color: #FFFFFF; background-color: #0099FF; text-align: center; font-style: italic">' + 'Street Address'
        + '<h1 style="font-family: Arial; font-size: 12px; color: #333333; background-color: #E2E2E2; text-align: left ">  ID: &nbsp;' + e.row['id'].value
        +  '</a>') ;
    infowindow.setPosition(e.latLng);
    map.setCenter(e.latLng);
    infowindow.open(map);        
});


var street_address2 = new google.maps.FusionTablesLayer({
query: {
    select: 'street_address_Auckland_080000_160000',
    from: '1dlsTxt8kyA92pq3jwODwQtaEcWxn8dax0slrULM'
  },
    suppressInfoWindows: true
    });
google.maps.event.addListener(street_address2, 'click', function(e) {
if(infowindow) infowindow.close();
else infowindow = new google.maps.InfoWindow();
    infoWindowContent = infowindow.setContent(
        '<h3 style="font-family: Arial; font-size: 13px; color: #FFFFFF; background-color: #0099FF; text-align: center; font-style: italic">' + 'Street Address'
        + '<h1...