> Or better yet to have public markers and also have private data on > those markers only for members? How would I go about doing that?
You can't securely do that client-side. That means you can't do it in javascript or by use of the Maps API. You might write some kind of javascript to only display 'allowed' data, but if the whole set is sent to the user's browser a schoolboy would be able to get at it without much effort. So you have to do the selection of this or that data before it ever gets sent to the user's browser. This means doing on a server, where it just isn't accessible to any user you don't permit, using some kind of server-side programming. -- You received this message because you are subscribed to the Google Groups "Google Maps JavaScript API v3" 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-js-api-v3?hl=en.
