Fixed
Status Update
Comments
st...@google.com <st...@google.com> #2
Digging around a bit, it appears WebKit itself doesn't handle authentication at all.
Instead, it would appear on Android that the package org.apache.http.auth does this.
Instead, it would appear on Android that the package org.apache.http.auth does this.
na...@google.com <na...@google.com> #3
It's definitely not passing through the information. Here's a snippet from my Apache
log:
---
192.168.10.199 - - [20/Nov/2008:20:14:37 -0600] "GET /file.txt HTTP/1.1" 401 401 "-"
"AndroidDownloadManager"
log:
---
192.168.10.199 - - [20/Nov/2008:20:14:37 -0600] "GET /file.txt HTTP/1.1" 401 401 "-"
"AndroidDownloadManager"
Description
coord.lat()//gives NaN, should give 0
coord.lng()//gives NaN, should give 0
Using it as
coord = new google.maps.LatLng(0, 0)
works fine, both coord.lat() and coord.lng() gives 0 as expected.
Bug is in function google.maps.LatLng, the conditional
if (a && (a.lat || a.lng)) is WRONG,
it should check for
if (a && (!isNaN(a.lat) || !isNaN(a.lng)))
or similar.