Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Possible Duplicate:
Why am i not getting exact Longitude when i click on a marker?

I get data from mysql by xml. Everything is ok. but when i wrote this coordinates with javascript it show me additional numbers.. where it can take this numbers?

like that:

it show me this lat long.. : (40.992638, 47.860474*00000007*),(40.992252, 47.860619*00000004*)

but my lat longs like that: (40.992638 47.860474 ) (40.992252 47.860619)

what is: **00000007 & 00000004 ?**

share|improve this question

marked as duplicate by Dr.Molle, bfavaretto, SztupY, Jan Dvorak, Marcus Ekwall Jan 6 at 20:21

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

2 Answers

Latitudes and Longitudes are represented in javascript as double precision floating point numbers (all numbers are). When you convert a string to a double precision floating point number, it converts it to the closest value, which will not always be exactly the same. The difference in the 14th digit is negligible.

share|improve this answer

ok. Thanks Guys for help. I solwed problem that:

In mysql may lat long type was float(10,6) i changed it as text. All lat longs coordinates i write again as 12 symbol and it work..

Sorry for my english..

share|improve this answer

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