in src/app/map/map.component.ts [291:295]
showInfoWindow(feature: Feature, latLng: google.maps.LatLng) {
this.infoWindow.setContent(`<pre>${JSON.stringify(feature.properties, null, 2)}</pre>`);
this.infoWindow.open(this.map);
this.infoWindow.setPosition(latLng);
}