Jump to content

simple xml problem


ankhmor

Recommended Posts

so I have an xml string

the following expression

$xpath = $response->xpath('/atom:feed/atom:entry/atom:content');

returns the following array

SimpleXMLElement Object
(
    [@attributes] => Array
        (
            [type] => application/vnd.google-earth.kml+xml
        )
    [Placemark] => SimpleXMLElement Object
        (
            [name] => M1
            [description] => SimpleXMLElement Object
                (
                )
            [style] => SimpleXMLElement Object
                (
                    [iconStyle] => SimpleXMLElement Object
                        (
                            [icon] => SimpleXMLElement Object
                                (
                                    [href] => http://maps.gstatic.com/intl/en_ALL/mapfiles/ms/micons/blue-dot.png
                                )
                        )
                )
            [Point] => SimpleXMLElement Object
                (
                    [coordinates] => -79.395018,43.645423,0.0
                )
        )
)

 

However what I'm trying to get are the coordinates, but neither

$xpath = $response->xpath('/atom:feed/atom:entry/atom:content/Placemark');

OR

$xpath = $response->xpath('/atom:feed/atom:entry/atom:content/Placemark/child::*');

work

 

I even tried just loading atom:content into an array and going from there no luck.

Any ideas.

 

Oh. BTW this might help http://code.google.com/apis/maps/documentation/mapsdata/developers_guide_protocol.html#RetrievingFeatures

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.