离子3仅允许安全来源

时间:2018-08-31 11:59:30

标签: geolocation ionic3 cordova-plugins

我在Ionic 3应用程序中使用Cordova地理位置插件。它可以在某些android设备上运行,但不能在OnePlus A5010上运行

我收到错误消息“仅允许安全来源”。

我已经在我的应用中实现了SSL。

import { Geolocation } from '@ionic-native/geolocation';    

let locationOptions = {timeout: 10000, enableHighAccuracy: true}; 

this.geolocation.getCurrentPosition(locationOptions).then((position) => {

 }).catch((error) => { console.log('Error getting location', error); }); 

有人可以帮我解决这个问题吗?

0 个答案:

没有答案