Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
特定の LatLng 位置にマーカーがあるかどうかを知りたいです。これを行う簡単な方法はありますか、それとも独自の関数を作成する必要がありますか?
Xavjerの答えは正しいですが、マーカーがたくさんある場合はループを削除したいかもしれません:
Map<LatLng, Marker> map = ...;
と:
Marker marker = map.get(yourLatLng); if (marker != null) { // just do it }