ÿØÿà JFIF ÿÛ „ ( %"1"%)+...383,7(-.-
![]() Server : Apache/2.4.6 (CentOS) OpenSSL/1.0.2k-fips PHP/7.4.20 System : Linux st2.domain.com 3.10.0-1127.10.1.el7.x86_64 #1 SMP Wed Jun 3 14:28:03 UTC 2020 x86_64 User : apache ( 48) PHP Version : 7.4.20 Disable Function : NONE Directory : /var/www/html/admin.adimi/layout/bootstrap4/global_assets/js/demo_pages/maps/google/basic/ |
/* ------------------------------------------------------------------------------ * * # Basic map * * Specific JS code additions for maps_google_basic.html page * * ---------------------------------------------------------------------------- */ // Setup module // ------------------------------ var GoogleMapBasic = function() { // // Setup module components // // Line chart var _googleMapBasic = function() { if (typeof google == 'undefined') { console.warn('Warning - Google Maps library is not loaded.'); return; } // Map settings function initialize() { // Define map element var map_basic_element = document.getElementById('map_basic'); // Optinos var mapOptions = { zoom: 12, center: new google.maps.LatLng(47.496, 19.037) }; // Apply options var map = new google.maps.Map(map_basic_element, mapOptions); } // Load map google.maps.event.addDomListener(window, 'load', initialize); }; // // Return objects assigned to module // return { init: function() { _googleMapBasic(); } } }(); // Initialize module // ------------------------------ document.addEventListener('DOMContentLoaded', function() { GoogleMapBasic.init(); });