I'm trying to get HERE Maps working on Firefox 12 and I'm having troubles with the SearchBox component, in particular clicking on a search result.
After a little debug, I found that the jsPlacesAPI.js remote script throws an error at this point:
var b=t.parse(s.getItem(u))||{};
This causes an error because u
is nokia.places.suggestions
and s.getItem(u)
returns an empty string.
Obviously, t.parse('')
fails because the empty string is not valid JSON.
This works like a charm in the latest Firefox, Chrome and IE8+.
Any suggestion, apart from updating FF?