IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)
Navigation

Inscrivez-vous gratuitement
pour pouvoir participer, suivre les réponses en temps réel, voter pour les messages, poser vos propres questions et recevoir la newsletter

IGN API Géoportail Discussion :

Menu des couches trop petit


Sujet :

IGN API Géoportail

  1. #1
    Membre à l'essai
    Inscrit en
    Mai 2007
    Messages
    18
    Détails du profil
    Informations forums :
    Inscription : Mai 2007
    Messages : 18
    Points : 12
    Points
    12
    Par défaut Menu des couches trop petit
    Bonjour,

    J'essaie de faire une carte "geoportail like" avec le viewer Standard et le thème black. J'ai un certain nombre de couches à afficher, et le menu des couches fait apparaître un ascenseur pour les visualiser. J'aimerais qu'il s'agrandisse sur toute la hauteur de la barre. Comment faire ? Y a-t-il un bloc en CSS à modifier ?

    Merci !

  2. #2
    Membre averti Avatar de Zébulon-21
    Profil pro
    Inscrit en
    Mai 2009
    Messages
    392
    Détails du profil
    Informations personnelles :
    Localisation : France, Côte d'Or (Bourgogne)

    Informations forums :
    Inscription : Mai 2009
    Messages : 392
    Points : 315
    Points
    315
    Par défaut
    Citation Envoyé par llby_ Voir le message
    Comment faire ? Y a-t-il un bloc en CSS à modifier ?
    On te dira sans doute qu'il y a "Firebug".

    Tu peux aussi trouver ton bonheur dans cet exemple CSS (ce n'est pas une adaptation pour le thème "black" mais l'esprit est là) :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    112
    113
    114
    115
    116
    117
    118
    119
    120
    121
    122
    123
    124
    125
    126
    127
    128
    129
    130
    131
    132
    133
    134
    135
    136
    137
    138
    139
    140
    141
    142
    143
    144
    145
    146
    147
    148
    149
    150
    151
    152
    153
    154
    155
    156
    157
    158
    159
    160
    161
    162
    163
    164
    165
    166
    167
    168
    169
    170
    171
    172
    173
    174
    175
    176
    177
    178
    179
    180
    181
    182
    183
    184
    185
    186
    187
    188
    189
    190
    191
    192
    193
    194
    195
    196
    197
    198
    199
    200
    201
    202
    203
    204
    205
    206
    207
    208
    209
    210
    211
    212
    213
    214
    215
    216
    217
    218
    219
    220
    221
    222
    223
    224
    225
    226
    227
    228
    229
    230
    231
    232
    233
    234
    235
    236
    237
    238
    239
    240
    241
    242
    243
    244
    245
    246
    247
    248
    249
    250
    251
    252
    253
    254
    255
    256
    257
    258
    259
    260
    261
    262
    263
    264
    265
    266
    267
    268
    269
    270
    271
    272
    273
    274
    275
    276
    277
    278
    279
    280
    281
    282
    283
    284
    285
    286
    287
    288
    289
    290
    291
    292
    <!--
    /* Styles surchargés ou nouveaux styles : */
    body {
    }
    /* Affichage de l'API Géoportail + image "loading" pendant le téléchargement */
    div#viewerDiv {
    	float:left;
    	background-image:url(../images/loading45.gif);
    	background-position:center 200px;
    	background-color:#ECFF9F;
    	background-repeat: no-repeat;
    }
    /* Hauteur maxi des onglets avant barre de défilement */
    .gpGroupDivClass {
      position:relative;
      font-size:90%;
      margin:2px 0px 0px 0px;
      width:100%;
      max-height:312px;
      height:expression(this.scrollHeight > 312 ? "312px" : "auto");/* IE */
      overflow:auto;
    }
    .gpControlPanelToggleItemInactive
    {
    	background-image: url(images/fleche-gd.png) !important;
    }
    .gpControlPanelToggleItemActive
    {
    	background-image: url(images/fleche-bh.png) !important;
    }
    /* Onglet "Couches" */
    .gpMainDivClass {
    	top: 0px;
    	right: 0px;
    	cursor: default;
    	background-color: #ffffff;
    	color: #595e61;
    	font-size: 0.75em;
    	font-weight: normal;
    	text-align: left;
    }
    /* Arrière plan de l'Onglet "Couches" */
    .gpLayersClass .gpControlLabelClass {
    	background-color: #0e4a7c;
    	margin-top: 1px;
    	margin-right: 1px;
    	margin-bottom: -1px !important;
    	margin-left: 1px;
    }
    .gpLayerDivClass .gpLayerNameGroupDivClass {
    	background-color: #CCFF00;
    }
    .gpLayerDivClassAlternate .gpLayerNameGroupDivClass {
    	background-color: #E6FFB0;
    }
    /* Géoportail. Manettes de contrôle de couches : */
    .gpLayerDivClass {
    	float:left;
    	position:relative;
    	top:0px;
    	left:0px;
    	border:1px solid #0e4a7c !important;
    	background-color:#ECFF9D;
    	width:98%;
    	min-height:27px;
    	height:auto !important;/* IE ignores auto ... */
    	margin: 1px;
    }
    .gpLayerDivClassAlternate {
    	float:left;
    	position:relative;
    	top:0px;
    	left:0px;
    	border:1px solid #0e4a7c !important;
    	background-color:#F4FFDD;
    	width:98%;
    	min-height:27px;
    	height:auto !important;/* IE ignores auto ... */
    	margin: 1px;
    }
    /* Titre des onglets */
    .gpControlLabelClass {
    	border: 2px solid #0e4a7c;
    	color:#FFF !important;
    	text-align: center !important;
    	font-size: 12px;
    	letter-spacing: 0.1em;
    	background-color: #1675C2 !important;
    }
    /* Survol des onglets */
    .gpControlLabelClass:hover {
    	background-color: #94B900 !important;
    	color:#FF0000 !important;
    }
    
    /*<div id="Geoportal.Control.ToolBox_15_navbar" class="gpControlNavToolbar olControlNoSelect" unselectable="on" style="left: 0px; top: 2px; z-index: 1008; display: block;"><div id="OpenLayers.Control.Navigation_22" style="" class="olControlNavigationItemActive olControlNoSelect" unselectable="on" title="Déplacer le fond de carte"></div><div id="OpenLayers.Control.ZoomBox_23" style="" class="olControlZoomBoxItemInactive olControlNoSelect" unselectable="on" title="Se rapprocher"></div></div>*/
    
    /* Arrière plan de l'Onglet "Outils" */
    .gpToolBoxClass {
    	border:1px solid #FFFFFF;
    	color:#595E61;
    	cursor:default;
    	float:left;
    	font-weight:normal;
    	width:74px;
    	padding: 1px;
    }
    .gpZoomBarClass {
      border-top:2px solid #FFFFFF !important;
      float:left;
      height:140px;
      width:100%;
      margin:0px 0px 0px 0px;
      padding-left:3px;
      padding-top:3px;
    }
    /* Largeur Boite à outils */
    .gpToolBoxContent {
    	float:left;
    	width:72px;
    	text-align:left;
    }
    .gpToolBoxContentContainer {
    }
    .gpToolBoxUsersControlsContainer {
    }
    /* Fond de l'onglet "Outils" */
    .gpToolBoxClass .gpToolBoxContentContainer div.gpToolBoxContent {
    	background-color: #E6FFB0;
    	border-top-width: 2px;
    	border-top-style: solid;
    	border-top-color: #FFF;
    	/*margin-top: 2px !important;*/
        }
    .gpControlNavToolbar {
    	background-color: #ccff00;
    	border-bottom-width: 3px;
    	border-bottom-color: #0e4a7c;
    	border-bottom-style: double;
    	margin-top: -2px !important;
    	border-top-width: 1px;
    	border-top-style: solid;
    	border-top-color: #0e4a7c;
    	border-right-width: 0px !important;
    	border-left-width: 0px !important;
        }
    /* Tableau de la Boite à outils */
    .gpToolBoxContent table{
    	text-align: center;
    	font-size:10px;
    	border-top-width: 1px;
    	border-right-width: 1px;
    	border-left-width: 1px;
    	border-top-style: solid;
    	border-right-style: solid;
    	border-left-style: solid;
    	border-top-color: #0e4a7c;
    	border-right-color: #0e4a7c;
    	border-left-color: #0e4a7c;
    }
    /* Colonnes du tableau */
    .gpToolBoxContent  th  {
    	border-right-color: #0e4a7c;
    	border-right-width: 1px;
    	border-right-style: solid;
    	font-size: 11px;
    	background-color: #94B900;
    	color: #000;
    }
    /* Lignes du tableau */
    .gpToolBoxContent  td {
    	border-right-color: #0e4a7c;
    	border-right-width: 1px;
    	border-right-style: solid;
    	font-size: 11px;
    	background-color: #B9FE52;
    	padding-bottom: 4px;
    /*	padding-top: 4px;*/
    }
    /* Bordure de la carte */
    .gpMainMapCell {
    	border:3px solid #0e4a7c !important;
    }
    /* Fond du cadre inférieur */
    .gpControlInformation {
      float:left;
      position:relative;
      background-color:#CCFF00 !important;
      border-color:#0e4a7c !important;
      border-top:3px solid #0e4a7c !important;
      border-bottom:3px solid #0e4a7c !important;
      width:100%;
      height:44px;
      margin:0px auto;
      text-align:left;
      overflow:hidden;
      bottom:0px;
      cursor:pointer;
    }
    .gpControlInformation {
    	border-color: #0e4a7c !important;
    }
    /* Fenêtres d'affichage du panneau inférieur */
    .gpSelectProjections {
    	background-color:#EFC !important;
    	border-color: #0e4a7c  !important;
    }
    
    .gpSelectUnits {
    	background-color:#EFC !important;
    	border-color: #0e4a7c  !important;
    }
    
    .gpLong, .gpLat, .gpZone {
    	background-color:#EFC !important;
    	border: 1px solid #0e4a7c;
    }
    
    /* STYLES POPUP */
    /* Titre */
    .gpPopup .gpPopupContent .gpPopupHead {
    	background-color: #0e4a7c;
    	color: #ccff00;
    	font-size: 0.9em;
    	font-weight: bold;
    	line-height: 1.6em;
    	text-align: center;
    	font-family: Verdana, Geneva, sans-serif;
    }
    .gpAttName {
      padding:2px;
      background-color:#336699;
      color:#FFFFFF;
      font-weight:bold;
    }
    .gpPopup .gpPopupContent .gpPopupBody table td {
    	padding-top: 4px;
    	padding-right: 4px;
    	padding-bottom: 4px;
    	padding-left: 4px;
    	border-right-width-value: 1px;
    	border-right-width-ltr-source: physical;
    	border-right-width-rtl-source: physical;
    	border-left-width-value: 1px;
    	border-left-width-ltr-source: physical;
    	border-left-width-rtl-source: physical;
    	border-right-style-value: solid;
    	border-right-style-ltr-source: physical;
    	border-right-style-rtl-source: physical;
    	border-left-style-value: solid;
    	border-left-style-ltr-source: physical;
    	border-left-style-rtl-source: physical;
    	border-right-color-value: #94b900;
    	border-right-color-ltr-source: physical;
    	border-right-color-rtl-source: physical;
    	border-left-color-value: #94b900;
    	border-left-color-ltr-source: physical;
    	border-left-color-rtl-source: physical;
    	color: #303334;
    	border: 1px solid #94b900;
    }
    .gpPopup .gpPopupContent .gpPopupBody {
    	font-size: 0.7em;
    	color: #000044;
    	background-color: #e6ffb0;
    	font-family: Verdana, Geneva, sans-serif;
    }
    .gpPopup * {
    	font-size: 1em;
    	color: #000044;
    	background-color: #e6ffb0;
    }
    .gpPopup .gpPopupContent .gpPopupBody a:link, .gpPopup .gpPopupContent .gpPopupBody a:visited{
    	color: #005cb9;
    	background-color: #e6ffb0;
    	background-image: url(../../images/stories/bullet.gif);
    	background-position: 10px 6px;
    	text-decoration: underline;
    	background-repeat: no-repeat;
    	padding-left: 26px;
    	}
    .gpPopup .gpPopupContent .gpPopupBody a:hover {
    	color: #333333;
    	background-color: #ddf2ff;
    	background-image: url(../../images/stories/bullet.gif);
    	background-position: 10px 6px;
    	text-decoration: underline;
    	background-repeat: no-repeat;
    	padding-left: 26px;
    }
    
    -->

  3. #3
    Membre à l'essai
    Inscrit en
    Mai 2007
    Messages
    18
    Détails du profil
    Informations forums :
    Inscription : Mai 2007
    Messages : 18
    Points : 12
    Points
    12
    Par défaut
    Super. J'ai ajouté uniquement le bloc ci-dessous et cela fonctionne.

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    /* Hauteur maxi des onglets avant barre de défilement */
    .gpGroupDivClass {
      position:relative;
      font-size:90%;
      margin:2px 0px 0px 0px;
      width:100%;
      max-height:312px;
      height:expression(this.scrollHeight > 312 ? "312px" : "auto");/* IE */
      overflow:auto;
    }
    Et j'ai installé Firebug pour voir si c'est mieux que Web Developper.

    Merci !

+ Répondre à la discussion
Cette discussion est résolue.

Discussions similaires

  1. Menu des couches comme sur le Géoportail
    Par Kivenkantaja dans le forum IGN API Géoportail
    Réponses: 6
    Dernier message: 25/05/2012, 16h02
  2. Réponses: 11
    Dernier message: 23/11/2011, 19h18
  3. Scrollbar trop petit , il me manque des widget
    Par zeonnix95 dans le forum Tkinter
    Réponses: 1
    Dernier message: 07/09/2010, 17h51
  4. [openlayers] Menu flottant des couches
    Par FlyByck dans le forum SIG : Système d'information Géographique
    Réponses: 3
    Dernier message: 30/09/2009, 19h53
  5. Taille des polices fixes ET trop petite sur CE6.0
    Par tigunn dans le forum Windows Mobile
    Réponses: 4
    Dernier message: 20/10/2008, 15h06

Partager

Partager
  • Envoyer la discussion sur Viadeo
  • Envoyer la discussion sur Twitter
  • Envoyer la discussion sur Google
  • Envoyer la discussion sur Facebook
  • Envoyer la discussion sur Digg
  • Envoyer la discussion sur Delicious
  • Envoyer la discussion sur MySpace
  • Envoyer la discussion sur Yahoo