Touch based zooming on nexus 7 (android) broken?
Hi people,
Hoping this is the right place to post this. The multitouch based zooming appears to be broken on the Nexus 7. Everything works fine except for the multitouch zooming. It only reacts a tiny little bit. This problem appears to occur everywhere I use the mh5 or javascript code. Only m.here.com works fine. I do not have this problem on my iphone. Hoping to have it fixed soon!
Re: Touch based zooming on nexus 7 (android) broken?
Hi,
thank you for bug reporting. We'll take care of it.
Br,
Leo
Re: Touch based zooming on nexus 7 (android) broken?
Just to provide some more information, i'm almost completely sure it has something to do with the user agent handling to detect android devices. In the dolphin browser, everything does work. When i use the default chrome browser it does not work. Might be because it has the word 'chrome' in the user agent. My tablet is broken, so I have not yet been able to confirm this, but that seems to be the case.
On an unrelated matter, the example as posted in [url]http://developer.here.net/mobile_js#_48_INSTANCE_wsyF0Y7aEXbL_[/url] seems to be broken. My fix was replacing
[CODE]
var innerHTML = "";
if (this.text) {
innerHTML += "<div>" + this.text + "</div>";
}
this.root.innerHTML = innerHTML;
[/CODE]
with this.
[CODE]
var text = "";
if (this.innerHTML) {
text += "<div>" + this.innerHTML + "</div>";
}
this.root.innerHTML = text;
[/CODE]
I'm loving mh5! Works way smoother than Google Maps and it seems to be way more complete (or at least regarding making mobile apps). The only problem is the lack of getting started information. But the learning curve seems to be more than worth it.
Re: Touch based zooming on nexus 7 (android) broken?
Hi,
just to be shure. Which mh5 version do you use?
Leo
Re: Touch based zooming on nexus 7 (android) broken?
I used version 1.0 (same as what's available now). As soon as i get the tablet back from the repair show (which is taking a rather long time) I'll do some more testing.
Re: Touch based zooming on nexus 7 (android) broken?
Hi,
FYI: we've fixed this issue in 1.0.2 version which is going to be released very soon.
Leo