以下是我创建新标记的控制器代码
@vnote_hash = Gmaps4rails.build_markers(@vnotes) do |vnote, marker|
marker.lat vnote["latitude"]
marker.lng vnote["longitude"]
marker.json({:trip_vnote_id => vnote["id"] })
marker.picture({
"url" => "images",
"width" => SHOW_SMALL_THUMB_IMAGE_WIDTH,
"height" => SHOW_SMALL_THUMB_IMAGE_HEIGHT})
end
简而言之,我想做区分点击标记和取消点击标记。