MapContext.translateMarker

解释:平移 marker ,带动画 。

方法参数

Object object

object 参数说明

属性名类型默认值必填说明

markerId

Number

指定 marker

destination

Object

指定 marker 移动到的目标点

autoRotate

Boolean

移动过程中是否自动旋转 marker

rotate

Number

marker 的旋转角度

duration

Number

1000ms

动画持续时长,平移与旋转分别计算

animationEnd

Function

动画结束时回调函数

success

Function

接口调用成功的回调函数

fail

Function

接口调用失败的回调函数

complete

Function

接口调用结束的回调函数(调用成功、失败都会执行)

示例

跳转编辑工具

在开发者工具中打开

在 WEB IDE 中打开

扫码体验

代码示例

百度智能小程序

请使用百度APP扫码

图片示例

MapContext.translateMarker - 图2

代码示例

在开发者工具中打开

在开发者工具中打开

在 WEB IDE 中打开

  • SWAN
  • JS
  1. <view class="wrap">
  2. <map id="myMap"
  3. longitude="{{longitude}}"
  4. latitude="{{latitude}}"
  5. style="width: 100%"
  6. markers="{{markers}}">
  7. </map>
  8. <button type="primary" bindtap="translateMarker">平移 marker</button>
  9. </view>