我想构建一个在Google地图上绘制标记的应用程序。这仍然很容易,但是我希望Firebase提供标记的纬度和经度值。我用下面的代码尝试了一下,除了标记已绘制,一切正常(我可以打印两个值)。
这是我尝试的代码:
var boatLatitude;
var boatLongitude;
void getBoatLocation() {
FirebaseDatabase.instance
.reference()
.child('latitudeBoot')
.onValue
.listen((event) {
print('-----------------------' + event.snapshot.value);
setState(() {
boatLatitude = event.snapshot.value;
});
});
FirebaseDatabase.instance
.reference()
.child('longitudeBoot')
.onValue
.listen((event) {
print(event.snapshot.value + '----------------------');
setState(() {
boatLongitude = event.snapshot.value;
});
Marker c = Marker(
markerId: MarkerId('3'),
icon: customIconBoat,
position: LatLng(boatLatitude, boatLongitude));
setState(() {
markers.add(c);
});
});
}
我在应用启动时调用上面的函数。
问题是我收到此消息,但不知道如何解决该问题:
E/flutter (22304): [ERROR:flutter/lib/ui/ui_dart_state.cc(157)] Unhandled Exception: type 'String' is not a subtype of type 'double'
答案 0 :(得分:3)
更改此行
position: LatLng(boatLatitude, boatLongitude));
对此:
position: LatLng(double.parse('$boatLatitude'), double.parse('$boatLongitude')));