android.location.Address.hasLatitude()方法的使用及代码示例

x33g5p2x  于2022-01-15 转载在 其他  
字(3.6k)|赞(0)|评价(0)|浏览(111)

本文整理了Java中android.location.Address.hasLatitude()方法的一些代码示例,展示了Address.hasLatitude()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Address.hasLatitude()方法的具体详情如下:
包路径:android.location.Address
类名称:Address
方法名:hasLatitude

Address.hasLatitude介绍

暂无

代码示例

代码示例来源:origin: square/assertj-android

public AddressAssert hasNoLatitude() {
 isNotNull();
 assertThat(actual.hasLatitude()) //
   .overridingErrorMessage("Expected to not have latitude but did.") //
   .isFalse();
 return this;
}

代码示例来源:origin: square/assertj-android

public AddressAssert hasLatitude() {
 isNotNull();
 assertThat(actual.hasLatitude()) //
   .overridingErrorMessage("Expected to have latitude but did not.") //
   .isTrue();
 return this;
}

代码示例来源:origin: stackoverflow.com

if(Geocoder.isPresent()){
  try {
    String location = "theNameOfTheLocation";
    Geocoder gc = new Geocoder(this);
    List<Address> addresses= gc.getFromLocationName(location, 5); // get the found Address Objects

    List<LatLng> ll = new ArrayList<LatLng>(addresses.size()); // A list to save the coordinates if they are available
    for(Address a : addresses){
      if(a.hasLatitude() && a.hasLongitude()){
        ll.add(new LatLng(a.getLatitude(), a.getLongitude()));
      }  
    }  
  } catch (IOException e) {
     // handle the exception
  }
}

代码示例来源:origin: com.squareup.assertj/assertj-android

public AddressAssert hasNoLatitude() {
 isNotNull();
 assertThat(actual.hasLatitude()) //
   .overridingErrorMessage("Expected to not have latitude but did.") //
   .isFalse();
 return this;
}

代码示例来源:origin: com.squareup.assertj/assertj-android

public AddressAssert hasLatitude() {
 isNotNull();
 assertThat(actual.hasLatitude()) //
   .overridingErrorMessage("Expected to have latitude but did not.") //
   .isTrue();
 return this;
}

代码示例来源:origin: stackoverflow.com

if(addressList != null && addressList.size() > 0) {
  // location exists
  Address address = addressList.get(0);
  System.out.println(address);
  if(address.hasLatitude() && address.hasLongitude()){
    coordinates[0] = address.getLatitude();
    coordinates[1] = address.getLongitude();
    this.canGetCoordinates = true;
    this.isLocationValid = true;
    System.out.println(coordinates[0]);
    System.out.println(coordinates[1]);
  }
} else { 
  // location does not exist
}

代码示例来源:origin: stackoverflow.com

List<Address> addressList = geoCoder.getFromLocationName(cityName, 1);
Address address = addressList.get(0);
if(address.hasLatitude() && address.hasLongitude()){
  double selectedLat = address.getLatitude();
  double selectedLng = address.getLongitude();
}

代码示例来源:origin: stackoverflow.com

if(Geocoder.isPresent()){
  try {
    String location = "MyLocation";
    Geocoder gcoder = new Geocoder(this);
    List<Address> addresses= gcoder.getFromLocationName(location, 5); // get the found Address Objects

    List<LatLng> ll = new ArrayList<LatLng>(addresses.size()); // A list to save the coordinates if they are available
    for(Address addr : addresses){
      if(addr.hasLatitude() && addr.hasLongitude()){
        ll.add(new LatLng(addr.getLatitude(), addr.getLongitude();
      }  
    }  
  } catch (IOException e) {
     // handle the exception
  }
}

代码示例来源:origin: stackoverflow.com

Geocoder g = new Geocoder(this);
 List<Address> addressList = null;
 String searchRoad = "Insert Road Name Here!";
 try {
   addressList = g.getFromLocationName(searchRoad, 1);
 } catch (IOException e) {
   Toast.makeText(this, "Location not found",     Toast.LENGTH_SHORT)
         .show();
     e.printStackTrace();
 } finally {
   Address address = addressList.get(0);
   if (address.hasLatitude() && address.hasLongitude()) {
     double selectedLat = address.getLatitude();
     double selectedLng = address.getLongitude();
     LatLng Road = new LatLng(selectedLat, selectedLng);
     Marker Custom = map.addMarker(new MarkerOptions()
         .position(searchedRoad).title("Here is the road location")
         .snippet("Hon the lads"));
 }

相关文章