X-Git-Url: https://projects.mako.cc/source/selectricity/blobdiff_plain/131cab23209cb1dfa81930240b8cf722d2302131..042f7939a264f7cdaa54df072ccd2c57e9587c4f:/app/controllers/quickvote_controller.rb diff --git a/app/controllers/quickvote_controller.rb b/app/controllers/quickvote_controller.rb index da2903d..d8d3d59 100644 --- a/app/controllers/quickvote_controller.rb +++ b/app/controllers/quickvote_controller.rb @@ -161,14 +161,13 @@ class QuickvoteController < ApplicationController redirect_to quickvote_url( :ident => params[:ident] ) end - def mapvoters + def list_voters @map = GMap.new("map_div_id") @map.control_init(:large_map => true, :map_type => true) center = nil - - QuickVote.ident_to_quickvote(params[:id]).voters.each do |voter| + @election=QuickVote.ident_to_quickvote(params[:id]) + @election.voters.each do |voter| next unless voter.ipaddress - location = GeoKit::Geocoders::IpGeocoder.geocode(voter.ipaddress) next unless location.lng and location.lat