#1 Wed 14 October 2015 11:57
- pestak
- Juste Inscrit !
- Date d'inscription: 13 Oct 2015
- Messages: 1
[OL3] Problème d'affichage d'une multitude de point
Bonjour,
Je développe une application avec le framework YII 1.1. J'ai une page "localisation" où je dois afficher les 1400 points. Chaque point a une popup.
J'arrive à afficher 246 points mais à partir du 247 j'obtiens une page vide avec pour erreur :
- si ol.js :
Code:
TypeError: c is undefined ...on(a,c,d,e){for(var f,g,h,n,p,q,r,t;;){e.push(c);if(c.Da||e.length-1===d)break;r... ol.js (ligne 341, col. 308)
- si ol-debug.js
Code:
TypeError: node is undefined if (node.leaf || path.length - 1 === level) break; ol-debug.js (ligne 71970, col. 1)
Avez-vous une idée?
Merci d'avance.
Code de la page "localisation" :
Code:
Localisation (function(){ var vectorSource = new ol.source.Vector({ //create empty vector }); //create the style var iconStyle_i = new ol.style.Icon({ anchor: [0.5, 46], anchorXUnits: 'fraction', anchorYUnits: 'pixels', opacity: 0.75, src: '/images/i.png' }); var iconStyle_p = new ol.style.Icon({ anchor: [0.5, 46], anchorXUnits: 'fraction', anchorYUnits: 'pixels', opacity: 0.75, src: '/images/p.png' }); var iconStyle_s = new ol.style.Icon({ anchor: [0.5, 46], anchorXUnits: 'fraction', anchorYUnits: 'pixels', opacity: 0.75, src: '/images/s.png' }); //create a bunch of icons and add to source vector
Hors ligne