OpenLayers 2에는 이러한 계층 이벤트 "loadstart & loadend"가 있습니다.
OpenLayers 3에서 이와 동등한 기능은 무엇입니까?
벡터 레이어가로드되고 렌더링되는 동안로드 아이콘을 표시해야합니다.
OpenLayers 2에는 이러한 계층 이벤트 "loadstart & loadend"가 있습니다.
OpenLayers 3에서 이와 동등한 기능은 무엇입니까?
벡터 레이어가로드되고 렌더링되는 동안로드 아이콘을 표시해야합니다.
답변:
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.GeoJSON
and ol.source.KML
입니다.
또한 ol3가 소스가로드되는지 여부를 알 수있는 일관된 방법을 제공 할 경우이 코드는 향후 더 이상 작동하지 않을 수 있습니다.
vectorSource.once('change', function(e){...}
?
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 벡터 레이어의 경우 상황이 훨씬 복잡합니다.
//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>";
}
나는 수업을 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);
});
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();
}
});
}
source.getState()
항상 '준비'를 반환