swan.openLocation

解释:使用宿主 App 内置地图查看位置。

方法参数

Object object

object 参数说明

属性名类型必填默认值说明
latitudeFloat纬度,范围为 -90~90,负数表示南纬。
longitudeFloat经度,范围为 -180~180,负数表示西经。
scaleINT缩放比例,范围 5~18,默认为18。
nameString位置名
ignoredAppsarray定义在拉起的地图 App 面板中需要被屏蔽的地图类 App。
addressString地址的详细说明
successFunction接口调用成功的回调函数
failFunction接口调用失败的回调函数
completeFunction接口调用结束的回调函数(调用成功、失败都会执行)

示例

扫码体验

查看位置 swan.openLocation - 图1请使用百度APP扫码

图片示例

查看位置 swan.openLocation - 图2

查看位置 swan.openLocation - 图3

查看位置 swan.openLocation - 图4

代码示例1 - 自定义位置信息 :

在开发者工具中预览效果

  • 在 js 文件中
  1. Page({
  2. data: {
  3. locationInfo: {
  4. latitude: 40.04,
  5. longitude: 116.27,
  6. scale: 18,
  7. name: '百度科技园',
  8. address: '北京市海淀区西北旺东路10号院'
  9. }
  10. },
  11. openLocation () {
  12. let locationInfo = this.data.locationInfo;
  13. swan.openLocation({
  14. latitude: locationInfo.latitude,
  15. longitude: locationInfo.longitude,
  16. scale: locationInfo.scale,
  17. name: locationInfo.name,
  18. address: locationInfo.address,
  19. success: res => {
  20. console.log('openLocation success', res);
  21. },
  22. fail : function (err) {
  23. console.log('openLocation fail', err);
  24. }
  25. });
  26. }
  27. })

代码示例2 - 地图默认位置信息 :

在开发者工具中预览效果

  • 在 js 文件中
  1. Page({
  2. data: {
  3. locationInfo: {
  4. latitude: 40.04,
  5. longitude: 116.27,
  6. scale: 18
  7. }
  8. },
  9. openLocation () {
  10. let locationInfo = this.data.locationInfo;
  11. swan.openLocation({
  12. latitude: locationInfo.latitude,
  13. longitude: locationInfo.longitude,
  14. scale: locationInfo.scale,
  15. success: res => {
  16. console.log('openLocation success', res);
  17. },
  18. fail : function (err) {
  19. console.log('openLocation fail', err);
  20. }
  21. });
  22. }
  23. })

错误码

iOS

错误码说明
202解析失败,请检查参数是否正确