diff --git a/README.md b/README.md
index a942a5b27..9fa6174de 100644
--- a/README.md
+++ b/README.md
@@ -61,6 +61,36 @@ Click on a point or marker on the map to learn more about it .
var windrose = L.OWM.current({intervall: 15, minZoom: 3, markerFunction: myWindroseMarker, popup: false, clusterSize: 50,imageLoadingBgUrl: 'https://openweathermap.org/img/w0/iwind.png' });
windrose.on('owmlayeradd', windroseAdded, windrose);
+## Open Infra Map :
+
+##### OpenInfraMap_Power Layer :
+
+ var OpenInfraMap_Power = L.tileLayer('https://tiles-{s}.openinframap.org/power/{z}/{x}/{y}.png',{
+ maxZoom: 18,
+ attribution: '© OpenStreetMap, About OpenInfraMap'
+ });
+
+##### OpenInfraMap_Petroleum Layer :
+
+ var OpenInfraMap_Petroleum = L.tileLayer('https://tiles-{s}.openinframap.org/petroleum/{z}/{x}/{y}.png', {
+ maxZoom: 18,
+ attribution: '© OpenStreetMap, About OpenInfraMap'
+ });
+
+##### OpenInfraMap_Telecom Layer :
+
+ var OpenInfraMap_Telecom = L.tileLayer('https://tiles-{s}.openinframap.org/telecoms/{z}/{x}/{y}.png', {
+ maxZoom: 18,
+ attribution: '© OpenStreetMap, About OpenInfraMap'
+ });
+
+##### OpenInfraMap_Water Layer :
+
+ var OpenInfraMap_Water = L.tileLayer('https://tiles-{s}.openinframap.org/water/{z}/{x}/{y}.png',{
+ maxZoom: 18,
+ attribution: '© OpenStreetMap, About OpenInfraMap'
+ });
+
## Add Leaflet-Hash for easy sharing of map :
### Steps To add :
diff --git a/example/index.html b/example/index.html
index d012adffd..89fc6a12c 100644
--- a/example/index.html
+++ b/example/index.html
@@ -58,6 +58,23 @@
var MapKnitter = L.layerGroup.mapKnitterLayer() ;
var ToxicRelease = L.layerGroup.toxicReleaseLayer() ;
+ var OpenInfraMap_Power = L.tileLayer('https://tiles-{s}.openinframap.org/power/{z}/{x}/{y}.png',{
+ maxZoom: 18,
+ attribution: '© OpenStreetMap, About OpenInfraMap'
+ });
+ var OpenInfraMap_Petroleum = L.tileLayer('https://tiles-{s}.openinframap.org/petroleum/{z}/{x}/{y}.png', {
+ maxZoom: 18,
+ attribution: '© OpenStreetMap, About OpenInfraMap'
+ });
+ var OpenInfraMap_Telecom = L.tileLayer('https://tiles-{s}.openinframap.org/telecoms/{z}/{x}/{y}.png', {
+ maxZoom: 18,
+ attribution: '© OpenStreetMap, About OpenInfraMap'
+ });
+ var OpenInfraMap_Water = L.tileLayer('https://tiles-{s}.openinframap.org/water/{z}/{x}/{y}.png',{
+ maxZoom: 18,
+ attribution: '© OpenStreetMap, About OpenInfraMap'
+ });
+
var Justicemap_income = L.tileLayer.provider('JusticeMap.income') ;
var JusticeMap_americanIndian = L.tileLayer.provider('JusticeMap.americanIndian') ;
var JusticeMap_asian = L.tileLayer.provider('JusticeMap.asian') ;
@@ -98,6 +115,10 @@
"ToxicRelease": ToxicRelease ,
"OdorReport": OdorReport ,
"MapKnitter": MapKnitter ,
+ "OpenInfraMap_Power": OpenInfraMap_Power ,
+ "OpenInfraMap_Telecom": OpenInfraMap_Telecom ,
+ "OpenInfraMap_Petroleum": OpenInfraMap_Petroleum ,
+ "OpenInfraMap_Water": OpenInfraMap_Water ,
"Justicemap_income": Justicemap_income,
"JusticeMap_americanIndian": JusticeMap_americanIndian ,
"JusticeMap_asian": JusticeMap_asian ,