maps.google.com/maps/api/js?v=..." />

Gmaps4rails on jQueryMobile don't work?

You need to include the googlemaps javascript files in your layout: script type="text/javascript" src="" rel="nofollow">maps.google.com/maps/api/js?v=3.5&sensor... So you have to add a jquery mobile callback in your application. Js : $('#gmaps'). Live('pageshow',function(event){ Gmaps.loadMaps() }) If you want this to work, you have to set an id to the page containing the google map: div class="page" data-role="page" id="gmaps Last, you must prevent double loading of scripts, so change your call to the gmaps4rails helper: %= gmaps4rails(@json, false, false) %.

You need to include the googlemaps javascript files in your layout: the map is created thanks to a window. Onload callback. Since the page is already loaded, it fails.So you have to add a jquery mobile callback in your application.

Js: $('#gmaps'). Live('pageshow',function(event){ Gmaps.loadMaps(); }); If you want this to work, you have to set an id to the page containing the google map: Last, you must prevent double loading of scripts, so change your call to the gmaps4rails helper.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions