我是一位刚使用Google Maps v2的新Android开发人员。
我只需要让用户拖动地图,但初始标记不应随之移动。
这是我的布局:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="wrap_content"
android:layout_height="wrap_content" >
<fragment
android:id="@+id/map"
android:name="com.google.android.gms.maps.MapFragment"
android:layout_width="match_parent"
android:layout_height="match_parent" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginLeft="2dp"
android:layout_marginRight="2dp"
android:layout_marginTop="20dp"
android:gravity="top|center_horizontal"
android:orientation="vertical" >
<EditText
android:id="@+id/edtDirection"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:hint="@string/hint_buscar"
android:lines="1"
android:maxLines="1"
android:padding="5dp" />
<Button
android:id="@+id/btnSearch"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/btn_buscar" />
</LinearLayout>
</RelativeLayout>
这是我的 MapActivity.java ,它显示地图:
public class MapaActivity extends Activity {
private GoogleMap map;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
requestWindowFeature(Window.FEATURE_NO_TITLE);
setContentView(R.layout.activity_mapa);
if (map == null) {
map = ((MapFragment) getFragmentManager()
.findFragmentById(R.id.map)).getMap();
map.addMarker(new MarkerOptions().position(new LatLng(-12.0000, -77.0000)).title("Origin"));
map.moveCamera(CameraUpdateFactory.newLatLngZoom(new LatLng(-12.0000, -77.0000), 14));
}
}
}
我可以使用Google地图的任何方法吗?
答案 0 :(得分:2)
你可以模拟它。不是使用真实的Marker
,而是将ImageView
置于MapView
的{{1}}之上。
答案 1 :(得分:0)
试试这个..而不是你的代码
//map.moveCamera(CameraUpdateFactory.newLatLngZoom(new LatLng(-12.0000, -77.0000), 14));
使用此代码'将标记保留在地图中心
map.animateCamera(CameraUpdateFactory.newLatLngZoom(
new LatLng(LatitudeValue, LongitudeValue ), 14));