在設置好GoogleMap標記後,是否可以更改它?我使用的MarkerOptions設置本來像這樣的標題和摘要:在Android中更改標記文本GoogleMaps
SupportMapFragment theMapFragment = (SupportMapFragment)getSupportFragmentManager().findFragmentById(R.id.map);
GoogleMap theMap = theMapFragment.getMap();
MarkerOptions theMarker = new MarkerOptions();
theMarker.position(theLatLng);
theMarker.title("My title");
theMarker.snippet("This is my snippet");
theMarker.visible(true);
theMap.addMarker(theMarker);
後來,當用戶點擊上的東西,我想執行反向地理代碼查找和更改名稱/代碼段包含地址信息。
謝謝幫助! – Elliott