This gem is awesome for displaying a dynamic map. I am a beginner programmer, and I cannot seem to get a custom marker to display on the map.
I have the following in my model:
def gmaps4rails_marker_picture
{
"picture" => 'images/logo_avatar.png',
"width" => '16',
"height" => '16'
}
end
I have tried many combinations of the info provided in the github README, but to no avail. My map works perfectly until the above code gets plugged into the model....then all the markers go away. Is the sidebar code required in order to display a custom marker?
Here is one version of what I have in the controller:
@markers = Property.where(:id => propertyids).to_gmaps4rails
and the view:
<%= gmaps4rails(@markers) %>
I have tried passing in the image as an option, but could not get it to work.
Any help would be much appreciated!
Hey tbone I think I was having a similar issue and found the solution, all I did was change it to this
the following code works for me, try it..
At the controller level, do:
It lets you use the assets tag helper.