【发布时间】:2022-10-07 02:12:13
【问题描述】:
我收到此错误: 参数类型 \'LatLng\' 不能分配给参数类型 \'LatLng*\'
这不像之前问过的question。
我导入了flutter_map文档上推荐的所有需要的包。
import \'package:flutter/material.dart\';
import \'package:flutter_map/flutter_map.dart\';
import \'package:flutter_map/plugin_api.dart\';
import \'package:latlong2/latlong.dart\';
我将 LatLng 分配给中心。
options: MapOptions(
center: LatLng(0.0, 0.0),
zoom: 4.0,
maxZoom: 19.0,
),
标签: flutter