マップに複数のマーカーを追加したいのですが、方法がわかりません。
現時点では、これを使用していますが、正常に機能します。
Marker m1 = googleMap.addMarker(new MarkerOptions()
.position(new LatLng(38.609556, -1.139637))
.anchor(0.5f, 0.5f)
.title("Title1")
.snippet("Snippet1")
.icon(BitmapDescriptorFactory.fromResource(R.drawable.logo1)));
Marker m2 = googleMap.addMarker(new MarkerOptions()
.position(new LatLng(40.4272414,-3.7020037))
.anchor(0.5f, 0.5f)
.title("Title2")
.snippet("Snippet2")
.icon(BitmapDescriptorFactory.fromResource(R.drawable.logo2)));
Marker m3 = googleMap.addMarker(new MarkerOptions()
.position(new LatLng(43.2568193,-2.9225534))
.anchor(0.5f, 0.5f)
.title("Title3")
.snippet("Snippet3")
.icon(BitmapDescriptorFactory.fromResource(R.drawable.logo3)));
しかし、マップに300個のマーカーを追加するときに問題が発生します。そして、それを一つ一つ行うのは非常に面倒です。
配列などからマーカーを読み取る方法はありますか?
別の質問:外部ファイルからマーカーを読み取って、アプリのコードに触れることなくマーカーを追加または更新できますか?
ArrayList<MarkerData> markersArray = new ArrayList<MarkerData>();
for(int i = 0 ; i < markersArray.size() ; i++) {
createMarker(markersArray.get(i).getLatitude(), markersArray.get(i).getLongitude(), markersArray.get(i).getTitle(), markersArray.get(i).getSnippet(), markersArray.get(i).getIconResID());
}
protected Marker createMarker(double latitude, double longitude, String title, String snippet, int iconResID) {
return googleMap.addMarker(new MarkerOptions()
.position(new LatLng(latitude, longitude))
.anchor(0.5f, 0.5f)
.title(title)
.snippet(snippet)
.icon(BitmapDescriptorFactory.fromResource(iconResID)));
}
MarkerOptions
を使用
private GoogleMap googleMap;
private MarkerOptions options = new MarkerOptions();
private ArrayList<LatLng> latlngs = new ArrayList<>();
Latlngsのリストに追加するには、
latlngs.add(new LatLng(12.334343, 33.43434)); //some latitude and logitude value
次に、forループを使用して、マップ上にそれらを設定します。
for (LatLng point : latlngs) {
options.position(point);
options.title("someTitle");
options.snippet("someDesc");
googleMap.addMarker(options);
}
したがって、txtファイルから座標を取得する場合、次のように読み取ることができます。
BufferedReader reader = null;
try {
reader = new BufferedReader(
new InputStreamReader(getAssets().open("filename.txt"), "UTF-8"));
// do reading, usually loop until end of file reading
String mLine = reader.readLine();
while (mLine != null) {
//process line
...
mLine = reader.readLine();
}
} catch (IOException e) {
//log the exception
} finally {
if (reader != null) {
try {
reader.close();
} catch (IOException e) {
//log the exception
}
}
}
あなたのtxtファイルがこのように見える場合
23.45 43.23
23.41 43.65
.
.
.
文字列をLatLngオブジェクトに変更できるより:
String[] coord = mLine.split("\\r?\\n");
ArrayList<LatLng> coordinates = new ArrayList<LatLng>;
for(int i = 0; i < coord.lenght(); ++i){
String[] latlng = coord.split(" ");
coordinates.add(new LatLng(latlng[0], latlng[1]);
}
そしてより:
for(LatLng cor : coordinates){
map.addMarker(new MarkerOptions()
.position(cor.getLat(), cor.getLng())
.title("Hello"));
}
データのソースに依存します。より良い方法は、データを保存するカスタムオブジェクトを作成することです。例えば:
public class MyMarkerData {
LatLng latLng;
String title;
Bitmap bitmap;
public LatLng getLatLng() {
return latLng;
}
public void setLatLng(LatLng latLng) {
this.latLng = latLng;
}
public String getTitle() {
return title;
}
public void setTitle(String title) {
this.title = title;
}
public Bitmap getBitmap() {
return bitmap;
}
public void setBitmap(Bitmap bitmap) {
this.bitmap = bitmap;
}
}
次に、外部ファイルのデータをカスタムデータオブジェクトのリストに変換するメソッドを作成できます(ただし、この質問の範囲外であると思います)。
次に、このデータをマーカー描画メソッドに渡し、ループします。マーカーを配列リストまたはマップ(オブジェクト、マーカー)に保存しておくと、簡単にアクセスできます。
そんな感じ:
HashMap<Marker, MyMarkerData> mDataMap = new HashMap<>();
public void drawMarkers(ArrayList<MyMarkerData> data) {
Marker m;
for (MyMarkerData object: data) {
m = googleMap.addMarker(new MarkerOptions()
.position(object.getLatLng())
.title(object.getTitle())
.icon(BitmapDescriptorFactory.fromBitmap(object.getBitmap()));
mDataMap.put(m, object);
}
}
はい、そのリスト内のすべてのマーカーを格納するためにArrayList
を使用し、その後、マップ上にマーカーを追加するためにforループを使用できます。
例えば:
googleMap.clear();
Now get all the marker in the Markers
//seachModelsList is the list of all markers
Marker[] allMarkers = new Marker[seachModelsList.size()];
for (int i = 0; i < seachModelsList.size(); i++)
{
LatLng latLng = new LatLng(seachModelsList.get(i).getCoordinates()[1], seachModelsList.get(i)
.getCoordinates()[0]);
if (googleMap != null) {
googleMap.setOnMarkerClickListener(this);
allMarkers[i] = googleMap.addMarker(new MarkerOptions().position(latLng);
googleMap.animateCamera(CameraUpdateFactory.newLatLngZoom(latLng, 17.0f));
googleMap.moveCamera(CameraUpdateFactory.newLatLngZoom(latLng, 17));
}
}