modifying geolocation watchposition to request high accuracy readings, which should trigger GPS

This commit is contained in:
Danny Yoo 2011-09-26 14:22:43 -04:00
parent 17433b6c19
commit f8b9496a86

View File

@ -966,7 +966,10 @@
};
if (!!(navigator.geolocation)) {
navigator.geolocation.getCurrentPosition(success, fail);
this.id = navigator.geolocation.watchPosition(success, fail);
this.id = navigator.geolocation.watchPosition(
success,
fail,
{ enableHighAccuracy : true });
}
}
};
@ -983,11 +986,6 @@
// DomElementSource: string (U DOM string) -> EventSource
// A DomEventSource allows DOM elements to send events over to
// web-world.