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 :

Problème de clef de l'api web


Sujet :

IGN API Géoportail

  1. #1
    Nouveau Candidat au Club
    Homme Profil pro
    chargé environnement
    Inscrit en
    Avril 2013
    Messages
    2
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France

    Informations professionnelles :
    Activité : chargé environnement
    Secteur : Service public

    Informations forums :
    Inscription : Avril 2013
    Messages : 2
    Points : 1
    Points
    1
    Par défaut Problème de clef de l'api web
    Je vous contacte concernant un soucis de licence pour l’application web.
    J’ai réalisé une commande pour l’utilisation de la Licence API Géoportail.
    J’ai donc reçu le numéro de clé sous forme d'une suite de lettre.
    Pour le site web suivant : http://www.cc-isle-cremieu.fr/
    Et la page suivante : http://www.cc-isle-cremieu.fr/ccic-natura2000.html

    J’ai tenté de remplacer l’ancienne clef (suite de chiffre) par la nouvelle mais sans succès : les cartes Ign ne s’affiche pas.
    Pourriez-vous m’indiquer la démarche à suivre ?
    En vous remerciant par avance,


    PS : La page web statique que nous avions se présentait sous la forme suivante :

    <!DOCTYPE html>
    <html>
    <head>
    <title>Site Natura 2000 "Isle Cremieu"</title>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
    <link rel="shortcut icon" type="image/x-icon" href="img/favicon.ico"/>
    <style type="text/css"><!--/*--><![CDATA[/*><!--*/

    body {
    background-color: #9F9F9F;
    }
    h1 {
    text-align:center;
    font-size:0.75em;
    font-style: italic;
    width:800px;
    }
    div#example_explain {
    margin:0px 0px 10px 0px;
    border: thin solid #595E61;
    width:800px;
    text-align:justify;
    font-size: 0.75em;
    font-style: italic;
    color: #595E61;
    }
    form#gpLangChange {
    border:0px;
    margin:0px;
    padding:0px;
    }







    div#viewerDiv {
    width:800px;
    height:600px;
    background-color:white;
    background-image:url(http://api.ign.fr/geoportail/api/js/.../loading.gif);
    background-position:center center;
    background-repeat:no-repeat;
    }


    div#footer {
    font-size-small;
    text-align:center;
    width:800px;
    }
    div#footer a, div#footer a:link, div#footer a:visited, div#footer a:hover {
    text-decoration:none;
    color:black;
    }
    div#code a, div#code a:link, div#code a:visited, div#code a:hover {
    text-decoration:none;
    color: #595E61;
    }
    div#code {
    margin:0px 0px 10px 0px;
    width:800px;
    position:relative;
    left:0px;
    top:0px;
    text-align:justify;
    font-size: 0.75em;
    font-style: italic;
    }







    /*]]>*/--></style>

    </head>
    <body>


    <div id="viewerDiv"></div>


    <div id='code'><a href="./js/geoportalMap_ignRGE.js" alt="geoportalMap_ignRGE" id="example_jscode" target="_blank"></a></div>
    <div id="footer"><a href="https://api.ign.fr/geoportail/document.do?doc=legal_mentions" id="legal" target="_blank"></a> - &copy;IGN 2008-2012</div>



    <script type="text/javascript"><!--//--><![CDATA[//><!--




    window.onload= function() {
    Geoportal.load(
    // div's ID:
    'viewerDiv',
    // API's keys:
    ['7175625062635742671'],
    {// map's center :
    // longitude:
    lon:5.36,
    // latitude:
    lat:45.724611
    },

    10,//map's zoom
    {

    // add a kml (url relative to this page) :
    overlays:{
    'kml':[{name:'Natura 2000',url:'IMG/kml/Natura_2000_Isle_Cremieu.kml'}]
    }
    ,language:'fr',viewerClass:Geoportal.Viewer.Default

    }
    );
    };



    //--><!]]></script>

    <script
    type="text/javascript" charset="utf-8"
    src="http://api.ign.fr/geoportail/api/js/1.3.0/Geoportal.js">
    <!-- -->
    </script>


    </body>
    </html>

  2. #2
    Membre chevronné Avatar de gcebelieu
    Homme Profil pro
    Ingénieur Géographe et Cartographe
    Inscrit en
    Novembre 2010
    Messages
    1 106
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France

    Informations professionnelles :
    Activité : Ingénieur Géographe et Cartographe
    Secteur : Service public

    Informations forums :
    Inscription : Novembre 2010
    Messages : 1 106
    Points : 1 843
    Points
    1 843
    Par défaut
    Bonjour,

    dans votre page, la clef que vous utilisez commence par un 'F' majuscule. Je ne connais pas la clef que vous avez obtenue, mais ce ne peut pas être ça. Vérifiez votre clef. remarque : en remplaçant le 'F' par un 'f', cela a déjà l'air de mieux marcher.

    Autre remarque au passage :

    votre page appelle l'api version 1.3 qui n'est plus d'actualité :

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    <script
    type="text/javascript" charset="utf-8"
    src="http://api.ign.fr/geoportail/api/js/1.3.0/Geoportal.js">
    <!-- -->
    </script>
    Par défaut, il vous ait retourné l'API version 2.0.0.

    Vous devriez appeler explicitement cette dernière en utilisant au choix l'une des url suivantes :
    http://api.ign.fr/geoportail/api/js/2.0.0/Geoportal.js
    http://api.ign.fr/geoportail/api/js/2.0.1/Geoportal.js
    http://api.ign.fr/geoportail/api/js/2.0.2/Geoportal.js
    http://api.ign.fr/geoportail/api/js/2.0.3/Geoportal.js
    http://api.ign.fr/geoportail/api/js/2.0/Geoportal.js (retourne la dernière 2.0.x - actuellement, la 2.0.3)
    http://api.ign.fr/geoportail/api/js/latest/Geoportal.js (retourne la dernière version en date - actuellement, la 2.0.3)

  3. #3
    Membre habitué
    Profil pro
    Inscrit en
    Avril 2012
    Messages
    265
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Avril 2012
    Messages : 265
    Points : 179
    Points
    179
    Par défaut
    Bonjour,

    comme dit par Gcebelieu, l'URL n'est pas la bonne et quelques petites erreurs de syntaxe, il me semble.

    * Mettre la clé de développement ou production.

    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
    <!DOCTYPE html>
    <html>
    	<head>
    		<title>Site Natura 2000 "Isle Cremieu"</title>
    		<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
    		<link rel="shortcut icon" type="image/x-icon" href="img/favicon.ico"/>
    		<style type="text/css">
    			body {
    				background-color: #9F9F9F;
    			}
    			h1 {
    				text-align:center;
    				font-size:0.75em;
    				font-style: italic;
    				width:800px;
    			}
    			div#example_explain {
    				margin:0px 0px 10px 0px;
    				border: thin solid #595E61;
    				width:800px;
    				text-align:justify;
    				font-size: 0.75em;
    				font-style: italic;
    				color: #595E61;
    			}
    			form#gpLangChange {
    				border:0px;
    				margin:0px;
    				padding:0px;
    			}
    			div#viewerDiv {
    				width:800px;
    				height:600px;
    				background-color:white;
    				background-image:url(http://api.ign.fr/geoportail/api/js/1.3.0/theme/geoportal/img/loading.gif);
    				background-position:center center;
    				background-repeat:no-repeat;
    			}
    			div#footer {
    				font-size-small;
    				text-align:center;
    				width:800px;
    			}
    			div#footer a, div#footer a:link, div#footer a:visited, div#footer a:hover {
    				text-decoration:none;
    				color:black;
    			}
    			div#code a, div#code a:link, div#code a:visited, div#code a:hover {
    				text-decoration:none;
    				color: #595E61;
    			}
    			div#code {
    				margin:0px 0px 10px 0px;
    				width:800px;
    				position:relative;
    				left:0px;
    				top:0px;
    				text-align:justify;
    				font-size: 0.75em;
    				font-style: italic;
    			}
    		</style>
    	</head>
    	<body>
    		<div id="viewerDiv">
    		</div>
    		<div id='code'>
    			<a href="./js/geoportalMap_ignRGE.js" alt="geoportalMap_ignRGE" id="example_jscode" target="_blank">
    			</a>
    		</div>
    		<div id="footer">
    			<a href="https://api.ign.fr/geoportail/document.do?doc=legal_mentions" id="legal" target="_blank"></a>
    			- &copy;IGN 2008-2012
    		</div>
    		<script type="text/javascript">
    			window.onload= function() {
    				Geoportal.load(
    				'viewerDiv',
    				['XXXXXXXXX-KEY-XXXXXXXXXXX'],
    				{
    					lon:5.36,
    					lat:45.724611
    				}, 
    				10,
    				{
    					overlays:{'kml':[{name:'Natura 2000',url:'IMG/kml/Natura_2000_Isle_Cremieu.kml'}]
    				},
    				language:'fr',viewerClass:Geoportal.Viewer.Default
    				}
    				);
    			};
    		</script>
    		<script
    			type="text/javascript" charset="utf-8" 
    			src="http://api.ign.fr/geoportail/api/js/latest/Geoportal.js">
    		</script>
    	</body>
    </html>

  4. #4
    Nouveau Candidat au Club
    Homme Profil pro
    chargé environnement
    Inscrit en
    Avril 2013
    Messages
    2
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France

    Informations professionnelles :
    Activité : chargé environnement
    Secteur : Service public

    Informations forums :
    Inscription : Avril 2013
    Messages : 2
    Points : 1
    Points
    1
    Par défaut
    Merci bien pour votre réponse.
    Je regarde ça.
    Bonne journée

Discussions similaires

  1. Site sur clef usb - Probleme ie - Problème de sécurité - Mark of the web
    Par RockMakesMeSweat dans le forum Balisage (X)HTML et validation W3C
    Réponses: 0
    Dernier message: 17/11/2008, 16h13
  2. Réponses: 1
    Dernier message: 11/05/2006, 16h17
  3. [Hibernate] Problème de clef
    Par Goon dans le forum Hibernate
    Réponses: 2
    Dernier message: 19/04/2006, 17h45
  4. [IB6] Problème de clef étrangère
    Par Neilos dans le forum InterBase
    Réponses: 8
    Dernier message: 28/03/2006, 20h40
  5. Problème de declaration de variable (API Win32)
    Par barbarello dans le forum Windows
    Réponses: 2
    Dernier message: 30/01/2006, 10h57

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