MapContext.getCenterLocation

2020-08-26 16:37 更新

解釋:獲取當(dāng)前地圖中心的經(jīng)緯度,返回的是 gcj02 坐標(biāo)系,可以用于 swan.openLocation。

方法參數(shù)

Object object

object 參數(shù)說明

屬性名類型默認(rèn)值必填說明

success

Function

接口調(diào)用成功的回調(diào)函數(shù) 。

fail

Function

接口調(diào)用失敗的回調(diào)函數(shù)

complete

Function

接口調(diào)用結(jié)束的回調(diào)函數(shù)(調(diào)用成功、失敗都會執(zhí)行)

success 返回參數(shù)說明

參數(shù)類型說明

longitude

Number

經(jīng)度

latitude

Number

緯度

示例 

在開發(fā)者工具中打開


圖片示例

代碼示例

<view class="wrap">
    <map id="myMap" style="width: 100%"></map>
    <button type="primary" bindtap="getCenterLocation">獲取位置</button>
</view>
Page({
    onLoad() {
        this.mapContext = swan.createMapContext('myMap');
    },
    getCenterLocation() {
        this.mapContext.getCenterLocation({
            success: res => {
                swan.showModal({
                    title: '位置信息',
                    content: (res.longitude).toFixed(2) + '/' + (res.latitude).toFixed(2)
                });
                console.log('經(jīng)度', res.longitude);
                console.log('緯度', res.latitude);
            }
        });
    }
});


以上內(nèi)容是否對您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號
微信公眾號

編程獅公眾號