- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
非常感谢您的帮助、知识和时间,这对我来说是无价的。我正在开发 GPS 定位应用程序。基本思想是指南针的行为。如果朝纬度方向行走,那么我将收到关于我的方向是向北还是向南的通知,与经度相同。
因此,我必须保存已知的过去位置和当前位置,以便在它们之间进行比较并显示特定通知。到现在为止,我能够恢复当前位置和第一个位置,但我无法恢复前一个位置以与当前位置进行比较。我将不得不比较这两点之间的纬度和经度。因此,之前的位置和实际位置必须根据移动而变化,但我只能获得实际位置的更新。
我分享我拥有的源代码:
主要 Activity .java:
package com.example.locationservicetest;
import android.app.Activity;
import android.content.Context;
import android.content.Intent;
import android.location.Criteria;
import android.location.Location;
import android.location.LocationListener;
import android.location.LocationManager;
import android.os.Bundle;
import android.provider.Settings;
import android.widget.TextView;
import android.widget.Toast;
public class MainActivity extends Activity {
TextView latitude;
TextView longitude;
TextView prevLatitude;
TextView prevLongitude;
TextView provText;
double lat1;
double lon1;
LocationManager locationManager;
String provider;
MyLocationListener mylistener;
Criteria criteria;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
latitude = (TextView) findViewById(R.id.lat);
longitude = (TextView) findViewById(R.id.lon);
prevLatitude = (TextView) findViewById(R.id.prevLat);
prevLongitude = (TextView) findViewById(R.id.prevLon);
provText = (TextView) findViewById(R.id.prov);
//Get the location manager
locationManager = (LocationManager) getSystemService(Context.LOCATION_SERVICE);
//Define the criteria how to select the location provider
criteria = new Criteria();
criteria.setAccuracy(Criteria.ACCURACY_FINE); //default
//Charge of data?
criteria.setCostAllowed(false);
//Get the best provider depending on the criteria
provider = locationManager.getBestProvider(criteria, false);
//To receive the first location use cached location
Location location = locationManager.getLastKnownLocation(provider);
Location mLastLocation;
mylistener = new MyLocationListener();
if (location != null) {
mylistener.onLocationChanged(location);
mLastLocation=location;
lat1=mLastLocation.getLatitude();
lon1=mLastLocation.getLongitude();
prevLatitude.setText("Previous Latitude: "+String.valueOf(lat1));
prevLongitude.setText("Previous Longitude: "+String.valueOf(lon1));
} else {
//leads to the settings because there is no last known location
Intent intent = new Intent(Settings.ACTION_LOCATION_SOURCE_SETTINGS);
startActivity(intent);
}
// location updates: at least 1 meter and 200millsecs change
locationManager.requestLocationUpdates(provider, 200, 1, mylistener);
}
private class MyLocationListener implements LocationListener {
@Override
public void onLocationChanged(Location location) {
// Called when a new location is found by the network location provider.
// Initialize the location fields
latitude.setText("Latitude: "+String.valueOf(location.getLatitude()));
longitude.setText("Longitude: "+String.valueOf(location.getLongitude()));
Toast.makeText(getBaseContext(),"Location changed!",
Toast.LENGTH_SHORT).show();
}
@Override
public void onStatusChanged(String provider, int status, Bundle extras) {
Toast.makeText(getBaseContext(), provider + "'s status changed to "+status +"!",
Toast.LENGTH_SHORT).show();
}
@Override
public void onProviderEnabled(String provider) {
Toast.makeText(getBaseContext(), "Provider " + provider + " enabled!",
Toast.LENGTH_SHORT).show();
}
@Override
public void onProviderDisabled(String provider) {
Toast.makeText(getBaseContext(), "Provider " + provider + " disabled!",
Toast.LENGTH_SHORT).show();
}
}
}
Activity_main.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<TextView
android:id="@+id/prov"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="No provider selected yet"
android:layout_marginTop="10dp"
android:textSize="20dp" />
<TextView
android:id="@+id/lat"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginTop="20dp"
android:text="Latitude: -"
android:textSize="20dp" />
<TextView
android:id="@+id/lon"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
android:text="Longitude: -"
android:textSize="20dp" />
<TextView
android:id="@+id/prevLat"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginTop="20dp"
android:text="PrevLatitude: -"
android:textSize="20dp" />
<TextView
android:id="@+id/prevLon"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
android:text="PrevLongitude: -"
android:textSize="20dp" />
</LinearLayout>
提前感谢您的好意
最佳答案
我不确定你到底想要什么无论如何,这里有一些可能对您有用的建议
为了获得准确的数据,最好只使用 GPS 提供商,200 毫秒可能很短,您可能希望将其设为 1+ 秒
locationManager.requestLocationUpdates(LocationManager.GPS_PROVIDER, 1000, 1, locationListener);
也不需要调用 getLastKnownLocation 就可以开始监听和使用这些更新的值这是“MyLocationListener”类的简化实现
public class MyLocationListener implements LocationListener{
private Location previousLocation;
@Override
public void onLocationChanged(Location location) {
if(previousLocation != null ){
//i already cached a previousLocation
//most recent (lat , lng) are stored in location
//you can access the previous (lat.lng) from previousLocation
//TODO:do your calculation and Send your notification here
}else{
//this is the first location i got i dont have anything to comapare it with
//nothing to do here i just added it for clarity
}
previousLocation = location;
}
@Override
public void onStatusChanged(String s, int i, Bundle bundle) {
//TODO:implement if you need it
}
@Override
public void onProviderEnabled(String s) {
//TODO:implement if you need it
}
@Override
public void onProviderDisabled(String s) {
//TODO:implement if you need it
}
}
关于android - 更新之前的经纬度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30386444/
我对纬度和经度有疑问。当我想获取坐标时,只有 24 个 API 检索坐标。其他人没有。不知道为什么 我正在使用 GPSTracker 服务 public Location getLocation()
我有一个表(DB2 数据库),其中包含城市信息和相应的经纬度以及与城市相关的许多其他信息。我的要求是: 我的应用程序的输入将是纬度和经度,它们可能是或许多不是存储在数据库中的精确纬度和经度。我需要借助
我在经度和纬度上有一个位置 (A)。 我有一条线段,起点(B)和终点(C)在经度和纬度上。 我试图计算的是从 A 到 BC 线的最短距离。 换句话说,从 A 到最近点(在 BC 线上)的距离(以米为单
关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。 要求我们推荐或查找工具、库或最喜欢的场外资源的问题对于 Stack Overflow 来说是偏离主题的,
这个问题在这里已经有了答案: Find nearest latitude/longitude with an SQL query (18 个答案) 关闭 6 年前。 我正在尝试编写一个在某个位置附近
我正在尝试将 Yelp 的 API 与纬度/经度位置结合使用。我使用了 yelp 给出的 javascript 代码,它基本上有一个参数数组,并像这样将值插入其中: parameters.push([
我有一大组纬度和经度需要存储在 MySQL 数据库中。我正在阅读有关要使用的字段类型的相互矛盾的建议。 数据的一个例子是... Lat | Long -----------------
在我的应用程序中,我通过以特定时间间隔从服务器获取他们的位置(纬度和经度)来显示其他人的位置。 获取后,我必须删除所有注释并删除基于服务器数据的新注释。 但它看起来非常低效,因为当我们以前存在相同用户
我正在尝试将鼠标在谷歌地图上的位置转换为 LatLng 对象。我看到很多关于通过谷歌地图“点击”事件等获取位置的帖子,如下所示: google.maps.event.addListener(map,
我的 SQLite 数据库中存储了经纬度数据,我想获取与我输入的参数最近的位置(例如,我当前的位置 - 纬度/经度等)。 我知道这在 MySQL 中是可能的,并且我已经进行了相当多的研究,认为 SQL
伙计们,我在我的 Android 应用程序中实现了谷歌地图,并开始创建一个标记,我在 map 中间放置了一个标记图像。现在,我希望每当用户拖动 map 时,我都能得到 map 中心的位置(我放置图像的
我正在实现 GPS 跟踪器以从 http://www.androidhive.info/2012/07/android-gps-location-manager-tutorial/ 获取经度和纬度.
我有一个多边形形状文件(可下载 here ),我想从中创建一个包含 3 列的 data.frame ,其中包含: 多边形 ID 质心纬度 质心经度 来自这个答案here ,我知道以 Formal Cl
有没有办法使用facebook api以(纬度和经度格式)获取用户的位置? 我能够获得位置名称和其他属性,但不能获得该地点的经纬度。 javascript中是否有相同的API。 最佳答案 如果您有用户
在我的“原生”Android 应用程序中,我试图计算 map 上两个位置之间以英尺和/或米(如乌鸦飞翔)为单位的距离。理想情况下,会有一种方法将两个 LatLng 值(因为这是我随时可用的)作为输入并
我想使用 Google API 获取 GPS 位置。 我的代码: mGoogleApiClient = new GoogleApiClient.Builder(this)
这个问题在这里已经有了答案: How to calculate the latlng of a point a certain distance away from another? (6 个答案)
我是一名优秀的程序员,十分优秀!