<?php

switch ($_GET["type"]) {
    case "LVL":
        $title = "Mapa de Instituciones que <span style='color: #006d00;'>han participado</span> / <span style='color: #FF0000;'>no han participado</span>";
        break;
    case "ANS":
        $title = "Mapa de respuestas recibidas por Instituciones";
        break;
        
    default:
        $title = "Mapa";
}
    

?>
					<!-- Content Row -->
					<div class="row">
						<div class="col-xl-12 col-lg-12">						
							<div class="card shadow mb-4">
								<!-- Card Header - Dropdown -->
								<div class="card-header py-3 d-flex flex-row align-items-center justify-content-between">
									<h6 class="m-0 font-weight-bold text-primary"><?php echo $title; ?></h6>
								</div>
								<!-- Card Body -->
								<div class="card-body text-center">
                                    <!-- Div de mapa -->
                                    <iframe style="width:100%; height:70vh; border: 0;" frameBorder="0" src="<?php echo "Maps/".$_GET["type"].".php";?>"></div>
								</div>
							</div>
						</div>
					</div>