Hanifi Yıldırım
Hanifi Yıldırım

Reputation: 11

How to get location without GPS in Windows Phone

I want to get my device location with internet or wifi. not use gps. How ı do this?

Upvotes: 1

Views: 404

Answers (1)

Jon Bates
Jon Bates

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

Related Questions