On Jun 8, 6:21 pm, shapper <[email protected]> wrote: > Hello, > > I am working on an ASP.NET MVC / C# project and I need to integrate > Google Maps in it. > > I have a few questions: > > 1. Is it possible to make the map be zoomed on a city when the page > loads?
Yes. If you know the coordinates of the city. If the city is entered by the user, you can use the geocoder to get its coordinates (and a bounding box that can be used to determine a zoom level). > 2. Can I add pins to the map given their location? Yes. > 3. Can I get the location when I click a position on a map and fill an > HTML input with it? Yes. > I want to save the coordinates when the form is submitted. > Later I will retrieve it from the database and display the pin on > that location. You should look at Mike Williams' tutorial: http://econym.org.uk/gmap/ -- Larry --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
