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/pharmecy/js/ |
Upload File : |
/* ========================================================================== Asynchronous Loading Google Maps ============================================================================= */ function loadScript() { var script = document.createElement('script'); script.type = 'text/javascript'; script.src = 'https://maps.googleapis.com/maps/api/js?v=3.exp&sensor=false&' + 'callback=initialize'; document.body.appendChild(script); } window.onload = loadScript; /* ========================================================================== Google Maps SETTING's ============================================================================= */ /* * define the coordinates of your company */ lat = 28.65850; lng = 77.20341; var map; var MY_MAPTYPE_ID = 'custom_style'; function initialize() { var featureOpts = [ { "featureType": "landscape", "stylers": [ { "weight": 0.1 }, { "color": "grey" } ] },{ "featureType": "road", "elementType": "geometry", "stylers": [ { "visibility": "simplified" }, { "color": "brown" } ] },{ "featureType": "poi", "elementType": "geometry", "stylers": [ { "color": "yellow" } ] },{ "featureType": "road", "elementType": "labels.text.fill", "stylers": [ { "color": "#2c3e50" } ] },{ "featureType": "poi", "elementType": "labels.text.fill", "stylers": [ { "color": "#e74c3c" } ] },{ "featureType": "road", "elementType": "labels.text.stroke", "stylers": [ { "color": "Yellow" } ] },{ "featureType": "water", "stylers": [ { "color": "blue" } ] } ]; var myLatlng = new google.maps.LatLng(lat,lng); var mapOptions = { zoom: 11, scrollwheel: false, mapTypeControl:false, streetViewControl:false, center: myLatlng, mapTypeControlOptions: { mapTypeIds: [google.maps.MapTypeId.ROADMAP, MY_MAPTYPE_ID] }, mapTypeId: MY_MAPTYPE_ID }; var map = new google.maps.Map(document.getElementById('page_maps'), mapOptions); var marker = new google.maps.Marker({ position: myLatlng, icon: "images/marker.png", map: map }); var styledMapOptions = { name: 'Custom Style' }; var customMapType = new google.maps.StyledMapType(featureOpts, styledMapOptions); map.mapTypes.set(MY_MAPTYPE_ID, customMapType); google.maps.event.addDomListener(window, 'load', initialize); } /*-----------------------------------------------------------------*/