getLocationMode method

String getLocationMode()

Implementation

String getLocationMode() {
  switch (locationMode) {
    case AMapLocationMode.Hight_Accuracy:
      return "Hight_Accuracy";
    case AMapLocationMode.Battery_Saving:
      return "Battery_Saving";
    case AMapLocationMode.Device_Sensors:
      return "Device_Sensors";
    default:
      return "unknown";
  }
}