On Sep 11, 3:02 pm, csdude <[EMAIL PROTECTED]> wrote: > is there a simple example that shows how to do this ? > (I basically am looking for a drawCircle function/method that I can > use to draw a circle or ring)
Marcelo has a couple. http://maps.forum.nu Do peruse the posting guidelines http://groups.google.com/group/Google-Maps-API/web/suggested-posting-guidelines (in particular the bits about searching, code snippets and regarding first posts). Your repost has been discarded. These might cause problems: var map = new GMap2(document.getElementById(\"map\")); because you've escaped quotes unnecessarily. map.setCenter(new GLatLng('lat', 'long'), 3); because you're using strings in a GLatLng object. GLatLngs take numbers. 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 -~----------~----~----~----~------~----~------~--~---
