thanks! this was quite easy so far. anyway, I'd like add a feature to get the closest railway station from specific point. I guess this is not supported by the api.. so which possibilities do I have to get this information. Is there any webservice I could use to retrieve that information?
Furthermore, I'd like to draw the train's route from a station to the destination . The only idea I came up with was to find out the stations along the route and connecting these points with Polylines. I'd appreciate any help or hint! thanks -cyrt On Apr 22, 5:00 pm, Erik Barron <[email protected]> wrote: > import com.google.maps.services.ClientGeocoder; > import com.google.maps.services.ClientGeocoderOptions; > import com.google.maps.services.GeocodingEvent; > > function getCityName(point:LatLng){ > > var myLocation = new ClientGeocoder(); > myLocation.reverseGeocode(point); > myLocation.addEventListener(GeocodingEvent.GEOCODING_SUCCESS, > getLatLngSuccess); > myLocation.addEventListener(GeocodingEvent.GEOCODING_FAILURE, > getLatLngFailed);} > > This should return the city... > > On Wed, Apr 22, 2009 at 8:51 AM, cyrt <[email protected]> wrote: > > > hi! > > > I'd like to implement a function as described in the subject. > > > Any idea, how this can be achieved? > > > thanks > > -cyrt --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Google Maps API For Flash" 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-for-flash?hl=en -~----------~----~----~----~------~----~------~--~---
