MapContext.getCenterLocation

解释:获取当前地图中心的经纬度,返回的是 gcj02 坐标系,可以用于 swan.openLocation。

方法参数

Object object

object参数说明

属性名类型默认值必填说明
successFunction接口调用成功的回调函数 。
failFunction接口调用失败的回调函数
completeFunction接口调用结束的回调函数(调用成功、失败都会执行)

success返回参数说明

参数类型说明
longitudeNumber经度
latitudeNumber纬度

示例

在开发者工具中预览效果

扫码体验

MapContext.getCenterLocation - 图1请使用百度APP扫码

图片示例

MapContext.getCenterLocation - 图2

MapContext.getCenterLocation - 图3

MapContext.getCenterLocation - 图4

代码示例

  • 在 js 文件中
  1. Page({
  2. data: { },
  3. onReady() {
  4. this.mapContext = swan.createMapContext('myMap');
  5. },
  6. getCenterLocation: function () {
  7. this.mapContext.getCenterLocation({
  8. success: function (res) {
  9. swan.showModal({
  10. title: '位置信息',
  11. content: (res.longitude).toFixed(2) + '/' + (res.latitude).toFixed(2)
  12. });
  13. console.log("经度", res.longitude);
  14. console.log("纬度", res.latitude);
  15. }
  16. })
  17. }
  18. });