Skip to main content

Geodesic Polyline

    Today we will have a look at a very interesting polyline example - "The geodesic polyline". Now the first question that will pop is "What is geodesic?". Mathematically, geodesic means the shortest line between two points on a mathematically defined surface, as a straight line on a plain or an arc of a great circle or sphere.

    The next question after reading the above definition is clearly, "Why do we need geodesic polylines?" and that would be followed up with "What is this Great Circle?". We will discuss this first, before we move on to the actual example today. The example is very very similar to the normal polyline example, with just a small change.

    Having said so, I will now try to explain why we need a geodesic polyline? The shortest distance between two locations on the earth is rarely a straight line as the earth is roughly spherical in nature. So any two points on the earth, even if they are very close lie on a curve and not a straight line. Because of this fact, we need a geodesic (curved) polyline and not just a simple planer one.

    Once we understand the need of the geodesic polylines, the next question to be answered is that of the Great circle. A Great Circle is the intersection of the sphere and a plane which passes through the centre point of the sphere. As a result, the diameter of the great circle is always the same as the diameter of the sphere. So all the 'n' great circles of a sphere have the same diameter and centre as that of the sphere and all great circles have the same circumference. Thus for any two points on the surface of a sphere there is a great circle through the two points. The minor arc of a great circle between two points is the shortest surface-path between them. In this sense the minor arc is analogous to “straight lines” in spherical geometry. The length of the minor arc of great circle is taken as the distance of two points on a surface of a sphere, namely great-circle distance. The great circles are the geodesics of the sphere.The following picture will help you understand better the concept of the Great Circle.


    You can also have a look at an excellent animation explaining the "Great Circle" concept. Now that the theory is clear, let's get our hands dirty with a simple example...Here's the code...


    The output of the above code is as seen in the result section above. Please refer to the comments  in the code for any clarification required. You can just copy and paste the code in a text file and save it with .html extension. Open this html file in any browser of your choice and you will see the map in action.

    I understand that this post has become very long, but all the explained theory is the least minimum that was needed....

Comments

Post a Comment

Please leave your comments here...

Recommended for You

Playing with the markers and info window bubbles...

    In the last few posts, we have seen some marker examples and some information window examples. Now, lets do something interesting combining these two things. Just writing that "This is an info window" in the information bubble is not very interesting! And I know this...Have gone through the same phase!     So, today we will do something interesting! We will display the latitude- longitude co-ordinates of the point that the user clicks on the map! Doing this is not at all complex! Copy paste the following code and you will see for yourself a map coming to life!     The output of the above code looks as seen in the result section above! If you have any queries regarding the above code please comment on the blog post or feel free to contact me at my mail ID .

Fusion Table - Heat Map Layer

    In continuation with the previous example on Fusion Table, we will have a look at another Fusion Table layer example. Today's point of discussion is heat map! What is a heat map? A heat map is geographical representation of data where the values taken by a variable in two-dimensional map are represented as colors. Higher the value of the variable, that place on the map would be represented with a deeper color.     This example is very much similar to the previous one, just for one minor change! Let us have a look at the code.     I have just used a readily available Google Fusion Table for this example. Any anomalies in the data is not my responsibility! Copy the above code in an html file and open it in your browser! You will see the fusion table heat map layer in action! The only change in this code from the previous one is that, the heatmap property of the fusion table layer is made true! The output of the above code looks as s...

Panoramia - Tag based search

    If you don't already know what Panoramia is, you can have a look at this link , to know more about Panoramia and a basic example. Today we will have a look at a more sophisticated example for Panoramia Layer in Google Maps API v3. In today's example we will search and display only those images on the map that have the tag that is being searched for.     The example is very simple and all you need to do is copy the following code in an html and open it in your browser. Search for whatever you want to and if there are images that have the same tag, then those images will appear on the map.     The output of the above code looks as it is seen in the result section above. Now you can enter your search parameter in the search box. I had entered "Fruits" and the output was as seen in the image below.     You can have your own search parameter. Enjoy the Panoramia ride!

Where on Google Map was Osama bin Laden?

                It took years of intelligence gathering and months of following leads and planning an attack for the US to track down the world’s most wanted criminal – Osama bin Laden to a compound in the normally quite city of Abottabad in Pakistan. Since the night when US President Barack Obama announced the terrorist’s death, the Internet has been buzzing with attempts by people all around the globe to pin- point the exact location of the compound on a map.                 Bin Laden's compound had been pinned in multiple different locations on Google Maps and Google Earth by users of Google's Map Marker web app, in various spots across Abbottabad. However, none were accurate and exact. Thanks to photos and diagrams released by the U.S. Dept. of Defense on Monday, Osama bin Laden’s Hideout Compound is now embedded in Google Maps and ...

Google Street View Image API

    Street View is one of most used feature of the Google Maps and why not? You can actually see any part of the world as if you are visiting the place at that very moment. And now with the Google Street View Image API, you don't even need to carry a camera with you to the places you visit. You can take-in all the scenic beauty without even bothering about clicking a single picture. You can come back from your vacation and get a few images using the Google Street View Image API and show those images to your friends and relatives. Create an album of high definition images and go ahead and share it on Facebook for your friends to have a look.     Using the Google Street View Image API is very simple and anybody can make use of it without any programming knowledge required. I will walk you through the entire process of effectively using the Google Street View Image API. So if you are set, let's go on an amazing ride across the globe with the Google Street Views. ...