Vu qu'il était assez difficile pour moi de trouver des informations à ce sujet, j'ajouterais ceci:
1)
Créez la couche KML:
//Define your KML layer
var MyKmlLayer= new OpenLayers.Layer.Vector("This Is My KML Layer", {
//Set your projection and strategies//
projection: new OpenLayers.Projection("EPSG:4326"),
strategies: [new OpenLayers.Strategy.Fixed()],
//set the protocol with a url//
protocol: new OpenLayers.Protocol.HTTP({
//set the url to your variable//
url: mykmlurl,
//format this layer as KML//
format: new OpenLayers.Format.KML({
//maxDepth is how deep it will follow network links//
maxDepth: 1,
//extract styles from the KML Layer//
extractStyles: true,
//extract attributes from the KML Layer//
extractAttributes: true
})
})
});
2)
Définissez l'URL de la couche KML:
//note that I have host equal to location// //Math.Random will stop caching//
var mykmlurl= 'http://' + host + '/KML?key=' + Math.random();
3)
Définissez l'intervalle dans lequel actualiser votre couche:
//function called// //timer// //layer to refresh//
window.setInterval(UpdateKmlLayer, 5000, MyKmlLayer);
4)
La fonction pour mettre à jour la couche:
function UpdateKmlLayer(layer) {
//setting loaded to false unloads the layer//
layer.loaded = false;
//setting visibility to true forces a reload of the layer//
layer.setVisibility(true);
//the refresh will force it to get the new KML data//
layer.refresh({ force: true, params: { 'key': Math.random()} });
//- <3 from Thqr -//
}
J'espère que cela facilitera la tâche de certains autres. Bonne chance.
J'ai été farfelu avec cela en vain. Quelqu'un voudrait-il jeter un œil à mon code et me dire ce que je fais mal? Je vous remercie!
Désolé, j'ai dû corriger vos codes imparfaits. Devrait fonctionner cette fois.
la source
Vous voudrez peut-être regarder la stratégie Actualiser. http://dev.openlayers.org/releases/OpenLayers-2.11/doc/apidocs/files/OpenLayers/Strategy/Refresh-js.html
la source
non testé mais quelque chose comme ça?
la source