Windows info - native google maps

Hello everyone, I need to know if I can have the 2 info open without being closed as shown in the image, I hope you can help me.

markert_start() {
    this.map.addMarker({
      'position': {
        lat: this.viaje_data.datos_origen.lat,
        lng: this.viaje_data.datos_origen.long,
      },
      'visible': true,
      'styles': {
        'background-color': '#222'
      },
      'icon': this.icono,
      'title': this.viaje_data.origen
    }).then(marker => {
      marker.showInfoWindow();
    });
  }

  markert_end() {
    this.map.addMarker({
      'position': {
        lat: this.viaje_data.datos_destino.lat,
        lng: this.viaje_data.datos_destino.long,
      },
      'visible': true,
      'styles': {
        'background-color': '#222'
      },
      'icon': this.icono,
      'title': this.viaje_data.destino
    }).then(marker => {
      marker.showInfoWindow();
    });
  }