這是一個ts文件中的一個函數,我傳遞的是經度和緯度。現在我必須在其他組件中獲取這些經緯度,以便如何在其他組件中獲取這些參數。如何獲取角度2中的其他組件中的多個參數
routeWithData(id, latitude, longitude)
{
//console.log(latitude, longitude);
this.router.navigate(['/provider/bookings/'+id+'/details/map-location/'+latitude+'/'+longitude]);
}
你只需要連接經緯度與任何分隔符(當然不包括/和)。例如谷歌地圖在URL中傳遞座標爲'@ 45.4572583,4.4090734' – StephaneM
我應該怎麼做。 –