[Google Maps API v3] Re: Private Markers

2010-12-10 Thread Rossko
> Are you saying that I need to have a file that manually inserts > markers for private users where I want them? No. Files don't manually do anything, they just lie there. If you need some means of choosing what data to allow users to see, there must be some active intervention by a program of

[Google Maps API v3] Re: Private Markers

2010-12-10 Thread Mike Kold
Can you clarify what you meant? -- 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 google-maps-js-api...@googlegroups.com. To unsubscribe from this group, send email to google-maps-js-api-v3+un

[Google Maps API v3] Re: Private Markers

2010-12-09 Thread Mike Kold
Are you saying that I need to have a file that manually inserts markers for private users where I want them? I may have hundreds of pieces of info that are private. I planned on using google's My Maps and just wanted to insert an iframe with a src of the actual map. I didn't plan on using the API t

[Google Maps API v3] Re: Private Markers

2010-12-09 Thread Rossko
> 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 dis

[Google Maps API v3] Re: Private Markers

2010-12-09 Thread Chad Killingsworth
You would programatically emit different javascript based on whether the user was correctly authenticated and authorized to view the data. This will invariably require some sort of server-side technology (such as PHP). Chad Killingsworth -- You received this message because you are subscribed t

[Google Maps API v3] Re: Private Markers

2010-12-09 Thread Mike Kold
On Dec 8, 9:11 pm, Rossko wrote: > > Basically I'm part of a volunteer organization that would like to list > > certain events that we did over certain neighborhoods, included in the > > maps/markers I need to put in data of who ran the events which is > > obviously private and for members of the

[Google Maps API v3] Re: Private Markers

2010-12-08 Thread Rossko
> Basically I'm part of a volunteer organization that would like to list > certain events that we did over certain neighborhoods, included in the > maps/markers I need to put in data of who ran the events which is > obviously private and for members of the org only. That is possible, but nothing t