c# - GeoCoordinateWatcher on different phones -


i'm using standard way of using class , strange thing on phones works (nokia lumia 920, htc, etc) , on doesn't (lumia 610, samsung omnia 7w).

geocoordinatewatcher watcher = new geocoordinatewatcher(geopositionaccuracy.high); watcher.movementthreshold = 0.1; watcher.statuschanged += (x, y) => {       messagebox.show(y.status.tostring()); }; watcher.positionchanged += watcher_positionchanged; watcher.start(); 

what i'm getting here on phones gcw initializes, i'm getting nodata on lumia 610 , samsung.

what problem?

maybe answer someone:

be sure if phone doesn't give gps reading, stick in sim card, can location it. apparently lumia 610 , samsung omnia 7w don't have built in gps or something... :)


Comments

Popular posts from this blog

java.util.scanner - How to read and add only numbers to array from a text file -

rewrite - Trouble with Wordpress multiple custom querystrings -