/home/desid573/verdenaturopathy.com.au/wp-content/plugins/meta-box/js
NameSizeModeActions
jqueryui/-0755rm
select2/-0755rm
wp-color-picker-alpha/-0755rm
autocomplete.js16600644editdlrm
autosave.js5950644editdlrm
button-group.js10090644editdlrm
clone.js75130644editdlrm
color.js10510644editdlrm
date.js20190644editdlrm
datetime.js24250644editdlrm
file-input.js11550644editdlrm
file-upload.js27610644editdlrm
file.js38620644editdlrm
image-advanced.js12120644editdlrm
image-select.js6450644editdlrm
image-upload.js10000644editdlrm
input-list.js10880644editdlrm
map-frontend.js18490644editdlrm
map.js77580644editdlrm
media.js157010644editdlrm
notification.js3460644editdlrm
oembed.js8450644editdlrm
osm-frontend.js12240644editdlrm
osm.js75630644editdlrm
range.js4520644editdlrm
script.js7760644editdlrm
select-advanced.js31510644editdlrm
select-tree.js15750644editdlrm
select.js5330644editdlrm
slider.js9220644editdlrm
taxonomy.js2570644editdlrm
time.js13790644editdlrm
validation.min.js512180644editdlrm
video.js11460644editdlrm
wysiwyg.js54990644editdlrm
Edit: /home/desid573/verdenaturopathy.com.au/wp-content/plugins/meta-box/js/map-frontend.js (1849B)
/* global google, jQuery */ jQuery( function ( $ ) { 'use strict'; /** * Callback function for Google Maps Lazy Load library to display map * * @return void */ function displayMap() { var $container = $( this ), options = $container.data( 'map_options' ); var mapOptions = options.js_options, center = new google.maps.LatLng( options.latitude, options.longitude ), map; switch ( mapOptions.mapTypeId ) { case 'ROADMAP': mapOptions.mapTypeId = google.maps.MapTypeId.ROADMAP; break; case 'SATELLITE': mapOptions.mapTypeId = google.maps.MapTypeId.SATELLITE; break; case 'HYBRID': mapOptions.mapTypeId = google.maps.MapTypeId.HYBRID; break; case 'TERRAIN': mapOptions.mapTypeId = google.maps.MapTypeId.TERRAIN; break; } mapOptions.center = center; // Typcast zoom to a number mapOptions.zoom *= 1; if ( typeof mapOptions.styles === 'string' ) { mapOptions.styles = JSON.parse(mapOptions.styles); } map = new google.maps.Map( this, mapOptions ); // Set marker if ( options.marker ) { var marker = new google.maps.Marker( { position: center, map: map } ); // Set marker title if ( options.marker_title ) { marker.setTitle( options.marker_title ); } // Set marker icon if ( options.marker_icon ) { marker.setIcon( options.marker_icon ); } } // Set info window if ( options.info_window ) { var infoWindow = new google.maps.InfoWindow( { content: options.info_window, minWidth: 200 } ); google.maps.event.addListener( marker, 'click', function () { infoWindow.open( map, marker ); } ); if ( true === mapOptions.openInfoWindow ) { infoWindow.open( map, marker ); } } } // Loop through all map instances and display them $( '.rwmb-map-canvas' ).each( displayMap ); } );