2009/1/7 Asif Basha <[email protected]>: > Hi Andrew leach > > Thank you for giving reply, I am sending code for getting gmap in C# > form and in this gmap i display one mark on gmap and i am thinking multiple > marks i need to display.
Don't do this. Read http://www.catb.org/%7Eesr/faqs/smart-questions.html#forum -- actually all of that document is well worth a read. > queryAddress.Append("http://maps.google.com/maps?q="); You aren't using the API. You are constructing a URL to the Google Maps site and displaying that in a web browser object in your C# application. Google Maps can only display one marker. To display more than one marker, you need a server-side script which can take parameters specifying several markers, and formulate a map to display in your web browser object. Google's Static Maps API may help here: see http://code.google.com/apis/maps/documentation/staticmaps/ If that doesn't do what you want (it's a static image, not a movable map) then you will need to write a web page on a web server of your own, so that you can create a map with the API to display in your browser control. Any more questions, please post to the Group, not to me. Thanks Andrew --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
