> Is it possible to create > and display a Google map using just php and/or html, or do I need to > learn how to communicate between js and php?
It depends how much you want from your map. If you just want to display a blob on a map, consider a Static Map. If you want interactive functions, you are going to have to use a client based implementation - javascript, Flash, whatever. Techniques included near the end of http://code.google.com/apis/maps/articles/phpsqlajax.html are about sending php data to client. There are php librarys like http://www.phpinsider.com/php/code/GoogleMapAPI/ to wrap the javascript API, but they sometimes bring more pain than directly using the provided API. If you can code in php you can learn to code in javascript. -- 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.
