【发布时间】:2019-10-03 12:50:40
【问题描述】:
我正在尝试使用颤振谷歌地图库在两个位置之间绘制折线。
// here the Map Body
body:Container(
child: GoogleMap(
myLocationEnabled: true,
mapType: MapType.hybrid,
onMapCreated: (GoogleMapController controller){
mapController=controller;
},
initialCameraPosition: CameraPosition(
target: center,
zoom: 11.0
),
markers: markers,
),
),
【问题讨论】:
标签: google-maps dart flutter google-polyline