Version19.115

This commit is contained in:
Antonio Cañas Vargas 2020-01-09 18:56:45 +01:00
parent 2e562d8e06
commit 684071c4ae
4 changed files with 6 additions and 6 deletions

View File

@ -2012,10 +2012,10 @@ a:hover img.CENTRE_PHOTO_SHOW
box-shadow:1px 1px 6px #999;
}
#ctr_mapid, #ins_mapid, #cty_mapid
#sys_mapid, #cty_mapid, #ins_mapid, #ctr_mapid
{
width:460px;
height:345px;
height:460px;
margin:9px auto;
}

View File

@ -493,7 +493,7 @@ En OpenSWAD:
ps2pdf source.ps destination.pdf
*/
#define Log_PLATFORM_VERSION "SWAD 19.115 (2020-01-09)"
#define CSS_FILE "swad19.112.css"
#define CSS_FILE "swad19.115.css"
#define JS_FILE "swad19.91.1.js"
/*
// TODO: Hacer un nuevo rol en los TFG: tutor externo (profesor de áreas no vinculadas con el centro, profesionales de empresas, etc.)

View File

@ -257,10 +257,10 @@ double Map_GetAltitudeFromStr (char *Str)
static unsigned Map_GetZoomFromDistance (double MaxDistance)
{
/***** Convert distance to zoom *****/
return (MaxDistance < 0.01) ? 16 :
return (MaxDistance < 0.01) ? 15 :
((MaxDistance < 0.1 ) ? 12 :
((MaxDistance < 1.0 ) ? 8 :
((MaxDistance < 10.0 ) ? 6 :
((MaxDistance < 10.0 ) ? 5 :
((MaxDistance < 50.0 ) ? 2 :
1))));
}

View File

@ -240,7 +240,7 @@ static void SysCfg_GetCoordAndZoom (struct Coordinates *Coord,unsigned *Zoom)
/****************************** Draw country map *****************************/
/*****************************************************************************/
#define SysCfg_MAP_CONTAINER_ID "cty_mapid"
#define SysCfg_MAP_CONTAINER_ID "sys_mapid"
static void SysCfg_Map (void)
{