On Feb 8, 6:34 am, J <[email protected]> wrote: > Hello, > > I'm still new to google map and coding and would like some pointers > and advice on how to go about the following issue: > > I have a sql data table that contains a list latitudes and > longitudes. I would like users be able to select them from a drop > down list, and enable google map to zoom in to the selected > location without placing any markers on the map.
That should be pretty easy to do. What trouble are you having? The google api portion would be (making a lot of assumptions): map.setCenter(latitudeFromDatabase, longitudeFromDatabase), desiredZoomLevel); Where is your map? -- Larry > > Thanks for your help, -- You received this message because you are subscribed to the Google Groups "Google Maps API V2" 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.
