Re: automatic geocoding?

2009-01-02 Thread pamela (Google Employee)
Hi Scott- You should geocode them ahead of time and store the coordinates in a database/array/XML/etc. Use either our HTTP geocoder or a different service. See: http://code.google.com/apis/maps/articles/phpsqlgeocode.html http://groups.google.com/group/Google-Maps-API/web/resources-non-google-ge

Re: How can I addEventListener(MouseEvent.CLICK, markerClicked) to an overlay marker?

2009-01-02 Thread pamela (Google Employee)
Hi Scott- I recommend this section of the documentation: http://code.google.com/apis/maps/documentation/flash/events.html#Event_Closures - pamela On Sat, Jan 3, 2009 at 9:42 AM, dyc wrote: > > Hey guys, > > I am trying to figure out how I can add a mouse event listener to a > marker node I pla

automatic geocoding?

2009-01-02 Thread dyc
Hey people, I have a huge list of city, state strings that I want to convert into markers on my map.. is there any way to do this? I cant figure out an easy way to do this since we have to wait for the event to fire with the geocoded data that holds the long/latt... no way to do a for loop thr

How can I addEventListener(MouseEvent.CLICK, markerClicked) to an overlay marker?

2009-01-02 Thread dyc
Hey guys, I am trying to figure out how I can add a mouse event listener to a marker node I placed on the map. Any ideas? Is it even possible? Thank you! --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Google Maps

Re: PolyLine with Run time array throws error

2009-01-02 Thread James
Hi, The Polyline contructor takes an Array of LatLng objects, but you are passing in an array of Markers! See: http://code.google.com/apis/maps/documentation/flash/reference.html#Polyline Try somthing like this: for each (var truckXML:XML in truckXList) { var locations:XMLList = truckXML

PolyLine with Run time array throws error

2009-01-02 Thread Peeyush
Hello, I am trying to plot a polyline on a map from an array of latlng objects, where i extract lat lng values from an xmllist. The code snippet is below - for each (var truckXML:XML in truckXList) { var locations:XMLList =