diff --git a/leaflet.install b/leaflet.install
index e97327e..337b8d9 100644
--- a/leaflet.install
+++ b/leaflet.install
@@ -10,9 +10,19 @@
  */
 function leaflet_requirements($phase) {
   $requirements = array();
-
-  // Ensure js library is available.
-  if ($phase == 'runtime' && !file_exists(libraries_get_path('leaflet') . '/dist/leaflet.js')) {
+  if ($phase != 'runtime') {
+    return $requirements;
+  }
+  // Ensure js library is installed. Show number of maps avaialble.
+  if (file_exists(libraries_get_path('leaflet') . '/dist/leaflet.js')) {
+    $requirements['leaflet'] = array(
+      'title' => t('Leaflet library'),
+      'value' => t('Installed. @maps available.', array(
+        '@maps' => format_plural(count(leaflet_map_get_info()),'One map', '@count maps'))),
+      'severity' => REQUIREMENT_OK,
+    );
+  }
+  else {
     $requirements['leaflet'] = array(
       'title' => t('Leaflet library not found'),
       'value' => t('The !leaflet javascript library was not found. Please !download it into the libraries folder. Also ensure that the library is named leaflet with a lower case "l".',
