- Java 双重比较
- java - 比较器与 Apache BeanComparator
- Objective-C 完成 block 导致额外的方法调用?
- database - RESTful URI 是否应该公开数据库主键?
下面的代码
navigator.geolocation.getCurrentPosition(getGeo_Success, getGeo_Fail, {
enableHighAccuracy : true,
maximumAge : Infinity,
timeout : 15000
});
检索当前 GPS 位置 - 但是 - 必须有有效的 GPS 信号(当然,设备的 GPS 功能应该打开)。
如果我们查看其他应用程序(比如 Android 设备上的 map )——它知道如何检索最后已知位置——即使我没有使用更新地理位置的应用程序在打开 map 之前 - 它会在 map 上显示我的位置,即使我在完全没有 GPS 信号的建筑物内也是如此。
澄清一下:我对我的应用程序检索到的最后一个地理位置不感兴趣,因为下次我启动它时,该地理位置可能无关紧要。
问题是:我们如何使用 HTML5/Phonegap 实现这一点?似乎 navigator.geolocation
只知道检索当前位置,即使 maximumAge
设置为 Infinity
(这意味着,年龄最后缓存的位置无关紧要,所以任何命中都可以(或者,应该是!))
最佳答案
Android 解决方案(iPhone 解决方案如下):
这很整洁:
我使用了 Android 的原生 LocationManager
,它提供了一个 getLastKnownLocation
函数 - 顾名思义
相关代码如下
1) 将以下 java 类添加到您的应用程序中
package your.package.app.app;
import org.apache.cordova.DroidGap;
import android.content.Context;
import android.location.*;
import android.os.Bundle;
import android.webkit.WebView;
public class GetNativeLocation implements LocationListener {
private WebView mAppView;
private DroidGap mGap;
private Location mostRecentLocation;
public GetNativeLocation(DroidGap gap, WebView view) {
mAppView = view;
mGap = gap;
}
public void onLocationChanged(Location location) {
// TODO Auto-generated method stub
getLocation();
}
public void getLocation() {
LocationManager lm =
(LocationManager)mGap.
getSystemService(Context.LOCATION_SERVICE);
Criteria criteria = new Criteria();
criteria.setAccuracy(Criteria.ACCURACY_FINE);
String provider = lm.getBestProvider(criteria, true);
lm.requestLocationUpdates(provider, 1000, 500, this);
mostRecentLocation = lm
.getLastKnownLocation(LocationManager.GPS_PROVIDER);
}
public void doInit(){
getLocation();
}
public double getLat(){ return mostRecentLocation.getLatitude();}
public double getLong() { return mostRecentLocation.getLongitude(); }
public void onProviderDisabled(String arg0) {
// TODO Auto-generated method stub
}
public void onProviderEnabled(String provider) {
// TODO Auto-generated method stub
}
public void onStatusChanged(String provider, int status, Bundle extras) {
// TODO Auto-generated method stub
}
}
2) 确保您的主类如下所示:
public class App extends DroidGap {
// Hold a private member of the class that calls LocationManager
private GetNativeLocation gLocation;
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
// This line is important, as System Services are not available
// prior to initialization
super.init();
gLocation = new GetNativeLocation(this, appView);
// Add the interface so we can invoke the java functions from our .js
appView.addJavascriptInterface(gLocation, "NativeLocation");
try {
super.loadUrl("file:///android_asset/www/index.html");
} catch (Exception e) {
// TODO: handle exception
e.printStackTrace();
}
}
@Override
public void onDestroy() {
// TODO Auto-generated method stub
super.onDestroy();
}
@Override
protected void onStop() {
// TODO Auto-generated method stub
super.onStop();
}
}
3) 在您的 JS 代码上,只需使用以下方法调用 native java:
window.NativeLocation.doInit();
alert(window.NativeLocation.getLat());
alert(window.NativeLocation.getLong());
这就是所有人! :-)
编辑:iPhone解决方案:
我编写了一个小型 Phonegap 插件,它创建了一个自定义类的接口(interface),该类正在使用 iOS 的原生 CLLocationManager
1) Phonegap 插件 (JS)
var NativeLocation = {
doInit: function(types, success, fail) {
return Cordova.exec(success, fail, "NativeLocation", "doInit", types);
},
getLongitude: function(types, success, fail){
return Cordova.exec(success, fail, "NativeLocation", "getLongitude", types);
},
getLatitude: function(types, success, fail){
return Cordova.exec(success, fail, "NativeLocation", "getLatitude", types);
}
}
2) 使我们能够调用“CCLocationManager 的函数”的 objective-c 类*NativeLocation.h*
#import <Foundation/Foundation.h>
#import <Cordova/CDVPlugin.h>
#import <CoreLocation/CoreLocation.h>
@protocol NativeLocationDelegate
@required
- (void)locationUpdate:(CLLocation *)location;
- (void)locationError:(NSError *)error;
@end
@interface NativeLocation : CDVPlugin <CLLocationManagerDelegate> {
id delegate;
NSString* callbackID;
CLLocationManager *lm;
Boolean bEnabled;
double nLat;
double nLon;
}
@property (nonatomic, copy) NSString* callbackID;
@property (nonatomic, retain) CLLocationManager *lm;
@property (nonatomic, readonly) Boolean bEnabled;
@property (nonatomic, assign) id delegate;
- (void) doInit:(NSMutableArray*)arguments
withDict:(NSMutableDictionary*)options;
- (void) getLatitude:(NSMutableArray*)arguments
withDict:(NSMutableDictionary *)options;
- (void) getLongitude:(NSMutableArray*)arguments
withDict:(NSMutableDictionary *)options;
@end
NativeLocation.m
#import "NativeLocation.h"
@implementation NativeLocation
@synthesize callbackID;
@synthesize lm;
@synthesize bEnabled;
@synthesize delegate;
- (void)doInit:(NSMutableArray *)arguments
withDict:(NSMutableDictionary *)options{
if (self != nil){
self.lm = [[[CLLocationManager alloc] init] autorelease];
self.lm.delegate = self;
if (self.lm.locationServicesEnabled == NO)
bEnabled = FALSE;
else bEnabled = TRUE;
}
nLat = 0.0;
nLon = 0.0;
if (bEnabled == TRUE)
[self.lm startUpdatingLocation];
CDVPluginResult* pluginResult = [CDVPluginResult
resultWithStatus:CDVCommandStatus_OK
messageAsString[@"OK"
stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding]];
if (bEnabled == TRUE){
[self writeJavascript: [pluginResult
toSuccessCallbackString:self.callbackID]];
} else {
[self writeJavascript: [pluginResult
toErrorCallbackString:self.callbackID]];
}
}
- (void)locationManager:(CLLocationManager *)manager
didUpdateToLocation:(CLLocation *)newLocation
fromLocation:(CLLocation *)oldLocation {
if ([self.delegate conformsToProtocol:@protocol(NativeLocationDelegate)])
[self.delegate locationUpdate:newLocation ];
}
- (void)locationManager:(CLLocationManager *)manager didFailWithError:(NSError *)error {
if ([self.delegate conformsToProtocol:@protocol(NativeLocationDelegate)])
[self.delegate locationError:error];
}
- (void)dealloc {
[self.lm release];
[super dealloc];
}
- (void)locationUpdate:(CLLocation *)location {
CLLocationCoordinate2D cCoord = [location coordinate];
nLat = cCoord.latitude;
nLon = cCoord.longitude;
}
- (void)getLatitude:(NSMutableArray *)arguments
withDict:(NSMutableDictionary *)options{
self.callbackID = [arguments pop];
nLat = lm.location.coordinate.latitude;
nLon = lm.location.coordinate.longitude;
CDVPluginResult* pluginResult = [CDVPluginResult
resultWithStatus:CDVCommandStatus_OK
messageAsDouble:nLat];
[self writeJavascript: [pluginResult toSuccessCallbackString:self.callbackID]];
}
- (void)getLongitude:(NSMutableArray *)arguments
withDict:(NSMutableDictionary *)options{
self.callbackID = [arguments pop];
nLat = lm.location.coordinate.latitude;
nLon = lm.location.coordinate.longitude;
CDVPluginResult* pluginResult = [CDVPluginResult
resultWithStatus:CDVCommandStatus_OK messageAsDouble:nLon];
[self writeJavascript: [pluginResult toSuccessCallbackString:self.callbackID]];
}
@end
3) 最后,从主 .js 调用所有内容
function getLongitudeSuccess(result){
gLongitude = result;
}
function getLatitudeSuccess(result){
gLatitude = result;
}
function runGPSTimer(){
var sTmp = "gps";
theTime = setTimeout('runGPSTimer()', 1000);
NativeLocation.getLongitude(
["getLongitude"],
getLongitudeSuccess,
function(error){ alert("error: " + error); }
);
NativeLocation.getLatitude(
["getLatitude"],
getLatitudeSuccess,
function(error){ alert("error: " + error); }
);
关于jquery - 检索最后已知的地理位置 - Phonegap,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10897081/
这个问题在这里已经有了答案: “return” and “try-catch-finally” block evaluation in scala (2 个回答) 7年前关闭。 为什么method1返
我有一个动态列表,需要选择最后一项之前的项目。 drag your favorites here var lastLiId = $(".album
我想为每个线程执行特定操作,因此,我认为tearDown Thread Group 不起作用。 是否有任何替代方法可以仅在线程的最后一次迭代时运行“仅一次 Controller ”? 谢谢。 最佳答案
在我的书中它使用了这样的东西: for($ARGV[0]) { Expression && do { print "..."; last; }; ... } for 循环不完整吗?另外,do 的意义何
我想为每个线程执行特定操作,因此,我认为tearDown Thread Group 不起作用。 是否有任何替代方法可以仅在线程的最后一次迭代时运行“仅一次 Controller ”? 谢谢。 最佳答案
有没有可能 finally 不会被调用但应用程序仍在运行? 我在那里释放信号量 finally { _semParallelUpdates.Re
我收藏了 对齐的元素,以便它们形成两列。使用 nth-last-child 的组合和 nth-child(even) - 或任何其他选择器 - 是否可以将样式应用于以下两者之一:a)最后两个(假设
我正在阅读 Jon Skeet 的 C# in Depth . 在第 156 页,他有一个示例, list 5.13“使用多个委托(delegate)捕获多个变量实例化”。 List list = n
我在 AM4:AM1000 范围内有一个数据列表(从上到下有间隙),它总是被添加到其中,我想在其中查找和总结最后 4 个结果。但我只想找到与单独列相对应的结果,范围 AL4:AL1000 等于单元格
我最近编写了一个运行良好的 PowerShell 脚本 - 然而,我现在想升级该脚本并添加一些错误检查/处理 - 但我似乎被第一个障碍难住了。为什么下面的代码不起作用? try { Remove-
这个问题在这里已经有了答案: Why does "a == x or y or z" always evaluate to True? How can I compare "a" to all of
使用 Django 中这样的模型,如何检索 30 天的条目并计算当天添加的条目数。 class Entry(models.Model): ... entered = models.Da
我有以下代码。 public static void main(String[] args) { // TODO Auto-generated method stub
这个问题在这里已经有了答案: Why does "a == x or y or z" always evaluate to True? How can I compare "a" to all of
这个问题已经有答案了: Multiple returns: Which one sets the final return value? (7 个回答) 已关闭 8 年前。 我正在经历几个在工作面试中
$ cat n2.txt apn,date 3704-156,11/04/2019 3704-156,11/22/2019 5515-004,10/23/2019 3732-231,10/07/201
我可以在 C/C++ 中设置/禁用普通数组最后几个元素的读(或写)访问权限吗?由于我无法使用其他进程的内存,我怀疑这是可能的,但如何实现呢?我用谷歌搜索但找不到。 如果可以,怎样做? 因为我想尝试这样
我想使用在这里找到的虚拟键盘组件 http://www.codeproject.com/KB/miscctrl/touchscreenkeyboard.aspx就像 Windows 中的屏幕键盘 (O
我正在运行一个 while 循环来获取每个对话的最新消息,但是我收到了错误 [18-Feb-2012 21:14:59] PHP Warning: mysql_fetch_array(): supp
这个问题在这里已经有了答案: How to get the last day of the month? (44 个答案) 关闭 8 年前。 这是我在这里的第一篇文章,所以如果我做错了请告诉我...
我是一名优秀的程序员,十分优秀!