2

我需要了解如何以编程方式移动我的 android googlemap。我让地图正常工作,但现在我需要将地图居中添加到谷歌地理编码器 httprequest 给我的特定坐标的功能。我从谷歌的响应中得到了坐标,但我还没有找到任何方法将我的地图实际移动到所述点。

我主要是在参考程序集上遇到麻烦。我正在使用 Xamarin C#,似乎所有的教程和示例都是用 Java 编写的,并且对东西的调用完全不同,需要 C# 中没有的东西。

  • 如何让我的地图移动到地图上的所需位置?
  • 以及如何在该点上放置标记?

另外,请在您的答案中添加任何必要的参考程序集的名称,以便我知道要添加/使用什么。

谢谢

.

这是我的相关代码:

MapsActivity.cs

public class MapsActivity : FragmentActivity {
    Query q;
    int latE6, lonE6;
    LatLng coordinates;

    protected override void OnCreate(Bundle bundle) 
    {
        base.OnCreate(bundle);
        SetContentView (Resource.Layout.Map);

        EditText sText = FindViewById<EditText> (Resource.Id.et_location);
        Button fButton = FindViewById<Button> (Resource.Id.btn_find);
        fButton.Click += (sender, e) => {
            q = new Query(sText.Text);
            q.CreateQuery();
            var result = q.ResponseFromGoogle.results.Find (item => item.geometry.location.lat.ToString("F") != null);
            sText.Text = result.geometry.location.lat.ToString("F") + " " + result.geometry.location.lat.ToString("F");

            coordinates = new LatLng(result.geometry.location.lat, result.geometry.location.lng);
        };
    }
}

AndroidManifest.xml

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" android:versionCode="1" android:versionName="1.0" package="IgluHarkka2.IgluHarkka2">
<uses-sdk android:minSdkVersion="7" />
<application android:label="@string/app_name">
    <uses-library android:name="com.google.android.maps" />
    <!-- Put your Google Maps V2 API Key here. This key will not work for you.-->
    <!-- See https://developers.google.com/maps/documentation/android/start#obtaining_an_api_key -->
    <meta-data android:name="com.google.android.maps.v2.API_KEY" android:value="XXXXXXXXXX" />
</application>
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="com.google.android.providers.gsf.permission.READ_GSERVICES" />
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_LOCATION_EXTRA_COMMANDS" />
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
<uses-feature android:glEsVersion="0x00020000" android:required="true" />

地图.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context=".MainActivity">
<RelativeLayout
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:orientation="horizontal">
    <Button
        android:id="@+id/btn_find"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/str_btn_find"
        android:layout_alignParentRight="true" />
    <EditText
        android:id="@+id/et_location"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:inputType="text"
        android:hint="@string/hnt_et_location"
        android:layout_toLeftOf="@id/btn_find" />
</RelativeLayout>
<fragment
    android:id="@+id/map"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    class="com.google.android.gms.maps.SupportMapFragment" />

4

1 回答 1

0

以下是您如何更改地图显示方式的摘要。更改相机位置下的部分将对您有所帮助。

于 2013-08-16T06:05:24.513 回答