diff --git a/README.md b/README.md
index 2623e51..a40cd91 100644
--- a/README.md
+++ b/README.md
@@ -18,8 +18,52 @@ It is done simply running the following command from your project package root
 (where the main composer.json file is sited):  
 __$ composer require 'drupal/leaflet'__  
 (for dev: __$ composer require 'drupal/leaflet:1.x-dev'__)
+
+2. __Require/Add the Leaflet JS library via Composer:__  
+In order to do this, it is requested before to add the proper 
+   Leaflet JS library repository to your main composer.json file. 
+   It will be sited into the /Library folder. 
+   
+  * Under the "repositories" index add the 'leaflet' package reference:
+  ```
+  "repositories": {
+      "drupal": {
+        "type": "composer",
+        "url": "https://packages.drupal.org/8"
+      },
+      ...
+      "leaflet": {
+        "type": "package",
+        "package": {
+          "name": "leaflet/leaflet",
+          "version": "1.0.3",
+          "type": "drupal-library",
+          "dist": {
+            "url": "https://github.com/Leaflet/Leaflet/archive/v1.0.3.zip",
+            "type": "zip"
+          }
+        }
+      },
+      ...
+    },
+   
+```
+  * Verify that the proper library destination folder is 
+  defined under "installer-paths" index in you (main/root) composer.json, 
+  and add it otherwise:
+  ```
+  "extra": {
+      "installer-paths": {
+        ...
+        "[path_to_drupal_folder]/libraries/{$name}": ["type:drupal-library"],
+        ...
+      },
+  }
+  ```
+  From your project package root (at the main composer.json level) run:  
+  __$ composer require leaflet/leaflet:~1.0__  
   
-2. Enable the module to be able to use the configurable __Leaflet Map as 
+3. Enable the module to be able to use the configurable __Leaflet Map as 
 Geofield Formatter__;
 
 3. Enable "Leaflet Views" (leaflet_views) submodule for Leaflet Map Views 
diff --git a/leaflet.libraries.yml b/leaflet.libraries.yml
index 623e5e5..4f2a027 100644
--- a/leaflet.libraries.yml
+++ b/leaflet.libraries.yml
@@ -12,10 +12,10 @@ leaflet:
     url: https://github.com/Leaflet/Leaflet/blob/v1.0.3/LICENSE
     gpl-compatible: true
   js:
-    js/leaflet/dist/leaflet.js: {}
+    /libraries/leaflet/dist/leaflet.js: {}
   css:
     component:
-      js/leaflet/dist/leaflet.css: {}
+      /libraries/leaflet/dist/leaflet.css: {}
 
 leaflet-drupal:
     version: VERSION
