How to add a marker tap/click on map using Flutter/Dart?

后端 未结 3 769
鱼传尺愫
鱼传尺愫 2021-01-12 16:10

I just started to take a look into flutter/dart. Coming from HTML5/Javascript, I wonder what would be an equivalent to:

google.maps.event.addListener(map, \         


        
3条回答
  •  夕颜
    夕颜 (楼主)
    2021-01-12 17:05

          List _markers = List.generate(10, (index) {
          Map result = results[index];
          Map location = result["geometry"]["location"];
          LatLng latLngMarker = LatLng(location["lat"], location["lng"]);
    
          return Marker(
              markerId: MarkerId("marker$index"),
              position: latLngMarker,
              onTap: () {
                         //Your code here...
                        },
              infoWindow: InfoWindow(title: result["name"],));
        });
    
       
    

提交回复
热议问题