Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Pretend that you're in an airplane. You can access a Google Map that shows what you're flying over. The map moves with the plane.

I'd like to prototype this. How can I go about doing this?

My thoughts are to take a very high res picture of the flight path. Using some unknown method, I could "zoom in" on part of the image. Every time a new frame is drawn, the map picture should move x pixels to the left... or something like that.

share|improve this question
If you're taking images, be careful you're not violating the terms of service of the Maps API. You should read that very carefully. – Mano Marks Feb 19 '12 at 19:04

1 Answer

What you need is not an image, it's a polyline which defines the route.

You'll be able to "walk" this line by using the defined waypoints and a little bit calculation.

The moving of the map may be achieved by using map.setCenter(currentPosition)

Docs: http://code.google.com/intl/en/apis/maps/documentation/javascript/overlays.html#Polylines

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.