On Mar 28, 6:02 am, wadori <[email protected]> wrote: > Well, it looks like I am not quite as ready as I thought I was. I am > confused because the link that you provided for sending php data to > client uses javascript to create the map. ("Once the XML is working in > the browser, it's time to move on to actually creating the map with > JavaScript." ) What I want to know is if/how I can create the map > without javascript. I will be studying up on javascript to do it that > way, but even if I use that, I would also like to be able to provide > an alternative method for anyone who does not have js activated in > their browser. I searched the Google website, but couldn't find how > to do it without js. (But, being a novice, there is a lot of what I > read that doesn't make a lot of sense to me.) Are you sure that it is > possible? (Once again, please have patience with me. I am a > "newbie".)
You need Javascript. The API is entirely Javascript. What you may be able to do is use your server-side PHP script to create a static map URL that you put in the <div> which is to be used for the dynamic map. Clients without Javascript will get a static map [which won't do anything interactive, but is better than nothing] and clients with Javascript will get the dynamic map. <div id="map" style="..."> If you were running Javascript you would see an interactive map here<br> <img src="..."> </div> -- 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.
