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 http://developer.here.net/mobile_js#..._wsyF0Y7aEXbL_ seems to be broken. My fix was replacing
Code:
var innerHTML = "";
if (this.text) {
innerHTML += "<div>" + this.text + "</div>";
}
this.root.innerHTML = innerHTML;
with this.
Code:
var text = "";
if (this.innerHTML) {
text += "<div>" + this.innerHTML + "</div>";
}
this.root.innerHTML = text;
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.