Korzystasz z funkcji ładowania i uruchamiania warstwy w OpenLayers 3?


Odpowiedzi:


19

Zakładając, że używasz ol.layer.Vectorz ol.source.GeoJSON, możesz użyć czegoś takiego:

var vectorSource = new ol.source.GeoJSON({
  projection : 'EPSG:3857',
  url: 'http://examples.org/fearures.json'
});

var vectorLayer = new ol.layer.Vector({
  source: vectorSource
});

map.addLayer(vectorLayer);

// show loading icon
// ...

var listenerKey = vectorSource.on('change', function(e) {
  if (vectorSource.getState() == 'ready') {
    // hide loading icon
    // ...
    // and unregister the "change" listener 
    ol.Observable.unByKey(listenerKey);
    // or vectorSource.unByKey(listenerKey) if
    // you don't use the current master branch
    // of ol3
  }
});

To pokazuje, jak uzyskać powiadomienie, gdy źródło wektora jest załadowane. Działa tylko ze źródłami dziedziczącymi z ol.source.StaticVector. Przykłady obejmują ol.source.GeoJSONi ol.source.KML.

Zauważ też, że ten kod może już nie działać w przyszłości, gdy ol3 zapewni spójny sposób sprawdzania, czy / kiedy ładowane jest źródło.


Świetny! Też tego szukałem. Zastanawiasz się, dlaczego OL3 jeszcze go nie obejmuje.
Germán Carrillo

Dlaczego nie vectorSource.once('change', function(e){...}?
Jonatas Walker

14

W wersji OL3 3.10.0 wszystko się zmieniło. Jest to bardziej przejrzyste niż starsze wersje, ale wciąż bardziej skomplikowane niż ol2.

Zatem dla warstw TILE (ol.layer.Tile) fragment kodu powinien wyglądać następująco:

//declare the layer
var osmLayer =  new ol.layer.Tile({
  source: new ol.source.OSM()
});
//asign the listeners on the source of tile layer
osmLayer.getSource().on('tileloadstart', function(event) {
//replace with your custom action
document.getElementById('tilesloaderindicatorimg').src = 'css/images/tree_loading.gif';
 });

osmLayer.getSource().on('tileloadend', function(event) {
//replace with your custom action
document.getElementById('tilesloaderindicatorimg').src = 'css/images/ok.png';
 });
osmLayer.getSource().on('tileloaderror', function(event) {
//replace with your custom action        
document.getElementById('tilesloaderindicatorimg').src = 'css/images/no.png';
 });

podczas gdy w przypadku warstw WMS podejście jest nieco inne:

//declare the layer
var wmsLayer =   new ol.layer.Image({
source: new ol.source.ImageWMS({
  attributions: [new ol.Attribution({
    html: '© ' +
        '<a href="http://www.geo.admin.ch/internet/geoportal/' +
        'en/home.html">' +
        'National parks / geo.admin.ch</a>'
  })],
  crossOrigin: 'anonymous',
  params: {'LAYERS': 'ch.bafu.schutzgebiete-paerke_nationaler_bedeutung'},
  serverType: 'mapserver',
  url: 'http://wms.geo.admin.ch/'
})
});

//and now asign the listeners on the source of it
var lyrSource = wmsLayer.getSource();
  lyrSource.on('imageloadstart', function(event) {
  console.log('imageloadstart event',event);
  //replace with your custom action
  var elemId = event.target.params_.ELEMENTID;
  document.getElementById(elemId).src = 'css/images/tree_loading.gif'; 
  });

  lyrSource.on('imageloadend', function(event) {
   console.log('imageloadend event',event);
  //replace with your custom action
  var elemId = event.target.params_.ELEMENTID;
  document.getElementById(elemId).src = 'css/images/ok.png'; 
  });

  lyrSource.on('imageloaderror', function(event) {
   console.log('imageloaderror event',event);
  //replace with your custom action
  var elemId = event.target.params_.ELEMENTID;
  document.getElementById(elemId).src = 'css/images/no.png'; 
  }); 

W przypadku warstw WFS Vector sprawy są jeszcze bardziej skomplikowane:

//declare the vector source
sourceVector = new ol.source.Vector({
    loader: function (extent) {
        //START LOADING
        //place here any actions on start loading layer
        document.getElementById('laodingcont').innerHTML = "<font color='orange'>start loading.....</font>";
        $.ajax('http://demo.opengeo.org/geoserver/wfs', {
            type: 'GET',
            data: {
                service: 'WFS',
                version: '1.1.0',
                request: 'GetFeature',
                typename: 'water_areas',
                srsname: 'EPSG:3857',
                bbox: extent.join(',') + ',EPSG:3857'
            }
        }).done(loadFeatures)
            .fail(function () {
            //FAIL LOADING
            //place here any actions on fail loading layer
            document.getElementById('laodingcont').innerHTML = "<font color='red'>error loading vector layer.</font>";
        });
    },
    strategy: ol.loadingstrategy.bbox
});

//once we have a success responce, we need to parse it and add fetaures on map
function loadFeatures(response) {
formatWFS = new ol.format.WFS(),
sourceVector.addFeatures(formatWFS.readFeatures(response));
 //FINISH LOADING
document.getElementById('laodingcont').innerHTML = "<font color='green'>finish loading vector layer.</font>";
}

sprawdź ten post. ma wszystkie powyższe + skrzypce dla warstw wektorowych WFS


1
Witamy w GIS.SE! Czy możesz rozszerzyć swoją odpowiedź i podać krótkie streszczenie artykułu, do którego linkujesz, i która część jest istotna dla odpowiedzi na to pytanie. W ten sposób odpowiedź będzie w stanie pomóc ludziom na tej stronie, nawet po śmierci łącza.
Kersten

przepraszam newby. gotowy!!!!!!!!
pavlos

aby sprawdzić, jaki typ warstwy masz, oto jak możesz to zrobić dla OL3 gis.stackexchange.com/a/140852/63141
Daniël Tulp

To powinna być najlepsza odpowiedź!
joaorodr84

1
Proszę OL chłopaki .... KISS człowiek ... KISS ....
Magno C

2

Nie znalazłem klasy ol.source.GeoJSONi nie mogłem znaleźć przypadku, w którym vectorSource.getState() != 'ready'. Więc skończyło się na zrobieniu czegoś takiego:

    function spin(active) {
        if (active) {
            // start spinning the spinner
        } else {
            // stop spinning the spinner
        }
    }

    // Toggle spinner on layer loading
    layer.on('change', function() {
        spin();
    });
    layer.getSource().on('change', function() {
        spin(false);
    });

proszę również opublikować funkcję wirowania, wygląda na to, że po prostu je obracasz i nie przestajesz wirować po zakończeniu ładowania warstwy
Daniël Tulp

1

można również użyć getstate () funkcji

if (source instanceof ol.source.Vector) {
        source.on("change", function () {
            //console.log("Vector change, state: " + source.getState());
            switch (source.getState()) {
                case "loading":
                    $("#ajaxSpinnerImage").show();
                    break;
                default:
                    $("#ajaxSpinnerImage").hide();
            }
        });
    }

Używam OL-v4.2.0. source.getState()zawsze zwraca „gotowy”
himyata,

1

Na OL 4.5.0 dla warstw wektorowych nie znalazłem sposobu na radzenie sobie ze źródłem, zamiast tego używam następujących zdarzeń zdarzeń:

if (layer instanceof ol.layer.Vector) {
    layer.on("precompose", function () {
              $("#ajaxSpinnerImage").show();
            });
    layer.on("render", function () {
              $("#ajaxSpinnerImage").hide();
            });
}

Mam nadzieję, że to może pomóc.

Korzystając z naszej strony potwierdzasz, że przeczytałeś(-aś) i rozumiesz nasze zasady używania plików cookie i zasady ochrony prywatności.
Licensed under cc by-sa 3.0 with attribution required.