如何在android谷歌地图v2上放置标记/绘制经度和​​纬度

时间:2014-02-04 06:52:09

标签: c# android xamarin google-maps-android-api-2

我已经在我的应用程序上成功显示了android谷歌地图v2,我现在的问题是如何在地图上放置标记或绘制我的经度和纬度。我在互联网上找到了教程,但我找不到使用它的方法因为所有这些都使用了java。我在android编程中使用C#,你可以在android google map v2上放置标记/绘制经度和​​纬度时使用c#显示任何示例代码。

2 个答案:

答案 0 :(得分:1)

LatLng myLoc = new LatLng(latitude, longitue);
BitmapDescriptor bitmapDescriptor = BitmapDescriptorFactory
            .defaultMarker(BitmapDescriptorFactory.HUE_AZURE);
GoogleMap googleMap = ((SupportMapFragment) getFragmentManager()
                .findFragmentById(R.id.map)).getMap();
Marker marker = googleMap.addMarker(new MarkerOptions().position(myLoc)
            .icon(bitmapDescriptor).title(myLoc.toString()));

答案 1 :(得分:1)

Xamarin的MapsAndLocationDemo_v3示例包含placing markers的示例。