本文整理汇总了TypeScript中com.unarin.cordova.beacon.Regions.default类的典型用法代码示例。如果您正苦于以下问题:TypeScript unarin.cordova.beacon.Regions.default类的具体用法?TypeScript unarin.cordova.beacon.Regions.default怎么用?TypeScript unarin.cordova.beacon.Regions.default使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了unarin.cordova.beacon.Regions.default类的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: function
LocationManager.prototype.startAdvertising = function(region, measuredPower) {
Regions.checkRegionType(region);
if (measuredPower)
return this._promisedExec('startAdvertising', [region, measuredPower], []);
else
return this._promisedExec('startAdvertising', [region], []);
};
示例2: function
Delegate.peripheralManagerDidStartAdvertising = function(pluginResult) {
pluginResult.region = Regions.fromJson(pluginResult.region);
};
示例3: TypeError
LocationManager.prototype.stopRangingBeaconsInRegion = function(region) {
if (!Regions.isBeaconRegion(region))
throw new TypeError('The region parameter has to be an instance of BeaconRegion');
return this._promisedExec('stopRangingBeaconsInRegion', [region], []);
};