google maps v2をAndroidアプリケーションとその上のマーカーに追加します。ユーザーがこれらのマーカーのいずれかをクリックすると、タイトルポップアップが表示されます。タイトルは常にユーザーのクリックなしで?
そんな感じ:
googleMap.addMarker(new MarkerOptions()
.position(new LatLng(latitude, longitude))
.title("Your position")).showInfoWindow();
あなたはこれを行うことができます:
Marker marker = mMap.addMarker(new MarkerOptions().position(currentPosition).title("Your text"));
marker.showInfoWindow();
マーカー周辺の地図にマーカータイトルを表示するために、インターネットで見つけた解決策はどれも役に立たなかったので、袖をまくり、この問題を解決するこのライブラリを作成しました。
https://github.com/androidseb/Android-google-maps-floating-marker-titles
仕組みのプレビューを次に示します。
私はいくつかの実装ではあまり良くありませんが、ここに私のコードがあります:
public BitmapDescriptor getBitmapFromView(String title) {
View view = LayoutInflater.from(activity.getApplicationContext()).inflate(R.layout.marker_tooltip, null);
((TextView) view.findViewById(R.id.tooltips_title)).setText(title);
//Get the dimensions of the view. In my case they are in a dimen file
int width = activity.getResources().getDimensionPixelSize(R.dimen.tooltips_width);
int height = activity.getResources().getDimensionPixelSize(R.dimen.tooltips_height);
int measuredWidth = View.MeasureSpec.makeMeasureSpec(width, View.MeasureSpec.EXACTLY);
int measuredHeight = View.MeasureSpec.makeMeasureSpec(height, View.MeasureSpec.EXACTLY);
view.measure(measuredWidth, measuredHeight);
view.layout(0, 0, view.getMeasuredWidth(), view.getMeasuredHeight());
Bitmap bitmap = Bitmap.createBitmap(width, height, Bitmap.Config.ARGB_8888);
Canvas canvas = new Canvas(bitmap);
view.draw(canvas);
return BitmapDescriptorFactory.fromBitmap(bitmap);
}
...
marker.setIcon(getBitmapFromView(marker.getTitle()));
...
これをマップアプリのフラグメントにいくつかのバリエーションを加えて実装しました。たとえば、カスタム情報ウィンドウとマップ上のいくつかのイベントがありますが、すべてのマーカータイトルを同時に表示するにはその実装が必要でした。 あなたにとっても役立つかどうか教えてください
「activity.getResources()。getDimensionPixelSize(R.dimen.tooltips_width)」変数のアクティビティはフラグメントのプロパティです
私はこれに答えるのに少し遅れているかもしれませんが、以下のコードは私のために機能します:
//このライブラリを追加
implementation 'com.google.maps.Android:android-maps-utils:0.5'
//次に、以下のメソッドを使用します
public void makersMaker(GoogleMap googleMap){
IconGenerator iconFactory = new IconGenerator(this);
Marker marker1 = googleMap.addMarker(new MarkerOptions().position(newLatLng(-1.3177336,36.8251902));
marker1.setIcon(BitmapDescriptorFactory.fromBitmap(iconFactory.makeIcon("Marker 1")));
Marker marker2 = googleMap.addMarker(new MarkerOptions().position(new LatLng(-1.2857399,36.8214088)));
marker2.setIcon(BitmapDescriptorFactory.fromBitmap(iconFactory.makeIcon("Marker 2")));
}