我有一个应用程序,它使用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代替。我该怎么做?
暂无答案!
目前还没有任何答案,快来回答吧!