Re: Markers from XML

2008-12-04 Thread Homig
Ok, this is source [zip]: http://homig.info/map.zip And this is MXML file on pastebin.com: http://pastebin.com/m12a1429d This is an adress to map in browser: http://homig.info/map/ This is my markers.xml file: http://pastebin.com/m3cc74e40 --~--~-~--~~~---~--~~ You

Re: MAP OVERLAY REGISTRATION

2008-12-04 Thread [EMAIL PROTECTED]
Well, Pam I was trying to do the same as the javascript API which works perfectly. I tried your simple overlay but it doesn't like a map service. The big problem is that i can't follow the Flex logic yet so I'm trying things and hope they work. Below you'll see the javascript: var gmap = null;

Looking for Developer to work on our website's Google Map

2008-12-04 Thread Nora
We are trying to find a website builder that can work with Flash and ideally modify our existing Google map. We are a privately funded non- profit organization whose goal is to reduce congestion in San Francisco, and our live traffic Google Map is an important part of that, we want to expand the

Reverse Geocoding

2008-12-04 Thread lucianopopo
Hi everybody, Anyone knows how to do a Reverse Geocoding? I know that exist this method: ClientGeocoder.reverseGeocode(), but I don´t know how to use it. Anyone has any example? I didn´t find any example over the internet. Thanks. Luciano Fernandes

Re: Reverse Geocoding

2008-12-04 Thread Flexa
Hi, 1. you have to init the map and wait until the map is ready: map.addEventListener(MapEvent.MAP_READY, onMapReady); 2. start your request, after the map is ready: private function onMapReady(e:MapEvent):void{ gc = new ClientGeocoder(); gc.addEventListener(GeocodingEvent.GEOCODING_SUCCESS,

Re: Reverse Geocoding

2008-12-04 Thread Flexa
oh sorry... you have to send your request ;) gc.geocode( YourLatLngData ); On Dec 4, 9:38 pm, Flexa [EMAIL PROTECTED] wrote: Hi, 1. you have to init the map and wait until the map is ready: map.addEventListener(MapEvent.MAP_READY, onMapReady); 2. start your request, after the map is

How To Extend LatLngBounds ?

2008-12-04 Thread Flexa
Hi, I would like to extend the map viewport to create a buffer zone around the viewport to show some markers.. and if the user navigate out of the buffer zone I would like to load new markers. I know there is a marker manager.. but i have to show 1mio markers on the map.. so i think there is no

Re: Driving Directions with DataGrid demo

2008-12-04 Thread un.joel
Okay, so I got it to work. and here's the code. Not sure this is the most efficient way of doing it. I'm just a newbie and open to input. Maybe someone can suggest how I can get a zoomcontrol into this infowindow. Thank package { import com.google.maps.LatLng; import