I THINK is nearly there... But doesn't work yet, it looks good on the
parser but it doesn't parse the data, can you please take a look and
tell me if you see something misplaced or missing?

--------------------------------------------------------

<markers><![[CDATA element content]]> <marker lat="46.66039405491582"
lng="-123.67449045181274" html= '<table width="419" border="0">
  <tr>
    <td width="200"><img src="images/scream.jpg" width="200"
height="200" /></td>
    <td width="203"><object width="300" height="200"><param
name="movie" value="http://www.youtube.com/v/fv-
oNM3zurw&hl=en&fs=1&rel=0"></param><param name="allowFullScreen"
value="true"></param><param name="allowscriptaccess" value="always"></
param><embed src="http://www.youtube.com/v/fv-
oNM3zurw&hl=en&fs=1&rel=0" type="application/x-shockwave-flash"
allowscriptaccess="always" allowfullscreen="true" width="300"
height="200"></embed></object></td>
  </tr>
  <tr>
    <td colspan="2">Judas Priest - Scream Vengeance</td>
  </tr>
  <tr>
    <td colspan="2"><center>
      One of the most influencial albums of Heavy
    Metal that turned around the sound of Music and the concept of
voice performance in the history of Rock: Guitars, voice, bass and
drums mixed in a new concept of Heavy that gave meaning and shape to
what Led
    Zepelling had been doing before. Never again music would be the
same as Iron Maiden will be opening for them with also their
&quot;Number Of The Beast&quot; Tour.
    </center></td>
  </tr>
  <tr>
    <td colspan="2"><a href="http://www.youtube.com/view_play_list?
p=54BF5D668BDD0FBD" target="_blank">Judas Priest - Killer Machine Live
Compilation (Full Play List)</a></td>
  </tr>
  <tr>
    <td colspan="2"><a href="http://www.youtube.com/view_play_list?
p=1663D1F2C3D784B4" target="_blank">Judas Priest - Rising In The East
(Full Concert)</a><a href="http://www.youtube.com/view_play_list?
p=1663D1F2C3D784B4" target="_blank"></a></td>
  </tr>
</table>'label="Judas Priest - Screaming Vengeance" /><marker></
markers>

------------------------------------------------------

On Feb 7, 5:35 pm, "[email protected]" <[email protected]>
wrote:
> On Feb 7, 9:28 am, "[email protected]"
>
>
>
> <[email protected]> wrote:
> > Thank you very much, it looks pretty much as the solution, I added
> > this modification
> > var html = GXml.value(markers[i].getElementsByTagName("html")[0]);
> > in the line 192.
>
> >  to this page:
>
> >http://rockconcertsonline.com/rock_geomap.html
>
> > This page is loading xml from other configuration and keeps working
> > fine so that code is ok.
>
> > The problem is when I go to the xml itself and I add the ]]>, it looks
> > like causing "label" stops working, the file itself is in here:
>
> >http://rockconcertsonline.com/albums.xml
>
> You can't put CDATA content in an html attribute, only in the element
> content.
>
> This is an attribute:
> <marker html="attribute" >
>
> This is element content:
> <marker >
> <![[CDATA element content]]>
> </marker>
>
>   -- Larry
>
>
>
> > Where an error can be found, I've been trying with " trying to find
> > where is the problem but I have been unable to spot the problem, sorry
> > for bothering you but maybe with your expertise it will take a second
> > for you to find out the final detail for me to start months of nice
> > work.
>
> > Thank you so much for your time, I truly appreciate it, By the way,
> > AMAZING PAGE of yours and actually I got scripts coming from your page
> > all over the place so thank you so much twice, I am having a great
> > time with Google maps and a good part of it is with the help of you,
> > sorry that my ability doesn't match my passion.
>
> > --------------------------------------------------------------------------- 
> > ----------------------------------------------------------------
>
> > On Feb 7, 8:09 am, Mike Williams <[email protected]> wrote:
>
> > > You could use a program to edit the text. It's mainly just simple
> > > substitutions that are required.
>
> > > Or you could put the whole thing into a CDATA section inside your HTML.
> > > Inside a CDATA section, the text is treated as only being character
> > > data, and things that look like tags are ignored. So you end up with
>
> > > <markers>
> > >   <marker lat="46.66039405491582" lng="-123.67449045181274">
> > >     <html>
> > >       <![CDATA[
> > >         <table width="419" border="0">
> > >           ...
> > >         </table>
> > >       ]]>
> > >     </html>
> > >   </marker>
> > > </markers>
>
> > > Because the CDATA is not an attribute, the syntax for reading it is
> > > different.
>
> > >  var html = GXml.value(markers[i].getElementsByTagName("html")[0]);
>
> > > Hint: Watch out for that unexpected "[0]" at the end. There's a tendency
> > > for people to miss it.
>
> > > --http://econym.org.uk/gmap
> > > The Blackpool Community Church Javascript Team
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Google Maps API" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/Google-Maps-API?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to