獲取經緯度上標記
回答
With marker.getPosition()
您會收到一個LatLng
對象,它具有latitude
和longitude
屬性。
所以,你可以這樣做:
Double latitude = marker.getPosition().latitude;
Double longitude = marker.getPosition().longitude;
希望它能幫助!
它的工作,謝謝! – rookieDeveloper
如果解決了您的問題,請接受爲答案。 – Talha
可以拆分 Lat Long網這樣
String getLatLong="19.1972,72.93";
String[] str_split= getLatLong.split(","); // Split.
String getLat= str_split[0];
String getLong= str_split[1];
your_map.setOnMarkerClickListener(new GoogleMap.OnMarkerClickListener()
{
@Override
public boolean onMarkerClick(Marker arg0) {
// Creating a marker
MarkerOptions markerOptions = new MarkerOptions();
// Setting the position for the marker
markerOptions.position(arg0); // get Latlong
// Now you use above logic
return true;
}
});
編輯
使用marker.getPosition().latitude;
爲更好的方法。
我正在做onMarkerClick上的所有隻有 – rookieDeveloper
@gaurav好吧好吧。向前移動 –
- 1. 獲取標記的經緯度(onclick)
- 2. 獲取標記的緯度/經度座標的PanoramaView
- 3. 獲取緯度和經度
- 4. 獲取經度和緯度
- 5. directionsService.route結果獲取所有標記的緯度經度值
- 6. 通過一個穩定的標記獲取緯度,經度?
- 7. 獲取緯度/經度從谷歌地圖使用標記
- 8. 可拖動標記gmaps.js獲取經度和緯度
- 9. 從Google標記中獲取緯度/經度
- 10. CoreLocation ::獲取經緯度座標
- 11. 從CLLocation獲取經緯度
- 12. 如何獲取經緯度?
- 13. 用於獲取經緯度
- 14. 從json獲取經緯度
- 15. 獲取經緯度,Android
- 16. 如何獲取拖動的標記經緯度信息
- 17. 谷歌地圖API獲取經緯度和替換標記?
- 18. 從GPS獲取高度/緯度/經度
- 19. 獲取經緯度從經緯度對象的Android
- 20. 谷歌地圖android通過在地圖上移動標記獲取經緯度
- 21. 經緯度座標
- 22. 無法獲取經度和緯度android
- 23. 獲取經度和緯度值更快
- 24. 從jxmapviewer2獲取緯度經度
- 25. 從國名獲取經度和緯度
- 26. 獲取緯度,經度從地址
- 27. 從GpsMyLocationProvider獲取經度和緯度(OSMdroid)
- 28. 獲取緯度和經度html js
- 29. 獲取緯度和經度從PIN碼
- 30. 使用javascript獲取緯度和經度
拆分字符串',' –
@IntelliJAmiya可以直接從標記中獲取經緯度嗎?或者我必須使用拆分 – rookieDeveloper
你可以這樣,http://stackoverflow.com/q/14054122/603744。由於標記默認是最終的,我們不能做setTag,但是可以使用hashmap。 –