mMap.moveCamera()
在上面的代码中,接受的参数是CameraUpdate
,但在文档中,它被给定为,我们应该使用CameraUpdateFactory
类来实现方法。
为什么它像
从文档中,CameraUpdateFactory类包含用于创建CameraUpdate对象的方法。因此,您应该使用工厂来创建这样的CameraUpdate。
//move and animate the camera
map.moveCamera(CameraUpdateFactory.newLatLng(LatLng(0.0,0.0)))
map.animateCamera(CameraUpdateFactory.zoomTo(11f), 2000, null)