4 回答

TA貢獻(xiàn)1811條經(jīng)驗 獲得超4個贊
我不知道您是否已修復(fù)代碼,現(xiàn)在還可以,但是在 onCreate()
if (getIntent().getExtras() != null) {
final Bundle bundle = getIntent().getBundleExtra("LOCATION");
mLatitude = bundle.getDouble("LATITUDE");
mLatitude = bundle.getDouble("LONGITUDE");
}
第二個mLatitude我認(rèn)為它必須mLongitude就像您在下一行中調(diào)用它一樣。
抱歉,我遲到了,沒用。

TA貢獻(xiàn)1876條經(jīng)驗 獲得超7個贊
第一個craete方法setupDestationLocation
public void setupDestationLocation(double longlat, double latitue, String title) {
LatLng Shop = new LatLng(longlat, latitue);
/* if (DestinationMarker != null) {
DestinationMarker.remove();
}*/
DestinationMarker = mMap.addMarker(new MarkerOptions()
.position(Shop)
.title(market_n)
.title(title)
.icon(BitmapDescriptorFactory.fromResource(R.mipmap.ic_marker_shop)));
CameraUpdate cameraUpdate = CameraUpdateFactory.newLatLngZoom(Shop, 14);
mMap.animateCamera(cameraUpdate);
}
現(xiàn)在,只需在方法(onMapReady)中調(diào)用方法
String title = "market";
for(int i = 0 ; i < 8 ; i++ ) {
double offset = i / 08d;
setupDestationLocation(longlat+offset,latitue,title+i);
}
- 4 回答
- 0 關(guān)注
- 602 瀏覽
添加回答
舉報