Je viens mettre à jour mes pages avec cette version.
Elles sont consultables à l'adresse http://atlasnw.free.fr/geoportail/exemples_beta5/
Sur l'exemple en flex, un petit oubli pour les caractères accentués ...
Mon code perl mis à jour:
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 $lignes =~ s/\@debug\@//g; $lignes =~ s/\@firebug\@//g; $lignes =~ s{\@apiUrl\@}{http://api.ign.fr/geoportail}g; $lignes =~ s{v=\@project\.version\@}{v=1.0beta4}g; $lignes =~ s{\@project.version\@}{1.0beta5}g; $lignes =~ s{\@api.key.fxx\@}{1731453248655229623}g; $lignes =~ s{\@api.key.mtq\@}{1731453248655229623}g; $lignes =~ s{\@flashvars@\@}{key=1731453248655229623&}g; $lignes =~ s{\@geoportal\@}{<script type="text/javascript" src="/geoportail/api/js/1.0beta5/GeoportalExtended.js"></script>}g; $lignes =~ s/\@in\@/false/g; $lignes =~ s/\@onload\@/ onload="initGeoportalMap();"/g; $lignes =~ s{\@proxy\@}{'/geoportail/mgaProxy.php'}g; $lignes =~ s{\@visu\@}{/geoportail/api}g; $lignes =~ s{\@openlayers.css.path\@}{/geoportail/api/js/1.0beta5}g; $lignes =~ s{\@geoportal.css.path\@}{/geoportail/api/js/1.0beta5}g; $lignes =~ s{\@onload2\@}{\tonload="firstOnLoadCallback();secondOnLoadCallback();initGeoportalMap();"}g; $lignes =~ s{\@geoportal.extended\@}{<script type="text/javascript" src="/geoportail/api/js/1.0beta5/GeoportalExtended.js"></script>}g; $lignes =~ s{\@geoportal.min.compacted\@}{<script type="text/javascript" src="/geoportail/api/js/1.0beta5/GeoportalExtended.js"></script>}g; $lignes =~ s{\@extensions.mapfish\@}{http://demo.mapfish.org/mapfishsample/trunk/}g; $lignes =~ s{\@extensions.yui\@}{http://yui.yahooapis.com/2.8.0r4/build/}g;
Partager