Yearly Archives: 2016

Using Crosslight Location Service in iOS 8

Using Crosslight Location Service Location service provides a streamlined way to access location API that conforms to each the device’s platform. In order to get the current location of the device, we use following snippet code: 12345678910 this.MobileService.Location.GetCurrentLocation(LocationAccuracy.Best,    (locationResult) =>    {        if (locationResult.Error == null) { }        else { [...]

Read More