| Server IP : 213.186.33.4 / Your IP : 216.73.216.222 Web Server : Apache System : Linux webm005.cluster103.gra.hosting.ovh.net 6.18.39-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Tue Jul 21 12:03:15 CEST 2026 x86_64 User : karinebmkh ( 644538) PHP Version : 8.4.22 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/karinebmkh/www2/wp-content/plugins/so-widgets-bundle/js/ |
Upload File : |
/* globals jQuery, google, sowb */
window.sowb = window.sowb || {};
sowb.SiteOriginGoogleMap = function($) {
return {
// So that we can always display something, even if no location or address was entered.
DEFAULT_LOCATIONS: [
'Addo Elephant National Park, R335, Addo',
'Cape Town, Western Cape, South Africa',
'San Francisco Bay Area, CA, United States',
'New York, NY, United States',
],
showMap: function(element, location, options) {
var zoom = Number(options.zoom);
if ( !zoom ) zoom = 14;
var breakpointCheck = window.matchMedia( '(max-width: ' + options.breakpoint + 'px)' )
// Check if the user is viewing the map on mobile
if ( breakpointCheck.matches ) {
zoom = options.mobileZoom;
}
var userMapTypeId = 'user_map_style';
var mapOptions = {
zoom: zoom,
gestureHandling: options.gestureHandling,
disableDefaultUI: options.disableUi,
zoomControl: options.zoomControl,
panControl: options.panControl,
center: location,
mapTypeControlOptions: {
mapTypeIds: [
google.maps.MapTypeId.ROADMAP,
google.maps.MapTypeId.SATELLITE,
userMapTypeId
]
}
};
var map = new google.maps.Map(element, mapOptions);
var userMapOptions = {
name: options.mapName
};
var userMapStyles = options.mapStyles;
if ( userMapStyles ) {
var userMapType = new google.maps.StyledMapType(userMapStyles, userMapOptions);
map.mapTypes.set(userMapTypeId, userMapType);
map.setMapTypeId(userMapTypeId);
}
if (options.markerAtCenter) {
this.centerMarker = new google.maps.Marker({
position: location,
map: map,
draggable: options.markersDraggable,
icon: options.markerIcon,
title: ''
});
}
if(options.keepCentered) {
var center;
google.maps.event.addDomListener(map, 'idle', function () {
center = map.getCenter();
});
google.maps.event.addDomListener(window, 'resize', function () {
map.setCenter(center);
});
}
this.linkAutocompleteField(options.autocomplete, options.autocompleteElement, map, options);
this.showMarkers(options.markerPositions, map, options);
this.showDirections(options.directions, map, options);
},
linkAutocompleteField: function (autocomplete, autocompleteElement, map, options) {
if( autocomplete && autocompleteElement ) {
var updateMapLocation = function ( address ) {
if ( this.inputAddress !== address ) {
this.inputAddress = address;
this.getLocation( this.inputAddress ).done(
function ( location ) {
map.setZoom( 15 );
map.setCenter( location );
if( this.centerMarker ) {
this.centerMarker.setPosition( location );
this.centerMarker.setTitle( this.inputAddress );
}
}.bind( this )
);
}
}.bind( this );
var $autocompleteElement = $( autocompleteElement );
autocomplete.addListener( 'place_changed', function () {
var place = autocomplete.getPlace();
map.setZoom( 15 );
if ( place.geometry ) {
map.setCenter( place.geometry.location );
if( this.centerMarker ) {
this.centerMarker.setPosition(place.geometry.location);
}
}
}.bind( this ) );
google.maps.event.addDomListener( autocompleteElement, 'keypress', function ( event ) {
var key = event.keyCode || event.which;
if ( key === '13' ) {
event.preventDefault();
}
} );
$autocompleteElement.focusin( function () {
if ( !this.resultsObserver ) {
var autocompleteResultsContainer = document.querySelector( '.pac-container' );
this.resultsObserver = new MutationObserver( function () {
var $topResult = $( $( '.pac-item' ).get( 0 ) );
var queryPartA = $topResult.find( '.pac-item-query' ).text();
var queryPartB = $topResult.find( 'span' ).not( '[class]' ).text();
var topQuery = queryPartA + ( queryPartB ? (', ' + queryPartB) : '' );
if ( topQuery ) {
updateMapLocation( topQuery );
}
} );
var config = { attributes: true, childList: true, characterData: true };
this.resultsObserver.observe( autocompleteResultsContainer, config );
}
}.bind( this ) );
var revGeocode = function ( latLng ) {
this.getGeocoder().geocode( { location: latLng }, function ( results, status ) {
if ( status === google.maps.GeocoderStatus.OK ) {
if ( results.length > 0 ) {
var addr = results[ 0 ].formatted_address;
$autocompleteElement.val( addr );
if( this.centerMarker ) {
this.centerMarker.setPosition(latLng);
this.centerMarker.setTitle(addr);
}
}
}
}.bind( this ) );
}.bind( this );
map.addListener( 'click', function ( event ) {
revGeocode( event.latLng );
} );
this.centerMarker.addListener( 'dragend', function ( event ) {
revGeocode( event.latLng );
} );
}
},
showMarkers: function(markerPositions, map, options) {
if ( markerPositions && markerPositions.length ) {
this.infoWindows = [];
var markerBatches = [];
var BATCH_SIZE = 10;
// Group markers into batches of 10 in attempt to avoid query limits
for ( var i = 0; i < markerPositions.length; i++ ) {
var batchIndex = parseInt( i / BATCH_SIZE ); // truncate decimals
if ( markerBatches.length === batchIndex ) {
markerBatches[ batchIndex ] = [];
}
markerBatches[ batchIndex ][ i % BATCH_SIZE ] = markerPositions[ i ];
}
var geocodeMarker = function ( mrkr ) {
var customIcon = mrkr.custom_marker_icon;
var markerInfo = mrkr.hasOwnProperty( 'info' ) ? mrkr.info : null;
var infoMaxWidth = mrkr.hasOwnProperty( 'info_max_width' ) ? mrkr.info_max_width : null;
return this.getLocation( mrkr.place ).done( function ( location ) {
var mrkerIcon = options.markerIcon;
if ( customIcon ) {
mrkerIcon = customIcon;
}
var marker = new google.maps.Marker( {
position: location,
map: map,
draggable: options.markersDraggable,
icon: mrkerIcon,
title: ''
} );
if ( markerInfo ) {
var infoWindowOptions = { content: markerInfo };
if ( infoMaxWidth ) {
infoWindowOptions.maxWidth = infoMaxWidth;
}
var infoDisplay = options.markerInfoDisplay;
infoWindowOptions.disableAutoPan = infoDisplay === 'always';
var infoWindow = new google.maps.InfoWindow( infoWindowOptions );
this.infoWindows.push( infoWindow );
var openEvent = infoDisplay;
if ( infoDisplay === 'always' ) {
openEvent = 'click';
infoWindow.open( map, marker );
}
marker.addListener( openEvent, function () {
infoWindow.open( map, marker );
if ( infoDisplay !== 'always' && !options.markerInfoMultiple ) {
this.infoWindows.forEach( function ( iw ) {
if ( iw !== infoWindow ) {
iw.close();
}
} );
}
}.bind( this ) );
if ( infoDisplay === 'mouseover' ) {
marker.addListener( 'mouseout', function () {
setTimeout( function () {
infoWindow.close();
}, 100 );
} );
}
}
}.bind( this ) )
.fail( function ( errorStatus ) {
overQuota = errorStatus === google.maps.GeocoderStatus.OVER_QUERY_LIMIT;
console.log( errorStatus );
} );
}.bind( this );
var overQuota = false;
var geocodeMarkerBatch = function ( markerBatchHead, markerBatchTail ) {
var doneCount = 0;
for ( var i = 0; i < markerBatchHead.length; i++ ) {
// If we're over the quota we want to stop making any more requests.
if ( overQuota ) {
break;
}
geocodeMarker( markerBatchHead[ i ] ).then(
function () {
if ( ++doneCount === markerBatchHead.length && markerBatchTail.length ) {
geocodeMarkerBatch( markerBatchTail.shift(), markerBatchTail );
}
}
);
}
}.bind( this );
geocodeMarkerBatch( markerBatches.shift(), markerBatches );
}
},
showDirections: function(directions, map) {
if ( directions ) {
if ( directions.waypoints && directions.waypoints.length ) {
directions.waypoints.map(
function (wypt) {
wypt.stopover = Boolean(wypt.stopover);
}
);
}
var directionsRenderer = new google.maps.DirectionsRenderer();
directionsRenderer.setMap(map);
var directionsService = new google.maps.DirectionsService();
directionsService.route({
origin: directions.origin,
destination: directions.destination,
travelMode: directions.travelMode.toUpperCase(),
avoidHighways: directions.avoidHighways,
avoidTolls: directions.avoidTolls,
waypoints: directions.waypoints,
optimizeWaypoints: directions.optimizeWaypoints,
},
function(result, status) {
if (status === google.maps.DirectionsStatus.OK) {
directionsRenderer.setOptions( { preserveViewport: directions.preserveViewport } );
directionsRenderer.setDirections(result);
}
});
}
},
initMaps: function() {
// Init any autocomplete fields first.
var $autoCompleteFields = $( '.sow-google-map-autocomplete' );
var autoCompleteInit = new $.Deferred();
if( $autoCompleteFields.length === 0 ) {
autoCompleteInit.resolve();
} else {
$autoCompleteFields.each(function (index, element) {
if ( typeof google.maps.places === 'undefined' ) {
autoCompleteInit.reject('Sorry, we couldn\'t load the "places" library due to another plugin, so the autocomplete feature is not available.');
return;
}
var autocomplete = new google.maps.places.Autocomplete( element );
var $mapField = $(element).siblings('.sow-google-map-canvas');
if ($mapField.length > 0) {
var options = $mapField.data('options');
options.autocomplete = autocomplete;
options.autocompleteElement = element;
this.getLocation(options.address).done(
function (location) {
this.showMap($mapField.get(0), location, options);
$mapField.data('initialized', true);
autoCompleteInit.resolve();
}.bind(this)
).fail(function () {
$mapField.append('<div><p><strong>' + soWidgetsGoogleMap.geocode.noResults + '</strong></p></div>');
autoCompleteInit.reject();
});
}
}.bind(this));
}
autoCompleteInit.always(function(){
$('.sow-google-map-canvas').each(function (index, element) {
var $$ = $(element);
if( $$.data( 'initialized' ) ) {
// Already initialized so continue to next element.
return true;
}
var options = $$.data( 'options' );
var address = options.address;
// If no address was specified, but we have markers, use the first marker as the map center.
if(!address) {
var markers = options.markerPositions;
if(markers && markers.length) {
address = markers[0].place;
}
}
this.getLocation( address ).done(
function ( location ) {
this.showMap( $$.get( 0 ), location, options );
$$.data( 'initialized', true );
}.bind( this )
).fail( function () {
$$.append( '<div><p><strong>' + soWidgetsGoogleMap.geocode.noResults + '</strong></p></div>' );
} );
}.bind(this));
}.bind(this))
.fail(function(error){
console.log(error);
});
},
getGeocoder: function () {
if ( !this._geocoder ) {
this._geocoder = new google.maps.Geocoder();
}
return this._geocoder;
},
getLocation: function ( inputLocation ) {
var locationPromise = new $.Deferred();
var location = { address: inputLocation };
//check if address is actually a valid latlng
var latLng;
if ( inputLocation && inputLocation.indexOf( ',' ) > -1 ) {
// A latlng value should be of the format 'lat,lng' or '(lat,lng)'
var vals = inputLocation.replace(/[\(\)]/g, '').split( ',' );
if ( vals && vals.length === 2 ) {
latLng = new google.maps.LatLng( vals[ 0 ], vals[ 1 ] );
// Let the API decide if we have a valid latlng
// This should fail if the input is an address containing a comma
// e.g. 123 Sesame Street, Middleburg, FL, United States
if ( !(isNaN( latLng.lat() ) || isNaN( latLng.lng() )) ) {
location = { location: { lat: latLng.lat(), lng: latLng.lng() } };
}
}
}
if ( location.hasOwnProperty( 'location' ) ) {
// We're using entered latlng coordinates directly
locationPromise.resolve( location.location );
} else if ( location.hasOwnProperty( 'address' ) ) {
// Either user entered an address, or fall back to defaults and use the geocoder.
if ( !location.address ) {
var rndIndx = parseInt( Math.random() * this.DEFAULT_LOCATIONS.length );
location.address = this.DEFAULT_LOCATIONS[ rndIndx ];
}
var gecodeIteration = 0;
var onGeocodeResults = function ( results, status ) {
if ( status === google.maps.GeocoderStatus.OK ) {
locationPromise.resolve( results[ 0 ].geometry.location );
} else if ( status === google.maps.GeocoderStatus.OVER_QUERY_LIMIT ) {
//We make 3 attempts, otherwise we assume we've reached the quota limit and stop trying.
if ( ++gecodeIteration < 3 ) {
setTimeout( function () {
this.getGeocoder().geocode.call( this, location, onGeocodeResults );
}.bind( this ), 1000 );
} else {
locationPromise.reject( status );
}
} else if (
status === google.maps.GeocoderStatus.ZERO_RESULTS ||
status === google.maps.GeocoderStatus.OVER_DAILY_LIMIT
) {
locationPromise.reject( status );
}
}.bind( this );
this.getGeocoder().geocode( location, onGeocodeResults );
}
return locationPromise;
},
};
};
// Called by Google Maps API when it has loaded.
function soGoogleMapInitialize() {
new sowb.SiteOriginGoogleMap(jQuery).initMaps();
}
jQuery(function ($) {
sowb.setupGoogleMaps = function() {
var libraries = [];
var apiKey;
var $mapCanvas = $('.sow-google-map-canvas');
if ( ! $mapCanvas.length ) {
return;
}
$mapCanvas.each(function(index, element) {
var $this = $(element);
if ( ! $this.is( ':visible' ) || $this.data( 'apiInitialized' ) ) {
return $this;
}
var mapOptions = $this.data( 'options' );
if ( mapOptions) {
if( typeof mapOptions.libraries !== 'undefined' && mapOptions.libraries !== null ) {
libraries = libraries.concat(mapOptions.libraries);
}
if( !apiKey && mapOptions.apiKey ) {
apiKey = mapOptions.apiKey;
}
}
$this.data( 'apiInitialized', true );
});
var mapsApiLoaded = typeof window.google !== 'undefined' && typeof window.google.maps !== 'undefined';
if ( sowb.mapsApiInitialized ) {
var timeoutId = setTimeout( function () {
if ( mapsApiLoaded ) {
clearTimeout( timeoutId );
soGoogleMapInitialize();
}
}, 100 );
} else {
if ( ! apiKey ) {
console.warn( 'SiteOrigin Google Maps: Could not find API key. Google Maps API key is required.' );
apiKey = '';
}
// Try to load even if API key is missing to allow Google Maps API to provide it's own warnings/errors about missing API key.
var apiUrl = 'https://maps.googleapis.com/maps/api/js?key=' + apiKey + '&callback=soGoogleMapInitialize';
if ( libraries && libraries.length ) {
apiUrl += '&libraries=' + libraries.join(',');
}
// This allows us to "catch" Google Maps JavaScript API errors and do a bit of custom handling. In this case,
// we display a user-specified fallback image if there is one.
if ( window.console && window.console.error ) {
var errLog = window.console.error;
sowb.onLoadMapsApiError = function ( error ) {
var matchError;
if ( typeof error === 'string' ) {
matchError = error.match( /^Google Maps API (error|warning): ([^\s]*)\s([^\s]*)(?:\s(.*))?/ );
}
if ( matchError && matchError.length && matchError[0] ) {
$( '.sow-google-map-canvas' ).each( function ( index, element ) {
var $this = $( element );
if ( $this.data( 'fallbackImage' ) ) {
var imgData = $this.data( 'fallbackImage' );
if ( imgData.hasOwnProperty( 'img' ) ) {
$this.append( imgData.img );
}
}
} );
}
errLog.apply( window.console, arguments );
};
window.console.error = sowb.onLoadMapsApiError;
}
$( 'body' ).append( '<script async type="text/javascript" src="' + apiUrl + '">' );
sowb.mapsApiInitialized = true;
}
};
sowb.setupGoogleMaps();
$( sowb ).on( 'setup_widgets', sowb.setupGoogleMaps );
});