Server IP : 103.118.17.23 / Your IP : 216.73.216.188 Web Server : Microsoft-IIS/10.0 System : Windows NT RESELLERPLESK22 10.0 build 20348 (Windows Server 2016) AMD64 User : IWAM_plesk(default) ( 0) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : E:/Inetpub/vhosts/mesa.org.in/httpdocs/js/trigger/ |
Upload File : |
;(function($){ "use strict"; $(document).ready(function() { /* Find the Latitude and Longitude of your address: - http://itouchmap.com/latlong.html - http://universimmedia.pagesperso-orange.fr/geo/loc.htm - http://www.findlatitudeandlongitude.com/find-address-from-latitude-and-longitude/ Find settings explained: - https://github.com/marioestrada/jQuery-gMap */ // Map Markers var mapMarkers = [{ address: "3 Tompkins Ave, Brooklyn, NY 11206", latitude: 40.699707, longitude: -73.947043, icon: { image: "images/map-marker.png", iconsize: [32, 39], // w, h iconanchor: [13,39] // x, y }, html: '<div style="width: 300px; padding: 15px;"><h3 style="margin-bottom: 15px;">Hogash Studio</span></h3><p class="nobottommargin"><span style="line-height:1.4;">KALLYAS TEMPLATE, THE <span class="fw-semibold">SWISS ARMY SECRET</span> FOR BUILDING THE MODERN WEBSITE</span></p></div>', },{ address: "18-77 Madison St, Flushing, NY 11385", latitude: 40.703871, longitude: -73.904729, icon: { image: "images/map-marker.png", iconsize: [32, 39], // w, h iconanchor: [13, 39] // x, y }, html: '<div style="width: 300px; padding: 15px;"><h3 style="margin-bottom: 15px;">Hogash Studio</span></h3><p class="nobottommargin"><span style="line-height:1.4;">KALLYAS TEMPLATE, THE <span class="fw-semibold">SWISS ARMY SECRET</span> FOR BUILDING THE MODERN WEBSITE</span></p></div>', }]; // Map Color Scheme - more styles here http://snazzymaps.com/ var mapStyles = [ { "featureType": "water", "stylers": [ { "visibility": "on" }, { "color": "#acbcc9" } ] }, { "featureType": "landscape", "stylers": [ { "color": "#f2e5d4" } ] }, { "featureType": "road.highway", "elementType": "geometry", "stylers": [ { "color": "#c5c6c6" } ] }, { "featureType": "road.arterial", "elementType": "geometry", "stylers": [ { "color": "#e4d7c6" } ] }, { "featureType": "road.local", "elementType": "geometry", "stylers": [ { "color": "#fbfaf7" } ] }, { "featureType": "poi.park", "elementType": "geometry", "stylers": [ { "color": "#c5dac6" } ] }, { "featureType": "administrative", "stylers": [ { "visibility": "on" }, { "lightness": 33 } ] }, { "featureType": "road" }, { "featureType": "poi.park", "elementType": "labels", "stylers": [ { "visibility": "on" }, { "lightness": 20 } ] }, {}, { "featureType": "road", "stylers": [ { "lightness": 20 } ] } ]; // Map Initial Location var initLatitude = 40.699707; var initLongitude = -73.947043; // Map Extended Settings var map = jQuery(".th-google_map").gMap({ controls: { panControl: true, zoomControl: true, zoomControlOptions: { position: google.maps.ControlPosition.RIGHT_CENTER }, mapTypeControl: true, scaleControl: true, streetViewControl: true, streetViewControlOptions: { position: google.maps.ControlPosition.RIGHT_CENTER }, overviewMapControl: true }, scrollwheel: false, markers: mapMarkers, latitude: initLatitude, longitude: initLongitude, zoom: 14, style: mapStyles, draggable: Modernizr.touch ? false : true }); });// end of document ready })(jQuery);