如何将2个latlng显示为颤抖的Google Map中的初始位置



我正在做(ola,uber(,例如flutter中的应用。

GoogleMap(
                onMapCreated: _onMapCreated,
                mapType: MapType.normal,
                compassEnabled: true,
                myLocationEnabled: true,
                initialCameraPosition: CameraPosition(target: 
                LatLng(0.0, 0.0)), // <---- instead of single 
                // latlong, i wanna show both source and
                // destination
                markers: _createMarker(),
                polylines: Set<Polyline>.of(polyLines.values),
              ),

await mapController
    .animateCamera(CameraUpdate.newLatLngBounds(
        LatLngBounds(southwest: LatLongONE, northeast: LatLongTWO), 35))

这两个西南,东北将由此给出在此处输入链接说明

Google API

最新更新