OpenLayers 3でレイヤーのloadstartおよびloadendイベントを使用していますか?


19

OpenLayers 2には、これらのレイヤーイベント「loadstart&loadend」があります。

OpenLayers 3でそれらと同等のものは何ですか?

ベクターレイヤーが読み込まれてレンダリングされている間、読み込みアイコンを表示する必要があります。


どのタイプのベクトルソースを使用しますか?もう少しコンテキストを教えていただけますか?
エリレム14年

回答:


19

でを使用するol.layer.Vectorと仮定すると、ol.source.GeoJSON次のようなものを使用できます。

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
  }
});

これは、ベクターソースがロードされたときに通知を取得する方法を示しています。から継承するソースでのみ機能しますol.source.StaticVector。例にはとが含まol.source.GeoJSONol.source.KMLます。

また、ol3がソースがロードされているかどうかを確認する一貫した方法を提供する場合、このコードは今後機能しなくなる可能性があることに注意してください。


すごい!私もこれを探していました。OL3にまだ含まれていない理由を疑問に思います。
ゲルマンカリージョ

どうしてvectorSource.once('change', function(e){...}
ジョナタスウォーカー

14

ol3バージョン3.10.0では、状況が変わりました。したがって、古いバージョンよりも明確ですが、ol2よりも複雑です。

そのため、TILE(ol.layer.Tile)レイヤーの場合、コードは次のようになります。

//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';
 });

一方、WMSレイヤーのアプローチは少し異なります。

//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'; 
  }); 

WFS Vectorレイヤーの場合はさらに複雑です:

//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>";
}

この投稿を確認してください。上記のすべて+ WFSベクターレイヤーのフィドル


1
GIS.SEへようこそ!回答を拡大して、リンク先の記事の概要と、この質問の回答に関連する部分を教えてください。これにより、リンクが切れた後でも、答えはこのサイトの人々を助けることができます。
カーステン

ごめんなさい。完了!!!!!!!!
パブロス

あなたが持っている層の種類を確認するには、ここであなたバンはOL3のためにそれを行う方法ですgis.stackexchange.com/a/140852/63141
ダニエル・チューリップ

これが一番の答えです!
joaorodr84

1
してくださいOLみんな.... KISSの男... KISS ....
マグノC

2

私は、クラスを見つけていないol.source.GeoJSON、と場合を見つけることができませんでしたvectorSource.getState() != 'ready'。だから私はこのようなことをしました:

    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);
    });

また、スピン関数を投稿してください、それはあなたがちょうどそれらを回転し、フィニッシュ負荷に層回転を停止されていないように見える
ダニエル・チューリップ

1

getState()関数を使用することもできます

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();
            }
        });
    }

ol-v4.2.0を使用しています。source.getState()常に「準備完了」を返します
-himyata

1

OL 4.5.0では、ベクターレイヤーについて、ソースを処理する方法が見つかりませんでした。代わりに、レイヤーイベントで以下を使用します。

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

それが役立つことを願っています。

弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.