MapContext.getRegion

2020-08-26 16:37 更新

解釋:獲取當前地圖的視野范圍。

方法參數(shù)

Object object

object 參數(shù)說明

屬性名類型默認值必填說明

success

Function

接口調用成功的回調函數(shù),西南角與東北角的經(jīng)緯度。

fail

Function

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

complete

Function

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

success 返回參數(shù)說明

參數(shù)類型說明

southwest

Object

西南角方向的經(jīng)緯度

northeast

Object

東北角方向的經(jīng)緯度

示例 

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


圖片示例

代碼示例

<view class="wrap">
    <map id="myMap" style="width: 100%"></map>
    <button type="primary" bindtap="getRegion">獲取當前地圖的視野范圍</button>
</view>
Page({
    onLoad() {
        this.mapContext = swan.createMapContext('myMap');
    },
    getRegion() {
        this.mapContext.getRegion({
            success: res => {
                swan.showModal({
                    title: '視野范圍',
                    content: 'northeast: ' + JSON.stringify(res.northeast)
                        + '/' + 'southwest: ' + JSON.stringify(res.southwest)
                });
                console.log('視野范圍', res);
            }
        });
    }
});


以上內容是否對您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號
微信公眾號

編程獅公眾號