I am working with google maps and I am trying to pass a value from my database (Access) to my javascript code.
I have
var centerPoint = new GLatLng( <% Double.parseDouble(myclass.getLatitude()); %> , <% Double.parseDouble(myclass.getLongitude()); %>);
where myclass.getLatitude() returns a string representation of my latitude and I convert it to double etc...
But the problem is the map does not display.