MapContext.moveToLocation

解释:将地图中心移动到当前定位点,需要配合 map 组件的 show-location 使用 。

方法参数

示例

在开发者工具中预览效果

扫码体验

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

图片示例

MapContext.moveToLocation - 图2

MapContext.moveToLocation - 图3

MapContext.moveToLocation - 图4

代码示例

  • 在 swan 文件中
  1. <view class="wrap">
  2. <map id="myMap"
  3. longitude="{{longitude}}"
  4. latitude="{{latitude}}"
  5. style="width: 100%"
  6. show-location
  7. >
  8. </map>
  9. <button type="primary" bindtap="moveToLocation">移动到当前定位点</button>
  10. </view>
  • 在 js 文件中

Page({
    data: {
        latitude: 40.048828,
        longitude: 116.280412,  
    },
    onReady() {
        this.mapContext = swan.createMapContext('myMap');
    },
    moveToLocation: function () {
        this.mapContext.moveToLocation();
    }
});