我想在地图中添加多个标记,但我不知道如何。
目前,我正在使用它,它运作正常:
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个标记时问题就出现了。一个接一个地做这件事非常烦人。
有没有办法从数组或其他任何东西中读取标记?
另一个问题:我可以从外部文件中读取标记,因此我可以在不触及应用程序代码的情况下添加或更新标记吗?
感谢。
答案 0 :(得分:48)
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)));
}
答案 1 :(得分:15)
使用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);
}
答案 2 :(得分:1)
所以,如果从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"));
}
答案 3 :(得分:0)
是的,您可以使用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));
}
}
答案 4 :(得分:0)
这取决于您的数据来源。更好的方法是使您的自定义对象存储数据。例如:
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;
}
}
然后,您可以编写一些方法将数据从外部文件转换为自定义数据对象列表(但我认为这超出了此问题的范围)。
然后将这些数据传递给您的标记绘图方法并循环遍历它。考虑将标记保存在某些arraylist或地图(对象,标记)中是一种很好的做法,然后您就可以轻松访问它。
类似的东西:
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);
}
}
答案 5 :(得分:0)
在科特林中,您可以执行以下操作:-
让您将markerData的列表作为markerList
val markerList = ArrayList<MarkerData>()
,然后您可以遍历 forEach loop
并在 Marker
中添加 GoogleMap
作为:-
markerList.forEach{ markerData ->
googleMap.addMarker(MarkerOptions()
.position(LatLng(markerData.latitutde, markerData.longitude))
.anchor(0.5f, 0.5f)
.title(markerData.title)
.snippet(markerData.snippet)
.icon(BitmapDescriptorFactory.fromResource(markerData.iconResID)))
}
假设您的MarkerData是:-
class MarkerData(val latitutde : Double, val longitude : Double, val title : String, val snippets: String, @DrawableRes val iconResID: Int)
您正在将MarkerData添加为-:
MarkerData(
35.61049,
139.63007,
"Tokyo",
"hello Tokyo",
R.drawable.ic_icon_user_review
)
然后,您必须为矢量资产图标创建一个自定义方法,如下所示:-
private fun bitmapDescriptorFromVector(context: Context, vectorResId: Int): BitmapDescriptor? {
return ContextCompat.getDrawable(context, vectorResId)?.run {
setBounds(0, 0, intrinsicWidth, intrinsicHeight)
val bitmap = Bitmap.createBitmap(intrinsicWidth, intrinsicHeight, Bitmap.Config.ARGB_8888)
draw(Canvas(bitmap))
BitmapDescriptorFactory.fromBitmap(bitmap)
}
}
,然后对于Marker,您的方法应为:
markerList.forEach{ markerData ->
googleMap.addMarker(MarkerOptions()
.position(LatLng(markerData.latitutde, markerData.longitude))
.anchor(0.5f, 0.5f)
.title(markerData.title)
.snippet(markerData.snippet)
.icon(bitmapDescriptorFromVector(context!!, R.drawable.ic_icon_marker)))
}