Я хочу реализовать вид карты Google, чтобы получить местоположение, на которое нажимают пользователи - PullRequest
0 голосов
/ 03 апреля 2019

В Android я смог вызвать экран Google Places, чтобы позволить пользователю выбрать местоположение для сохранения, я хочу сделать это с помощью флаттера.

Я искал и почти ничего не реализовывал, и понял, что сейчас это самая официальная библиотека (до сих пор не реализована, что я хочу сделать) https://pub.dartlang.org/packages/google_maps_flutter

и это еще не закончено (Предварительный просмотр для разработчиков)

Ответы [ 2 ]

0 голосов
/ 06 апреля 2019
GoogleMap(
   onTap: _mapTapped,
   compassEnabled: true,
   onMapCreated: makeController,
   initialCameraPosition: CameraPosition(
     target: LatLng(40.712776,-74.005974),
     zoom: 12.0,
   ),
)

_mapTapped(LatLng location) {
   print(location);
// The result will be the location you've been selected 
// something like this LatLng(12.12323,34.12312)
// you can do whatever you do with it

}
0 голосов
/ 03 апреля 2019

Я использую это в моем pubspec

map_view: 
    git:
      url: git://github.com/Eimji/flutter_google_map_view

Затем вы можете захватывать события onclick на карте

mapView.onMapTapped.listen((location) {
      currentLatitude = location.latitude;
      currentLongitude = location.longitude;
      //Show only one marker
      mapView.clearAnnotations();
      mapView.setMarkers(
          [Marker("1", "Location", currentLatitude, currentLongitude)]);
      //Do whatever you want with the chosen location
      mapView.setCameraPosition(
          CameraPosition(Location(currentLatitude, currentLongitude), 18));
      .............
    });
...