如何只获取设备GPS位置ios

时间:2015-08-10 08:50:10

标签: ios gps core-location

有没有办法在ios中使用corelocation获取唯一的设备gps位置。 目前我正在使用以下代码。

 <div class="col-sm-7" ng-if="!initDataSource.IsReadOnly">
                            <input type="text" class="form-control" ng-model="Bestellung.BestellungKopfdaten.StartZeitDate"  validate-text validationgroup="Bestellung">
                            <p class="help-block">Error Message</p>
                        </div>

1 个答案:

答案 0 :(得分:0)

您应该将此代码添加到您的文件中。它在收到新位置时执行:

PFGeoPoint *geoPoint = [PFGeoPoint geoPointWithLatitude:coordinate.latitude longitude:coordinate.longitude];

src:Getting the Users Location - Apple