2016-12-28 95 views
0

我的位置根據其他活動提供的意圖而改變,它工作正常,顯示我想從LatitudeDegreeLongitudeDegree獲取的位置。現在我想顯示其附近的地方用戶choice.like如果他鍵入ATM,然後附近的ATM應顯示等。如何從標記位置附近搜索地點?

這是我的代碼,我得到的位置,我試圖使用地方選擇器,但我不知道我是否正確,應該如何使用。

public class MapsActivity extends FragmentActivity implements OnMapReadyCallback{ 

    private GoogleMap mMap; 
    private String mAirportName; 
    private int mLatitudeDegree; 
    private int mLongitudeDegree; 
    private int PLACE_PICKER_REQUEST = 1; 

    @Override 
    protected void onCreate(Bundle savedInstanceState) { 
     super.onCreate(savedInstanceState); 
     setContentView(R.layout.activity_maps); 
     // Obtain the SupportMapFragment and get notified when the map is ready to be used. 
     SupportMapFragment mapFragment = (SupportMapFragment) getSupportFragmentManager() 
       .findFragmentById(R.id.map); 
     mapFragment.getMapAsync(this); 
     Intent newIntent = getIntent(); 
     mAirportName = newIntent.getStringExtra("airportName"); 
     mLatitudeDegree = newIntent.getIntExtra("latDegree", 200); 
     mLongitudeDegree = newIntent.getIntExtra("lngDegree", 201); 

     /*PlacePicker.IntentBuilder builder = new PlacePicker.IntentBuilder(); 

     try { 
      startActivityForResult(builder.build(this), PLACE_PICKER_REQUEST); 
     } catch (GooglePlayServicesRepairableException e) { 
      e.printStackTrace(); 
     } catch (GooglePlayServicesNotAvailableException e) { 
      e.printStackTrace(); 
     }*/ 
    } 


    @Override 
    public void onMapReady(GoogleMap googleMap) { 
     mMap = googleMap; 

     // Add a marker and move the camera 
     LatLng latLng = new LatLng(mLatitudeDegree, mLongitudeDegree); 
     mMap.addMarker(new MarkerOptions().position(latLng).title(mAirportName)); 
     mMap.moveCamera(CameraUpdateFactory.newLatLng(latLng)); 
     mMap.animateCamera(CameraUpdateFactory.zoomTo(5)); 
    } 


    @Override 
    protected void onActivityResult(int requestCode, int resultCode, Intent data) { 

     super.onActivityResult(requestCode, resultCode, data); 
     if (requestCode == PLACE_PICKER_REQUEST) { 
      if (resultCode == RESULT_OK) { 
       Place place = PlacePicker.getPlace(data, this); 
       String toastMsg = String.format("Place: %s", place.getName()); 
       Toast.makeText(this, toastMsg, Toast.LENGTH_LONG).show(); 
      } 
     } 
    } 
} 
+0

你有那些項目附近的緯度經度? –

+0

LatitudeDegree和LongitudeDegree不過是我的經緯度 –

+0

如果你想顯示像ATM這樣的其他位置,你還需要那些經緯度 –

回答

0

如果你有LAT郎附近的項目然後用標記並將其標記。如果您沒有,那麼您需要購買這樣的API或創建您自己的數據庫或嘗試搜索是否有開放API可用。

0

如果您有其他地方(例如:紡織店)的經緯度位置,可以使用此方法檢查用戶和位置之間的距離;

public double callDistanceToMethod(LatLng latLngStartPosition, LatLng latLngEndPosition) { 

     Location endLocation = new Location("EndPosition"); 
     endLocation.setLatitude(latLngEndPosition.latitude); 
     endLocation.setLongitude(latLngEndPosition.longitude); 

     Location startLocation = new Location("StartPosition"); 
     startLocation.setLatitude(latLngStartPosition.latitude); 
     startLocation.setLongitude(latLngStartPosition.longitude); 


     double distance = startLocation.distanceTo(endLocation); 
     System.out.println("Hello Distance**--->" + distance); 
     return distance; 
    } 

調用此方法像下面(將米返回)

Double distanceBetweenTwoLocations = callDistanceToMethod(startCoordinatesInLatLng, endCoordinatesInLatLng); 

如果你現在想,你可以使用,如果條件

if(distanceBetweenTwoLocations <100){ 
// ok user is almost there in 100 meter range 
// display an alert , send a push notification or anything 


} 
+0

好的,謝謝你:-) –

+0

如果有幫助,你可以接受/投票 –

0

除了上面的回答:如果你可以將你附近的地方放在一個列表或數據庫中,通過以下算法可以找到最近的地方:

distancefaktor = ((currentlat-listitem_lat)*(currentlat-listitem_lat)+(currentlon-listitem_lon)*(currentlon*listitem_lon)) 

然後通過distancefaktor對列表進行排序並採取i.E.前10個項目。

我看到很晚了,你正在研究谷歌地圖。在你必須使用谷歌的API,這種情況下,取得附近的地方:

https://developers.google.com/places/web-service/search?hl=de