請問誰能告訴我是否有可能使用谷歌地圖api的功能(如聚焦和放大)而不是在地圖上,而是在用戶定義的圖像上(以.png或.png格式)。 jpeg格式)。如果是的話,該怎麼做?我一直在Google上搜索幾天,但我無法得到我的問題的確切答案。對不起,因爲很傻,但我是編程新手。希望有人能幫助我。Google maps api on用戶自定義圖像
0
A
回答
0
XML: -
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<fragment
android:id="@+id/map"
android:layout_width="match_parent"
android:layout_height="match_parent"
class="com.google.android.gms.maps.SupportMapFragment" />
<RelativeLayout
android:id="@+id/relative_map"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_alignParentRight="true"
android:layout_marginBottom="45dp"
android:layout_marginRight="20dp" >
<ImageView
android:id="@+id/btn_zoom_in"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/btn_zoom_in" />
<ImageView
android:id="@+id/btn_zoom_out"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_below="@+id/btn_location"
android:src="@drawable/btn_zoom_out" />
<ImageView
android:id="@+id/btn_location"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_below="@+id/btn_zoom_in"
android:src="@drawable/btn_location" />
</RelativeLayout>
</RelativeLayout>
你的活動: -
@Override
public void onClick(View v) {
switch (v.getId()) {
case R.id.btn_location:
map.animateCamera(CameraUpdateFactory.newLatLng(new LatLng(location
.getLatitude(), location.getLongitude())));
break;
case R.id.btn_zoom_in:
map.animateCamera(CameraUpdateFactory.zoomIn());
break;
case R.id.btn_zoom_out:
map.animateCamera(CameraUpdateFactory.zoomOut());
break;
default:
break;
}
}
我希望能解決你的問題.... :)
+0
感謝您的信息。我會試試看。但是當我說你點擊我的圖片時,我不明白你的意思。你能解釋一下嗎?正如我已經說過,我是編程新手:( – user2207125
+0
親愛的寫這個onClick方法.... – Namy
+0
看到我的更新的答案... – Namy
相關問題
- 1. Google Maps API圖像
- 2. Google Maps API v3通過自定義圖像疊加標記?
- 3. Google Maps API v3自定義按鈕
- 4. Google Maps API自定義標記
- 5. 自定義Google Maps API InfoWindow不工作
- 6. Google Maps Api v3自定義InfoWindow - 「google未定義」錯誤
- 7. Google Maps Api v3自定義InfoWindow - 「google未定義」錯誤
- 8. Google Maps API google.maps.event未定義
- 9. 如何使用Google Maps API和Java定義自定義區域
- 10. 使用縮放調整自定義圖像標記大小 - Google Maps API v3
- 11. react-google-maps自定義標記圖標
- 12. Google Maps API v3街景「google未定義」
- 13. Google Maps API v3 - 自定義多色圖標
- 14. Google Maps API NativeScript自定義標記圖標
- 15. Google Maps Api v3,自定義集羣圖標
- 16. Google Maps API自定義圖標不出現
- 17. Google Maps API v3:地形地圖的自定義樣式
- 18. 在iOS中使用Google Maps API的自定義Google地圖樣式
- 19. Google Chrome中的Google Maps API v3自定義光標的熱點
- 20. 帶Google Adsense的Google Maps API V3自定義控件?
- 21. 使用Google Maps自定義覆蓋圖創建自定義圖標
- 22. Google Maps V3自定義工具提示
- 23. Google Maps API與Google Maps Engine?
- 24. 如何使用Google Maps API自定義不同的標記CSS?
- 25. Google Maps API鍵自定義引用語法
- 26. 旋轉Google Maps API標記圖像
- 27. Google Maps API上的雷達圖像
- 28. Google Maps API返回「未定義」
- 29. Google Maps API v3 - 未定義GIcon
- 30. Google Maps API:未定義標記標題
是的,我們能做到這一點? – Namy
是否在你的xml中定義了你的圖片? 可以與我們分享您的xml嗎? – Namy
沒有..我的意思是考慮一個正常的jpeg圖像(說別人的照片),我們可以在該圖像上應用谷歌地圖功能 – user2207125