felixtcpip wrote:
Hey,
So I tried getting the flight id first. I'm doing it in ruby so here is the code:
Code:
flightId = $api.getFlightID(GetFlightIDRequest.new(ident, departureTime))
result = $api.mapFlight(MapFlightExRequest.new(flightId.GetFlightIDResult, height, width, nil, nil, true, true, true, nil))
I'm still getting blank maps. I specifically tried it on this flight id for example: N118ET-1297004108-34-0 (ident:N118ET departure:1297015380).
Can you take a look and see what could be wrong?
Thanks,
Felix
I think the problem is simply mismatched copy/paste. It should be mapFlightEx instead of mapFlight when you invoke the function call:
Code:
flightId = $api.getFlightID(GetFlightIDRequest.new(ident, departureTime))
result = $api.mapFlightEx(MapFlightExRequest.new(flightId.GetFlightIDResult, height, width, nil, nil, true, true, true, nil))