i want to display a map centered to a specific location. In my controller, I use
@gmapsoptions = {
"map_options" => {"center_latitude" => 40,
"center_longitude" => 73,
"detect_location" => false,
"center_on_user" => false,
"auto_adjust" => false,
"auto_zoom" => false,
"zoom" => 8 }
}
and in my view i use
<%= gmaps(@gmapsoptions) %>
It renders the map just fine, but it is not centered on the location specified above but on "0/0" aka the dateline. How can I fix this?
rails generate scaffold user name:string address:string latitude:float longitude:float,rails generate gmaps4rails:installand followed the instructions on github. still the same behaviour :-(... – c_ern Sep 10 '12 at 8:46