通过单击Map视图直接打开googlemap

r8xiu3jd  于 2021-06-30  发布在  Java
关注(0)|答案(0)|浏览(256)

我有一个应用程序,它使用Map视图显示某个位置的pin。我想打开谷歌Map这个引脚时,点击Map视图。
我在活动中做了以下几点

this.map.setClickable(true);
this.map.getMapAsync(this);

...

public void onMapReady(GoogleMap googleMap) {
        googleMap.getUiSettings().setMyLocationButtonEnabled(false);
        LatLng position= new LatLng(this.model.getLatitude(), this.model.getLongitude()); 
        googleMap.addMarker(new MarkerOptions().position(position).title(this.model.getLabel()));
        googleMap.moveCamera(CameraUpdateFactory.newLatLngZoom(position, 15));
    }

但它没有直接打开谷歌Map,而是显示以下按钮

我宁愿直接打开谷歌Map代替。我该怎么做?

暂无答案!

目前还没有任何答案,快来回答吧!

相关问题