setLocation

布尔类型,默认值为 false。

location 是用户的位置信息,比如经度,纬度等:

  1. "location" : {
  2. "latitude" : 24.57591,
  3. "longitude" : 118.09728,
  4. "speed" : -1,
  5. "altitude" : 0
  6. }

为了保护用户隐私,Fundebug 默认情况下不收集 location。开发者如果需要收集 location,需要进行配置:

插件版本 >= 0.6.1

  1. fundebug.init({
  2. setLocation: true
  3. });

插件版本 <= 0.5.0

  1. fundebug.setLocation = true;