This repository has been archived on 2023-08-16. You can view files and clone it, but cannot push or open issues or pull requests.
Omphaloskepsis/plugins/jetpack/modules/widgets/contact-info/contact-info-map.js
2018-03-21 18:19:20 +00:00

42 lines
1.2 KiB
JavaScript

/* global google */
/* jshint unused:false */
jQuery( function( $ ) {
function setupContactMaps( rootElement ) {
rootElement = $( rootElement || document.body );
rootElement.find( 'div.contact-map' ).each( function() {
// get lat and lon from hidden input values
var lat = jQuery(this).find('.contact-info-map-lat').val(),
lon = jQuery(this).find('.contact-info-map-lon').val(),
lat_lon = new google.maps.LatLng( lat, lon ),
mapOptions = {
zoom: 16,
center: lat_lon,
mapTypeId: google.maps.MapTypeId.ROADMAP
},
map = new google.maps.Map(jQuery(this).find('.contact-info-map-canvas')[0], mapOptions),
marker = new google.maps.Marker({
map: map,
position: lat_lon
});
google.maps.event.addListenerOnce(map, 'mouseover', function() {
google.maps.event.trigger(map, 'resize');
});
});
}
setupContactMaps();
if ( wp && wp.customize && wp.customizerHasPartialWidgetRefresh() ) {
wp.customize.selectiveRefresh.bind( 'partial-content-rendered', function( placement ) {
if ( wp.isJetpackWidgetPlaced( placement, 'widget_contact_info' ) ) {
setupContactMaps( placement.container );
}
} );
}
} );