Hai guys,

Iam using gmaps4rails to show gmaps in my application.iam getting the
map pointa right but iam unable to differentiate the current location
and nerby locations in my map.my idea  is to use different markers for
two locations i did it in the following way but it didnt worked for me

my controller

def profile
   @googlemaplocation=Location.find_by_id("#{params[:clinic_id]}")

    @json1 = @googlemaplocation.to_gmaps4rails do |locations, marker|

  marker.picture({
                  :picture =>
"http://www.google.com/mapfiles/dd-start.png";,
                  :width   => 32,
                  :height  => 32
                 })
  end

    @neargooglemaplocation=@googlemaplocation.nearbys(10)
    @json2= @neargooglemaplocation.to_gmaps4rails do |locations, marker|

  marker.picture({
                  :picture =>
"http://www.google.com/mapfiles/dd-start.png";,
                  :width   => 32,
                  :height  => 32
                 })
  end

    @json = (JSON.parse(@json1) + JSON.parse(@json2)).to_json

  end

my view

 <%= gmaps(:markers => { :data => @json } ) %>

what should i do if i want to display two different markers on the same
map

Thanks & Regards
Hari Krishna

-- 
Posted via http://www.ruby-forum.com/.

-- 
You received this message because you are subscribed to the Google Groups "Ruby 
on Rails: Talk" group.
To post to this group, send email to rubyonrails-talk@googlegroups.com.
To unsubscribe from this group, send email to 
rubyonrails-talk+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to