I am developing an application in the Nokia Web Tools using Google Map for Nokia C5. In the Emulator ,I am able to display the Marker, but when I use the same program in the Nokia C5 I can't see the Marker in it.
Here's the code I used for this:
marker = new google.maps.Marker({
position: myLatlng,
map: map,
title:"Hello World!",
labelContent: name+", "+ct,
labelAnchor: new google.maps.Point(22, 0),
labelClass: "labels"
});