Skip to content

Commit

Permalink
SDK release 1.3.0 :
Browse files Browse the repository at this point in the history
- downgrade de la version OpenLayers : 4.2.0
- issue #34 : WFS et le format de sortie GeoJson
- issue #31 : bouton fermeture des popup
  • Loading branch information
lowzonenose committed Jun 25, 2018
1 parent 1409662 commit c376814
Show file tree
Hide file tree
Showing 9 changed files with 975 additions and 653 deletions.
4 changes: 3 additions & 1 deletion gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@
// pluginsDir = "../../node_modules/geoportal-extensions-openlayers/dist/";
// Use lib external to test dev releases of geoportal-extensions
pluginsDir = "../../node_modules/geoportal-extensions-openlayers/dist/",
_deps.ol = "../../node_modules/openlayers/dist/ol";
_deps.ol = (isDebug) ? "../../node_modules/openlayers/dist/ol-debug" : "../../node_modules/openlayers/dist/ol";
_deps["Gp"] = pluginsDir + "GpPluginOpenLayers-src";
_includes.push("ol3/OL3");
_globalModules.push("ol");
Expand Down Expand Up @@ -455,8 +455,10 @@
svgdir = path.join(_.node_modules, "geoportal-extensions-openlayers", "dist", "**", "*.svg");
} else if (isItowns) {
srcdir.push(path.join(_.node_modules, "geoportal-extensions-itowns", "dist", "**", "*.png"));
srcdir.push(path.join(_.res, "it2", "img", "**", "*"));
} else if (isMixIt) {
srcdir.push(path.join(_.node_modules, "geoportal-extensions-openlayers-itowns", "dist", "**", "*.png"));
srcdir.push(path.join(_.res, "it2", "img", "**", "*"));
svgdir = path.join(_.node_modules, "geoportal-extensions-openlayers-itowns", "dist", "**", "*.svg");
} else {
$.util.log("Exception !");
Expand Down
Loading

0 comments on commit c376814

Please sign in to comment.