0

I have lat & lon that need to plot into floor map image. The problem is the floor map image's angle is not proportionate with the real world map. Anybody knows how to transform real lat & lon values in a given angle?

UPDATES1 I have previous posted question which has relation with this post. Please take a look. plot real world coor to still image map

Community
  • 1
  • 1
eros
  • 4,946
  • 18
  • 53
  • 78

1 Answers1

0

Latitude, Longitude refers to a single point on earth's surface. It does not have an angle.

If you are talking about the Location class however, you can get it's bearing from North, using

if(location.hasBearing())
 location.getBearing()

If you are talking about a pair of lat, lon values, you can calculate the bearing using the bearingTo() api

Reno
  • 33,594
  • 11
  • 89
  • 102
  • I don't sure if Angle is the correct term but to explain it, would you take a look the added link above. I am saying that if you see the top view of the real worl map and my floor map, the position(angle) of the building is not the same. – eros Sep 26 '11 at 05:29