gpt4 book ai didi

android - 如何使用 Xamarin 在 Android 应用程序中显示 Google map

转载 作者:行者123 更新时间:2023-11-29 21:09:06 25 4
gpt4 key购买 nike

我正在使用 Xamarin 设计一个 Android 应用程序,该应用程序将在其中包含一个带有谷歌地图的 Activity ,但我很难显示 map 。它显示一个空框,上面没有 map 显示。以下是我用于此练习的代码。

My Activity

namespace teslin
{
[Activity(Label = "Map")]
public class MpActivity : Android.GoogleMaps.MapActivity
{
protected override void OnCreate(Bundle bundle)
{
base.OnCreate(bundle);
SetContentView(Resource.Layout.MapView);
var map = FindViewById<MapView>(Resource.Id.mapv);
map.Clickable = true;
map.Controller.SetZoom(16);
map.Controller.SetCenter(new GeoPoint((int)40.8270449E6, (int)-73.9279148E6));
}}

xml lay out

<LinearLayout
android:orientation="horizontal"
android:minWidth="25px"
android:minHeight="25px"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/linearLayout3"
android:layout_weight="9" />
<com.google.android.maps.MapView
android:id="@+id/mapv"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:enabled="true"
android:apiKey="AIzaSyD-UMij5IO6ezjuFCNnF7tRoG3niaPbNEU" />
</LinearLayout>

最佳答案

看起来您正在使用过时/过时的 Maps API v1 .谷歌去年取消了对此的支持。

相反,您想使用 Android Maps API v2 (Google Play 服务的一部分)。 Xamarin 有 some documentation在 Android map 上。让 map 在 Android 中工作可能有点棘手,因此请仔细阅读这些文档。具体来说,您需要阅读有关 Maps API 的部分.

an example on Github这显示了如何使用 Google Play Services Component将 map 添加到您的应用程序。

关于android - 如何使用 Xamarin 在 Android 应用程序中显示 Google map ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23514548/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com