-
[moved] LBS API's
Hello Developers,
I am new to s60 programming like everyone . I am writing GPS application.
To start with, I have use LBS API's to get Logitude-Latitude .
Now I want to have some operation on these values. Means if i have 5 different co-ordinates(Longitude-Latitude) , then I need to find out which is closest one wrt one co-ordinate.
So my question is does LBS has any API for this ?(For comparing two locations)
OR i need to do it mathematically which is cumbersome..
Any ideas
Thanks In Advance
-
Re: LBS API's
Are you developing applications using Java, Symbian C++ or any other runtime? The answer to your questions is likely to be yes, there are methods that can help you with the computations but the specifics will be obviously runtime specific.
You can post your question on a runtime specific forum or in the Location Based Services forum on this board.
-
Re: LBS API's
Thanks for your reply. Actually development platform i am using is Symbian.(S60 3rd).
-
Re: LBS API's
Currently I am implementing Haversine Formula for finding spherical distance .
So Does symbian directly provides method for calculating the same?
Thanks in advance.
-
Re: LBS API's
Look for Distance in [URL="http://library.forum.nokia.com/topic/S60_5th_Edition_Cpp_Developers_Library/GUID-759FBC7F-5384-4487-8457-A8D4B76F6AA6/html/classTCoordinate.html#905a427ee819ceb87a8bc594af07d586"]TCoordinate[/URL]
-
Re: [moved] LBS API's
Thank a lot Lucian .
TCoordinate class has method Distance() . Which does same thing that I was trying mathematically.
Thanks once again for immediate Reply...