> How can I enable that the list of drawing option > to be in the map itself at top right edge when only I press a particular > button below my map.
You'd write some code to do that. Implementing the part of the toolbar you want as a Custom Control would allow everything to work smoothly when placing it on the map. http://code.google.com/apis/maps/documentation/javascript/v2/controls.html#Custom_Controls Triggering some javascript to create and place your custom control when a button is poked is standard DHTML and beyond the scope of this group. http://www.google.com/search?q=javascript+button+trigger+javascript > What I need it that once I have completed the polygon I need pop-up > window with the option to give a name, description etc to be inserted into > my mysql database. Another relevant example, it is worth looking through these yourself http://code.google.com/apis/maps/articles/phpsqlinfo.html > So manually I can build the format I want but is the best > method or any other method. The "best method" is one that works for you. Something that might influence your decision is whether you are ever likely to edit points in the stored polyline, or else something more like remove/replace the whole thing. If you're still thinking abour drawing circles, you might like to think about how you ae going to store this - minimal data to re-create a circle (centre and radius), or as a many-sided polygon. -- 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.
