diff --git a/README-itowns.md b/README-itowns.md index fe33102cd..f11ebd860 100644 --- a/README-itowns.md +++ b/README-itowns.md @@ -228,8 +228,8 @@ L'utilisateur a le choix entre plusieurs méthodes d'import. import {Services, itownsExtended as It} from 'geoportal-extensions-itowns'; // votre utilisation de l'extension -const globeView = new It.GlobeViewExtended(... -Services.getConfig(... +const globeView = new It.GlobeViewExtended(...) +Services.getConfig(...) ``` **Méthode 2** : import d'un objet d’espace de noms pour le module @@ -240,8 +240,8 @@ import * as Gp from 'geoportal-extensions-itowns'; // votre utilisation de l'extension const It = Gp.itownsExtended; -const globeView = new It.GlobeViewExtended(... -Gp.Services.getConfig(... +const globeView = new It.GlobeViewExtended(...) +Gp.Services.getConfig(...) ``` ***Variante 2*** : le module itowns est importé indépendamment de l'extension ``` javascript @@ -249,8 +249,8 @@ import It from 'itowns'; import * as Gp from 'geoportal-extensions-itowns'; // votre utilisation de l'extension -const globeView = new It.GlobeViewExtended(... -Gp.Services.getConfig(... +const globeView = new It.GlobeViewExtended(...) +Gp.Services.getConfig(...) ``` ## Compatibilités diff --git a/README-leaflet.md b/README-leaflet.md index 6e6a45113..68080be4a 100644 --- a/README-leaflet.md +++ b/README-leaflet.md @@ -233,8 +233,8 @@ L'utilisateur a le choix entre plusieurs méthodes d'import. import {Services, LExtended as L} from 'geoportal-extensions-leaflet'; // votre utilisation de l'extension -var map = L.map(... -Services.getConfig(... +var map = L.map(...) +Services.getConfig(...) ``` **Méthode 2** : import d'un objet d’espace de noms pour le module @@ -245,8 +245,8 @@ import * as Gp from 'geoportal-extensions-leaflet'; // votre utilisation de l'extension const L = Gp.LExtended; -var map = L.map(... -Gp.Services.getConfig(... +var map = L.map(...) +Gp.Services.getConfig(...) ``` ***Variante 2*** : le module leaflet est importé indépendamment de l'extension ``` javascript @@ -254,8 +254,8 @@ import L from 'leaflet'; import * as Gp from 'geoportal-extensions-leaflet'; // votre utilisation de l'extension -var map = L.map(... -Gp.Services.getConfig(... +var map = L.map(...) +Gp.Services.getConfig(...) ``` ## Compatibilités diff --git a/README-openlayers.md b/README-openlayers.md index ca8cb8bbc..89c82b35e 100644 --- a/README-openlayers.md +++ b/README-openlayers.md @@ -247,8 +247,8 @@ L'utilisateur a le choix entre plusieurs méthodes d'import. import {Services, olExtended as Ol} from 'geoportal-extensions-openlayers'; // votre utilisation de l'extension -var map = new Ol.Map(... -Services.getConfig(... +var map = new Ol.Map(...) +Services.getConfig(...) ``` **Méthode 2** : import d'un objet d’espace de noms pour le module @@ -259,8 +259,8 @@ import * as Gp from 'geoportal-extensions-openlayers'; // votre utilisation de l'extension const Ol = Gp.olExtended; -var map = new Ol.Map(... -Gp.Services.getConfig(... +var map = new Ol.Map(...) +Gp.Services.getConfig(...) ``` ***Variante 2*** : le module openlayers est importé indépendamment de l'extension ``` javascript @@ -268,8 +268,8 @@ import Ol from 'openlayers'; import * as Gp from 'geoportal-extensions-openlayers'; // votre utilisation de l'extension -var map = new Ol.Map(... -Gp.Services.getConfig(... +var map = new Ol.Map(...) +Gp.Services.getConfig(...) ``` ## Compatibilités