codecamp

tt.openLocation

基础库 1.0.0 开始支持本方法。

使用今日头条内置地图查看位置。


输入

继承标准对象输入,扩展属性描述:

属性类型默认值必填说明最低支持版本
latitudenumber纬度,范围为 -90 ~ 90,正数表示北,负数表示南1.0.0
longitudenumber经度,范围为 -180 ~ 180,正数表示东,负数表示西1.0.0
scalenumber18缩放比例,范围 5 ~ 181.0.0
namestring位置名1.0.0
addressstring地址的详细说明1.0.0


代码示例

tt.getLocation({
  success: function(res) {
    var latitude = res.latitude;
    var longitude = res.longitude;
    tt.openLocation({
      latitude: latitude,
      longitude: longitude,
      scale: 18
    });
  }
});


Tip

  • 该 API 需要用户授权方可调用,详细信息可参考用户授权
  • 该 API 有一定性能消耗,请注意不要频繁调用以防设备过热和耗电过快。小程序框架也会做相应的节流处理。
  • 输入的坐标坐标系应当为 "gcj02"


tt.getLocation
无标题文章
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

字节跳动小程序 介绍

字节跳动小程序 开发

字节跳动小程序开发框架

字节跳动小程序开发框架基础说明

字节跳动小程序开发框架基础功能

字节跳动小程序开发框架逻辑层

无标题文章

无标题目录

API

无标题文章

无标题文章

无标题文章

无标题文章

无标题文章

无标题目录

无标题目录

无标题文章

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }