Reputation: 11
I want to get my device location with internet or wifi. not use gps. How ı do this?
Upvotes: 1
Views: 404
Reputation: 3173
By default, the phone will use the best available position method, falling back to GSM if need be.
The GeoLocator class has a DesiredAccuracy property, which allows you to upgrade this as well
geolocator.desiredAccuracy = Windows.Devices.Geolocation.PositionAccuracy.High;
Upvotes: 2