javascript 如何为谷歌的地理定位API获取wifiAccessPoints或Cell Tower对象?

cbeh67ev  于 2022-12-25  发布在  Java
关注(0)|答案(1)|浏览(106)

有什么方法可以让wifiAccessPoints或Cell Tower对象应用到google's geolocation API请求正文中吗?
我得到了大量的accuracy,从文档中可以看出,由于wifiAccessPointscellTowers,无法对对象进行地理定位。

pqwbnv8z

pqwbnv8z1#

你试过JS地理定位对象navigator.geolocation.getCurrentPosition()的基本语法...代替google吗?

getCurrentPosition(success);
  getCurrentPosition(success, error);
  getCurrentPosition(success, error, options);

参见:https://developer.mozilla.org/en-US/docs/Web/API/Geolocation/getCurrentPosition

相关问题