Googleing on the topic I&#39;ve just found this hint:<br><br>[-- cite --]<br>
&gt;  I have data within an xml tag that is being truncated when being read<br>
&gt; into a javascript variable. On Firefox, I am only getting up to 4096<br>
&gt; characters. On IE, I am getting 31324 characters. I can view the xml<br>
&gt; source, all the data is there. I am using javascript function<br>
&gt; getElementsByTagName to read the data from the tag and then the<br>
&gt; firstChild and nodeValue notations to get the data.[/color]<br>
<br>
<br>
Mozilla&#39;s XML parser is known to create a single text node for each<br>
chunk of 4096 characters so there you will certainly encounter the<br>
problem. The data is not lost however, you will simply end up with an<br>
element in the DOM that has several text child nodes.<br>
Workarounds are using e.g.<br>
xmlDocument.getElementsByTagName(&#39;tagname&#39;)[0].textContent<br>
instead of accessing firstChild and its nodeValue or to force<br>
normalization of the XML document by calling<br>
xmlDocument.normalize()<br>
first, then you can access firstChild.nodeValue as adjacent text nodes<br>
have been merged into one node.<br>
Note that the textContent property is part of W3C DOM Level 3 and only<br>
newer Mozilla versions support that property.<br>
<br>[-- end cite --]<br><br>I will try, but not immediatly. The idea is to change the line:<br><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; text = domElement.firstChild.data;<br><br>in method kaXmlFeature.prototype.parseElement<br><br><br><br><div><span class="gmail_quote">
2007/2/11, Ionut Muntean &lt;<a href="mailto:ionut@muntean.ro">ionut@muntean.ro</a>&gt;:</span><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
Thank&#39;s Pg.<br><br>This was the problem. The XML parser cannot handle the length of the<br>linestring definition. I&#39;ve splitted the linestring definition into more<br>linestrings and everything is working ok now.<br>
<br>Now, for programatically build linestrings, is there any possibility to<br>&quot;grow&quot; the linestring? I want to plot the track of a vehicle.<br><br>/ IM<br><br><br><br>Pg wrote:<br>&gt; The example is not fully accessible.
<br>&gt;<br>&gt; In any case the error is apparently due to the length of the line: the<br>&gt; XML parser truncates the coordinates text.<br>&gt; I don&#39;t know how to correct this problem.<br>&gt;<br>&gt; I can suggest a workaround: split the linestring in more chunks.
<br>&gt;<br>&gt;&nbsp;&nbsp;- Pg<br>&gt;<br>&gt; 2007/2/10, Ionut Muntean &lt;<a href="mailto:ionut@muntean.ro">ionut@muntean.ro</a> &lt;mailto:<a href="mailto:ionut@muntean.ro">ionut@muntean.ro</a>&gt;&gt;:<br>&gt;<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp; With only the point (icon) everything is ok. Please try
<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp; <a href="http://eos.mitechnologies.ro">http://eos.mitechnologies.ro</a> as example<br>&gt;<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp; Pg wrote:<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&gt; I haven&#39;t other ideas.<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&gt; I use the same environment for long lines, and it works.
<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&gt;<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&gt; Do you have an example accessible on internet?<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&gt;<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&gt; If not could you check (e.g.&nbsp;&nbsp;with an alert or with FireBug) if the<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&gt; return value of the function _BrowserIdent_newCanvas() is valid
<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp; or is null?<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&gt;<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&gt; If you plot only the bullet (&quot;Auto 1&quot; in your XML), does it works?<br>&gt;<br>&gt;<br>&gt;<br>&gt; ------------------------------------------------------------------------
<br>&gt;<br>&gt; _______________________________________________<br>&gt; ka-Map-users mailing list<br>&gt; <a href="mailto:ka-Map-users@lists.maptools.org">ka-Map-users@lists.maptools.org</a><br>&gt; <a href="http://lists.maptools.org/mailman/listinfo/ka-map-users">
http://lists.maptools.org/mailman/listinfo/ka-map-users</a><br><br></blockquote></div><br>