Quote:
Originally Posted by ninjaap And that's exactly what I was trying to say. It will ALWAYS reads n/a. Even after gps is initialized. That is why it led me to believe that gps is a SUBSTITUTE to my location. Because it still doesn't work as you just have stated. That is why I am having a hard time understanding your idea that it works in tandem. But apparently I'm wrong. And no doubt your going to tell me I'm wrong and that my post is useless... again... just trying to understand it mtyself. |
The myl: value can always shows N/A and GMM will still work. Because, the GPS value is not stored there. The myl: value is for storing Cell Tower data and we are unable to get that (due to Google is too busy to fix it for us) so that is why it shows N/A. There is another value in GMM that holds the GPS values. So, the GMM program can use either GPS or myl values as follows:
myl_value = coordinates from cell towers
gps_value = coordinates from GPS satellites
if gps_value is available then
map_position = gps_value
else
if myl_value is available then
map_position = myl_value
else
map_position = n/a (not available)
try_again
endif
endif