【发布时间】:2021-08-06 02:28:24
【问题描述】:
我正在尝试在谷歌地图上的两点之间添加折线,但它似乎不起作用。我按照 youtube https://youtu.be/CT6RkWL3GNE 和本网站 https://dev.to/olayemii/adding-route-paths-polylines-between-two-points-to-google-maps-in-flutter-23o2 上的教程编写代码。我使用 flutter_polyline_points 包来创建折线。我不知道我的代码有什么问题。
这是我的代码。
const LatLng SOURCE_LOCATION = LatLng(13.652720, 100.493635);
const LatLng DEST_LOCATION = LatLng(13.6640896, 100.4357021);
class Direction extends StatefulWidget {
@override
_DirectionState createState() => _DirectionState();
}
class _DirectionState extends State<Direction> {
Completer<GoogleMapController> mapController = Completer();
Set<Marker> _markers = Set<Marker>();
LatLng currentLocation;
LatLng destinationLocation;
Set<Polyline> _polylines = Set<Polyline>();
List<LatLng> polylineCoordinates = [];
PolylinePoints polylinePoints;
@override
void initState() {
super.initState();
polylinePoints = PolylinePoints();
this.setInitialLocation();
}
void setInitialLocation() {
currentLocation =
LatLng(SOURCE_LOCATION.latitude, SOURCE_LOCATION.longitude);
destinationLocation =
LatLng(DEST_LOCATION.latitude, DEST_LOCATION.longitude);
}
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text("Direction"),
),
body: GoogleMap(
myLocationEnabled: true,
compassEnabled: false,
tiltGesturesEnabled: false,
polylines: _polylines,
markers: _markers,
onMapCreated: (GoogleMapController controller) {
mapController.complete(controller);
showMarker();
setPolylines();
},
initialCameraPosition: CameraPosition(
target: SOURCE_LOCATION,
zoom: 13,
),
),
);
}
void showMarker() {
setState(() {
_markers.add(Marker(
markerId: MarkerId('sourcePin'),
position: currentLocation,
icon: BitmapDescriptor.defaultMarker,
));
_markers.add(Marker(
markerId: MarkerId('destinationPin'),
position: destinationLocation,
icon: BitmapDescriptor.defaultMarkerWithHue(90),
));
});
}
void setPolylines() async {
PolylineResult result = await polylinePoints.getRouteBetweenCoordinates(
"<GOOGLE_MAPS_API_KEY_HERE>",
PointLatLng(currentLocation.latitude, currentLocation.longitude),
PointLatLng(
destinationLocation.latitude, destinationLocation.longitude));
if (result.status == 'OK') {
result.points.forEach((PointLatLng point) {
polylineCoordinates.add(LatLng(point.latitude, point.longitude));
});
setState(() {
_polylines.add(Polyline(
width: 10,
polylineId: PolylineId('polyLine'),
color: Color(0xFF08A5CB),
points: polylineCoordinates));
});
}
}
}
【问题讨论】:
-
似乎问题出在您的 API 密钥上。我使用自己的 API 密钥尝试了您的代码,并且能够显示折线。确保您使用的是有效的 API 密钥,并且在您的项目中启用了 Directions API,并且您的项目已链接到有效的结算帐户以使其在您的终端上运行:developers.google.com/maps/documentation/directions/…
-
Directions API 需要在使用 API 之前设置结算帐户。我理解正确吗?
-
是的,您需要启用 Directions API 并拥有一个与您的项目相关联的结算帐户。
标签: flutter google-maps polyline