setScrollBy method
- int xPixel,
- int yPixel,
- {int animateDurationMs}
按像素移动地图中心点(Android独有)
xPixel 水平方向移动像素数
yPixel 垂直方向移动像素数
animateDurationMs 动画更新时间
bool 成功返回true 失败false
Implementation
Future<bool> setScrollBy(int xPixel, int yPixel,
{int animateDurationMs}) async {
return await BMFMapDispatcherFactory.instance.mapStatusDispatcher
.setScrollBy(_mapChannel, xPixel, yPixel,
animateDurationMs: animateDurationMs);
}