回答

1

我相信你不需要任何功能來檢查它。簡單的邏輯能做到這一點。

請嘗試下面的邏輯。

期矩形

public void rectangleRegionChecker() { 
    double Given_Lattitude; 
    double Given_Longtitude; 
    double SouthWestLattitude; 
    double SouthWestLongtitude; 
    double NorthEastLattitude; 
    double NorthEastLongitude; 
    if((SouthWestLattitude<=Given_lattitude)&&(SouthWestLongtitude<=Given_Longtitude)&&(NorthEastLattitude>=Given_Lattitude)&&(NorthEastLongtitude>=Given_Longtitude)){ 
    S.O.P("Inside the Rectangle"); 
    } 
} 

我相信這將幫助你很多。

+1

我理解邏輯。但是,它會爲Google Maps API起作用嗎?那麼Google Maps API中的Circle又如何? – Arun

相關問題