> service.getDetails seems to be use for a unique request, so i can't > use it for my whole first search (looking for store in a radius)
Yes, that is what the documentation says. > have > I need to put it after the search method. Yes, because you need the unique key that comes in the search results. > Looking on my code, i don't really know where to place the getDetails > method to apply it on all my markers places found. In your first search callback, for each result that you are interested in, get its unique key and fire off a getDetails(). Each getDetails() will need to be linked another own callback that process the details results, presumably in your case populating the infowindow. -- 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.
