谷歌地图添加标记

时间:2013-07-14 10:32:25

标签: android google-maps

我想在android中添加标记到谷歌地图可以任何人请帮助我做它如果你们有示例代码它会帮助我很多,并告诉我如何设置大小来映射片段?

提前致谢。

1 个答案:

答案 0 :(得分:5)

使用addMarker()

喜欢:

myMap.addMarker(new MarkerOptions().position(yourLatLng).icon(BitmapDescriptorFactory.fromResource(R.drawable.yourmarkericon)));

其中 myMap GoogleMap的对象,而 yourLatlng Latlng您要添加标记和 yourmarkericon 是您要在地图上显示的图标

修改:

参考文献

https://developers.google.com/maps/documentation/android/marker

https://developers.google.com/maps/documentation/android/reference/com/google/android/gms/maps/model/Marker

简单教程

http://bon-app-etit.blogspot.be/2012/12/add-informationobject-to-marker-in.html