File: /home/u435929562/domains/narayanaahospital.com/public_html/js/map-helper.js
"use strict"; // Start of use strict
// 7. google map
function gMap() {
if ($('.google-map').length) {
$('.google-map').each(function() {
// getting options from html
var Self = $(this);
var mapName = Self.attr('id');
var mapLat = Self.data('map-lat');
var mapLng = Self.data('map-lng');
var iconPath = Self.data('icon-path');
var mapZoom = Self.data('map-zoom');
var mapTitle = Self.data('map-title');
var markers = Self.data('markers');
// defined default style
var styles = [
{
"featureType": "administrative",
"elementType": "all",
"stylers": [
{
"saturation": "-100"
}
]
},
{
"featureType": "administrative.province",
"elementType": "all",
"stylers": [
{
"visibility": "off"
}
]
},
{
"featureType": "landscape",
"elementType": "all",
"stylers": [
{
"saturation": -100
},
{
"lightness": 65
},
{
"visibility": "on"
}
]
},
{
"featureType": "poi",
"elementType": "all",
"stylers": [
{
"saturation": -100
},
{
"lightness": "50"
},
{
"visibility": "simplified"
}
]
},
{
"featureType": "road",
"elementType": "all",
"stylers": [
{
"saturation": "-100"
}
]
},
{
"featureType": "road.highway",
"elementType": "all",
"stylers": [
{
"visibility": "simplified"
}
]
},
{
"featureType": "road.arterial",
"elementType": "all",
"stylers": [
{
"lightness": "30"
}
]
},
{
"featureType": "road.local",
"elementType": "all",
"stylers": [
{
"lightness": "40"
}
]
},
{
"featureType": "transit",
"elementType": "all",
"stylers": [
{
"saturation": -100
},
{
"visibility": "simplified"
}
]
},
{
"featureType": "water",
"elementType": "geometry",
"stylers": [
{
"hue": "#ffff00"
},
{
"lightness": -25
},
{
"saturation": -97
}
]
},
{
"featureType": "water",
"elementType": "labels",
"stylers": [
{
"lightness": -25
},
{
"saturation": -100
}
]
}
];
// if zoom not defined the zoom value will be 15;
if (!mapZoom) {
var mapZoom = 14;
};
// init map
var map;
map = new GMaps({
div: '#' + mapName,
scrollwheel: false,
lat: mapLat,
lng: mapLng,
styles: styles,
zoom: mapZoom
});
// if icon path setted then show marker
if (iconPath) {
$.each(markers, function(index, value) {
var index = value;
var html;
if (index[2]) {
html = index[2];
};
if (!index[3]) {
index[3] = iconPath;
};
map.addMarker({
icon: index[3],
lat: index[0],
lng: index[1],
infoWindow: {
content: html
}
});
});
}
});
};
}
// instance of fuction while Document ready event
jQuery(document).on('ready', function() {
(function($) {
gMap();
})(jQuery);
});