getURLParameters : function()

in src/main/js/bmaputil.js [238:243]


        getURLParameters : function (url) {
            var map = {}, self = this;
            var f = function(m,key,value) { map[key] = self.decodeURLParameterValue(value); };
            url.replace(/[?&]+([^=&]+)=([^&]*)/gi, f);
            return map;
        },