Why Gmaps4rails' marker.picture not showing the customized image of the marker?

331 Views Asked by At

I placed the the custom icon in assets/images/logo.png

and in the controller there is :

marker.picture({
    "url" => "logo.png" ,
    "width" => 32 ,
    "height" => 32})

I even tried replacing logo.png by \assets\images\logo.png but it does not work.

I checked the size of the logo and it is the same as above.

What is happening?

Update #1 : I tried using image_path & asset_path and non of them has done the work.

1

There are 1 best solutions below

0
On BEST ANSWER

Use view_context.image_path

The bug is not related to gmaps4rails, which only expects a valid path or url.

It's linked to Rails which doesnt let controller access some view helpers, so you have to use the view_context to get them.