我正在尝试使用google_maps_flutter包,但TargetPlatform.fuchsia还不受地图插件的支持显示而不是地图,我在控制台中没有收到任何错误。我已经将包含API密钥的元数据条目添加到android/app/src/main
中的AndroidManifest.xml
文件中。
收到的消息而不是地图
下面是我的代码。
@override
_MyAppState createState() => _MyAppState();
}
class _MyAppState extends State<MyApp> {
GoogleMapController mapController;
final LatLng _center = const LatLng(45.521563, -122.677433);
void _onMapCreated(GoogleMapController controller) {
mapController = controller;
}
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
appBar: AppBar(
title: Text('Maps Sample App'),
backgroundColor: Colors.green[700],
),
body: GoogleMap(
onMapCreated: _onMapCreated,
initialCameraPosition: CameraPosition(
target: _center,
zoom: 11.0,
),
),
),
);
}
}
我该怎么解决这个问题?
问题是main.dart
:中的一行代码
debugDefaultTargetPlatformOverride = TargetPlatform.fuchsia;
我把它评论掉了,问题解决了。