infra-geo-ouverte / igo

Ce dépot est obsolète. This package has been deprecated. Visit/Visitez : https://github.com/infra-geo-ouverte/igo2
http://www.igouverte.org/
Other
43 stars 14 forks source link

AnalyseurGeoJson #218

Closed stetou closed 3 years ago

stetou commented 7 years ago

J'ai modifié igo/interfaces/navigateur/public/js/app/analyseur/analyseurGeoJSON.js (LireUrl), mais je suis en docker et je ne peux pas pousser le code. @mbarbeau tu peux le faire svp

$.ajax({
            url: url,
            dataType:'jsonp',
            cache: false,
            crossDomain:true,
            success: function(result, status, xhr){
                var rep = that.lire(result);
                if(callback){
                    callback.call(that, rep, status, xhr);
                }
            },
            error: function(xhr, status, error){
                if(callback){
                    callback.call(that, error, status, xhr);
                }
            }
        });

Si la requete est crossdomain il semble que ca ne fonctionne pas si on a pas jsonp

stetou commented 7 years ago

J'ai modifié igo/interfaces/navigateur/public/js/app/analyseur/analyseurGeoJSON.js (LireUrl), mais je suis en docker et je ne peux pas pousser le code. Voici la fonction modifiée @mbarbeau peux tu faire la modif svp?

AnalyseurGeoJSON.prototype.lireUrl = function(opt){
        opt = opt || {};
        var url = opt.url;
        var datatype = opt.datatype;//json,jsonp
        var callback = opt.callback;
        if(!callback || !url){
            return false;
        }
        var that = this;
        $.ajax({
            url: url,
            dataType: datatype ? datatype : 'json',
            cache: false,
            crossDomain:true,
            success: function(result, status, xhr){
                var rep = that.lire(result);
                if(callback){
                    callback.call(that, rep, status, xhr);
                }
            },
            error: function(xhr, status, error){
                if(callback){
                    callback.call(that, error, status, xhr);
                }
            }
        });
    };
pelord commented 3 years ago

Archivage du dépôt. Fermeture des issues/Pull requests