Googleマップを使用してスニペットを追加したいのですが、私にそれらを表示したくありません。私はすべてを試みましたが、私は解決策を見出しませんでした。たぶん誰かがユーザースニペットを隠す方法を知っていますか?Googleマップスニペットをマーカーに追加して非表示にするにはどうすればよいですか?
map.addMarker(new MarkerOptions()
.title("TITLE NAME")
.icon(markerIcon)
.position(new LatLng(0, 0))
.snippet("TEST") /* <- hide */
);
マーカーを追加
map.setInfoWindowAdapter(new GoogleMap.InfoWindowAdapter(){
@Override
public View getInfoWindow(Marker marker) {
return null;
}
@Override
public View getInfoContents(Marker marker) {
View v = getLayoutInflater().inflate(R.layout.custom_maps_window_info, null);
TextView title = (TextView) v.findViewById(R.id.custom_marker_title);
title.setText(marker.getTitle());
return v;
}
});
は
ありがとうちょうどマップの情報ウィンドウからスニペットを隠す必要があります! :)
を試してみてください –