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
Post a Comment