Current File : /home/jvzmxxx/wiki/extensions/Maps/SemanticMaps/src/services/GoogleMaps3/ext.sm.googlemaps3ajax.js
/**
 * JavaScript for Google Maps v3 maps in the Semantic Maps extension.
 * @see https://www.mediawiki.org/wiki/Extension:Semantic_Maps
 *
 * @licence GNU GPL v2+
 * @author Peter Grassberger < petertheone@gmail.com >
 */


(function( $, sm ) {
    var ajaxRequest = null;
    var mapEvents = ['dragend', 'zoom_changed'];

    $( document ).ready( function() {
        // todo: find a way to remove setTimeout.
        setTimeout(function() {
            if ( typeof google === 'undefined' ) {
                return;
            }
            $( window.maps.googlemapsList ).each( function( index, map ) {
                if (!map.options.ajaxquery || !map.options.ajaxcoordproperty) {
                    return;
                }
                $( mapEvents ).each( function( index, event ) {
                    google.maps.event.addListener( map.map, event, function () {
                        var bounds = map.map.getBounds();
                        var query = sm.buildQueryString(
                            decodeURIComponent(map.options.ajaxquery.replace(/\+/g, ' ')),
                            map.options.ajaxcoordproperty,
                            bounds.getNorthEast().lat(),
                            bounds.getNorthEast().lng(),
                            bounds.getSouthWest().lat(),
                            bounds.getSouthWest().lng()
                        );

                        if ( ajaxRequest !== null ) {
                            ajaxRequest.abort();
                        }
                        ajaxRequest = sm.ajaxUpdateMarker( map, query, map.options.icon ).done( function () {
                            map.createMarkerCluster();
                            ajaxRequest = null;
                        } );
                    } );
                } );
            } );
        }, 500 );
    } );
})( window.jQuery, window.sm );