我是安卓编程的新手,我有一组来自 API 的纬度和经度,我想在谷歌地图上显示与该纬度和经度对应的位置,我尝试通过谷歌搜索但没有找到任何合适的链接。请帮忙。
googleMap.addMarker(new MarkerOptions((.position(yourLat, yourLon( .title("标记标题"((;
这是直截了当的。你可以为此使用标记,试试下面的代码,
float myLatitude = <some value>
float myLogitude = <some value>
GoogleMap map = //initiate your map
Marker marker = map.addMarker(new MarkerOptions()
.position(new LatLng(myLatitude, myLogitude))
.title("Location Name"));
map.add(marker);
有关更多信息,请查看此链接 示例代码