gmaps4rails is a Ruby on Rails 3 gem, which provides a clear interface with GoogleMaps, OpenLayers, Bing and Mapquest

learn more… | top users | synonyms

0
votes
1answer
43 views

prevent sql injection in rails

I am using the following query to find nearest locations google maps. Is it immune to the Sql injection. If not can anyone help me to get rid of it. AlphaCourses.find_by_sql("SELECT *,( 6371 * acos( ...
1
vote
1answer
31 views

Rails – Geocoder and Google Maps help needed

I've got a bit of a problem in my app using geocoder and google maps for rails. Basically the site I'm developing signs up venues and the addresses of those venues gets saved as markers on the map. On ...
1
vote
1answer
30 views

RoR: Check for a location within a radius of the other location, using google maps api

I am using google maps fo rails gem https://github.com/apneadiving/Google-Maps-for-Rails/ . I am trying to find out a way through which I can see if a location is inside the map circle. For instance ...
-1
votes
0answers
39 views

Gmaps4rails visualRefresh (Google maps)

Good day. Does somebody know how to turn on visualRefresh on gmaps4rails gem. I tried (for non static maps) to add &visual_refresh = true as a URL parameter didn't work. In docs is wroted to ...
0
votes
0answers
13 views

Update markers on map dynamically in Gmaps4rails

I had created a simple rails application to display the data posted by devices(gps receiver & temperature sensor) through HTTP request. I followed instructions on git-hub to integrate the ...
0
votes
1answer
23 views

Google maps for rails: How to normalize two address fields

I am using the google maps for rails gem - https://github.com/apneadiving/Google-Maps-for-Rails. According to there model customization guide here - ...
0
votes
0answers
8 views

Render error message in Gmaps4rails

I use Gmaps4rails and dont understand, why not render error message. At github in section Model Customization found this line: :msg : string, to customize the error message in validation (if ...
0
votes
0answers
17 views

How to show tooltip in gmaps4rails?

I am working on a ruby on rails application. I am supposed to deal with google maps. For that I have used gmaps4rails gem.And I am working fine with that. Now I have strucked in showing the tooltip ...
0
votes
0answers
3 views

customize map Gmaps4rails gem with adding tooltip?

I want to add tooltip on mouse over with the gmaps4rials gem . Can you please provide code to add tooltip on the marker?
0
votes
1answer
48 views

Fancybox and gmaps4rails not working on heroku

I have a Ruby on Rails site on Heroku which uses both Fancybox for images and Gmaps4Rails for showing a map with marker. Locally everything works fine, but on Heroku both Fancybox and Gmaps4Rails ...
0
votes
0answers
35 views

gmaps4rails open infowindow by default

I am on a rails v.3.1.11 app and using gmaps4rails gem. according to various examples I've seen, i tempt to doing the goal of the subject with this: on the footer of my view (using haml): = yield ...
0
votes
2answers
40 views

gmaps4rails hide show sidebar

So, if markers are hidden on the map, their sidebar item stays visible. I read through the entire gem, and I didn't see any functionality for also hiding the corresponding sidebar element. Anyone ...
1
vote
1answer
32 views

gmaps4rails show hide functionality

I'm hoping to get a little bit of insight on show / hide functionality in gmaps4rails. example functionality // == shows all markers of a particular category, and ensures the checkbox is checked ...
1
vote
1answer
51 views

Unable to render gmaps4rails map

Ok, I've been trying for several hours to render a google map with gmaps4rails and I'm unable to figure it out, so I was hoping to get some ideas here. I think I'm pretty close though. Here's what ...
0
votes
1answer
26 views

How to search only within the displayed map with google maps?

Airbnb has a feature on their main search page that only the results in the map are shown. Is it something that is supported by the google maps api ? I am using the gem gmaps4rails. I havn't found ...
0
votes
0answers
69 views

ActiveRecord::RecordInvalid: Validation failed: Gmaps4rails address Address invalid error when Trying to import CSV to model with gmaps4rails

I'm importing a thousand record csv to a model that has gmap4rails geocoding. The import keeps failing after a dozen or so records, but always on a different record. The data doesn't seem bad, as it ...
0
votes
0answers
32 views

using .raw to pass options to .to_gmaps4rails

I am attempting to get the MarkerWithLabel library to work with the gmaps4rails gem. I got the library basically working by adding the scripts, making a small edit to ...
0
votes
0answers
64 views

Add markers to google map with different content boxes using a loop

I'm trying to add multiple markers to my google map, each with something different in the content boxes. This is the current code I have, It pulls information from a database and loops through each ...
0
votes
0answers
37 views

AJAXing a google maps infowindow that has a button in it

I'm using AJAX to show people attending an event. Click 'Attend' and the button changes to 'Don't Attend' and vice versa. This works great on its own. Then I got the great idea to put this ...
0
votes
1answer
15 views

Stubbing calls to exteranl API in gmaps4rails in cucumber scenarios

I have cucumber(with capybara) scenarios, which use gmaps4rails gem, thus some steps call gmaps external API during test's execution. I wanna stub out these calls. What is the best way to achieve ...
0
votes
1answer
59 views

Gmaps4rails Polygon

I'm very new to rails and have no clue how I may generate the correct javascript for creating polygons in gmaps4rails. I was able to display google maps with markers but am lost as how to generate ...
0
votes
1answer
35 views

GMAPS for Rails - how to handle blank addresses?

I'm using gem 'gmaps4rails'. It works fine as long as the Location record has address information. If the address is blank, Rails won't update the record. How can I test for blank and bypass the ...
1
vote
0answers
115 views

Google Map not showing in Ruby on Rails 3

Update: I have discovered a solution to this problem - please see comments at end of this post. Original Post: I can't get a Google map (API 3) to show in a view page in Ruby on Rails 3. I'm trying ...
0
votes
1answer
54 views

How do I add an addPolylines feature to gmaps4rails?

I'm working with the gmaps4rails gem (version 1.5.6), and I want to add the ability to add more Polylines to a map rather than replacing the Polylines that are already there. On github, this code is ...
-1
votes
2answers
63 views

No route matches {:action=>“show”, :controller=>“restaurants”}

If I want to go with my home page clicking on the map localhost:3000/maps gets out this error No route matches {:action=>"show", :controller=>"restaurants"} controllers/maps_controller.rb def index ...
0
votes
1answer
115 views

Ruby on rails how create link

Help to create link with name restaurant on the map on view show restaurant id. controllers/maps_controller.rb def index @maps = Map.all @json = Map.all.to_gmaps4rails do |map, marker| ...
1
vote
0answers
73 views

gmaps4rails methods - Gmaps.map.centerMapOnUser() and Gmaps.map.markers.length

Two questions here, but they're related. Is there a way to make the centerMapOnUser() action smooth? I have a marker that denotes my location, and it's draggable. // watch for marker movement, and ...
3
votes
2answers
90 views

Is it possible to separate groups of points by colour on a gmaps4rails Google maps display?

I have a map display of addresses which are used for deliveries. Each address is on a particular delivery route, so it would be really handy to have the points displayed in different colours depending ...
0
votes
0answers
19 views

Searching model for items based on distance with gmaps4rails

I've been getting intimate with the gmaps4rails gem lately. It's doing a lot for me, but there's one thing that's eluding me. I see in the wiki that I can search for 'google places' based on a ...
0
votes
0answers
30 views

gmaps4rails display list in table

hi i am using the gmaps4rails gem, and have edited one of the coffee script files so that i can have a list data displayed in a table instead of an unordered list. the problem i am facing now is that ...
1
vote
2answers
49 views

Incrementing letters using .next

def home letter = 'A' @markers = Location.all.to_gmaps4rails do |loc, marker| marker.infowindow render_to_string(partial: '/locations/info', locals: ...
0
votes
0answers
32 views

gmaps4rails dynamically changing circles on the map

controller: @date_string = params[:date_string] ? params[:date_string] : 'today' @search = Event.search(@date_string) # order search results and then paginate collection @events = @search.order('date ...
1
vote
1answer
124 views

gmaps4rails map display

I am new to Ruby on Rails and am trying to use the gmaps4rails gem. The longitude and latitude show up automatically but the map is not appearing. If I look at the page source info it seems like the ...
1
vote
0answers
62 views

gmaps4rails + JQM with Ajax not working

I am building a webapp with rails and JQM. The map shows up fine on my laptop and on my phone. The problem is when I am trying to launch it as a fullscreen app from a saved icon on my smartphone: ...
0
votes
0answers
45 views

gmaps4rails validating 2 addresses

I have a posting model which has 2 addresses. from_address and to_address. acts_as_gmappable validate: :validate_both_addresses I have this line to validate the addresses and I tried to do it ...
1
vote
0answers
48 views

jQuery get request returns gmaps4rails, displays nothing

Simple, I have a jquery-ui slider just above my gmap(Using gmaps4rails). When I slide it, I change the value from 2,4,6 and so on. This triggers the following jQuery function, ...
1
vote
0answers
61 views

How can I get more than 20 places using Google Maps For Rails?

Currently I'm using this incredible gem for maps in RoR (thanks Benjamin), and everything is working good. The only problem I have is when I want to get more than 20 places using the function ...
2
votes
1answer
92 views

gmaps4rails selecting marker by id

I want to make an info window open when a user hover's over a given link. I've given all the markers ids and the links have the same id. I can make the hover open an info window, I'm just not sure ...
0
votes
1answer
37 views

gmaps4rails select scope

I have gmaps4rails working to show all locations. But, I would like to show a map with workorders using their locations. Workorder belongs_to location. In the workorders controller, this will ...
0
votes
0answers
17 views

Gmaps4rails: parse address language

I need to make a "acts_as_gmappable callback" in a language of the country in which the address has been identified.
0
votes
1answer
42 views

Changing balloon text with Gmaps4rails

I'm using Gmaps4rails to display a google map in my rails application. I have a list of locations displayed correctly on the map, but when I click one of the points, the balloon which pops up doesn't ...
0
votes
0answers
63 views

Gmaps4rails not showing :description from controller

I am trying to add description and title to a marker using Gmaps4rails. When I tried this it does not work event_controller ... @json = @event.to_gmaps4rails do |event, marker| marker.title ...
3
votes
1answer
115 views

gmaps4rails shows marker just off map when map inside tab

I am using Gmaps4rails and I managed to get it working inside a tab adding this code to the tab funcionality. $(function() { $( "#tabs" ).tabs({ fx: { opacity: ...
0
votes
1answer
82 views

Why google maps for rails gem creating location with nil longtitude?

I have such problem. I'm using google_maps_for_rails gem and it is can't find location correctly. I run all instructions from documentation. Here is my application.erb: <%= yield :scripts%> ...
0
votes
0answers
50 views

Getting directions with gmaps4rails

This is probably a dumb question, but I have no clue how to do it. In a form I want the user to enter his address. After clicking on the 'show route' button, I want to reload my map and show the ...
0
votes
0answers
44 views

Gmaps4Rails error when not connected to the internet

I am running Rails 3.2 on Windows 7 in Development. I am using gmaps4rails to geocode addresses and then display the map. It is setup as per the gmaps4rails website. Everything works fine but when the ...
0
votes
0answers
37 views

Near returns no results

I recently imported new data into my app and now near is returning no results. Here is whats in the model: attr_accessible :address, :church_id, :oldid, :email, :facilities, :lat, :long, :phone, ...
0
votes
0answers
59 views

Gmaps4rails yelp like redo search after drag

I'm trying to create a map that will update markers upon drag. Ideally I would want to be able to calculate the new center of the map and find locations within a certain radius. Haven't really found ...
0
votes
1answer
277 views

Gmaps.map.callback not working after calling replaceMarkers using Gmaps4rails gem?

I am using Gmaps4rails and have successfully got quite a bit working, but I am a bit stumped. Probably due to my novice JS skills. I have been trying to follow examples in various questions but I ...
1
vote
2answers
130 views

Ruby/Rails way of pushing array of hashes to an array

I am building a hash into an array and then pushing each one into one big array. This works fine (I'm using Gmaps4Rails) but I'm wondering if there's a more Ruby way to go about it? def index ...

1 2 3 4 5 9