Changing balloon text with Gmaps4rails - ruby-on-rails

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 show the information I want displayed. I don't think it would be hard to change the data/format of the balloon information, but I can't find where this balloon information is stored!
What files within Gmaps4rails define what information is displayed in the balloon when a point on the map is clicked?

You must redefine gmaps4rails_infowindow method in your model, for example:
def gmaps4rails_infowindow
"<h1>#{self.name}</h1><p>#{self.address}</p><p>#{self.description}</p>"
end
Security Warning

Related

View and Geolocation fields

There is something wrong with my views and the way it's communicating with geolocation field. Firstly the map is not opening zoomed out so you can see all locations within the view which means I have to zoom out to see all the map markers.
Secondly, whenever the markers are hovered or clicked they don't show any relevant field data or links to the nodes of which the markers are related. I've tried every configuration that I can think of in views Format, Fields and Filter criteria and nothing seems to work.
My entity structure consists of Venues and Events. The Venue has the geolocation field which is entity referenced in the Event with inline_entity_form (complex). The view I'm working from is an Events view with a relationship to Venues. I've also tried putting a geolocation field directly in the Event entity and I still have the same problem.
Does anybody have a solution to these issues?
screenshot of current map view
add attachment for your map and also separate page for the list of your fields.Also in the filter criteria exposed the boundary of you geolocation field.Enable ajax,it works for me.

Adding Button/Label on Pdf Page using PDFKIT

I am trying to add some interactive buttons on pdf pages. I am showing Pdf file using Apple PDFKit and I have implemented UITapGesture, so when user tap on screen I show a annotation on it, issue is I want to mark this annotation as number like 1,2,3 etc. and whenever user click on this annotation user should be prompt a message that do you want to delete it? and then remove it.
Now,
How can I give annotation as numbers 1,2,3 etc.?
How can I add action on this same annotations? so that user can delete it on action?
Note: If you are unable to understand use case, then just take an example of placing balls of snooker game on different places.

Change GMLib default marker

I am using gmlib in a delphi application and it's living up to my needs. I load markers form a table of coordinates, but now I want to replace the default marker style. Since I am doing this all in code, I don't have any gmmarker items. My code is looped simply:
gmmarker1.Add(qryPoints.FieldByName('lat').AsFloat,qryPoints.FieldByName('lon').AsFloat,address);
when I try to change the icon using:
gmmarker1.Items[0].Icon:='c:\measle.png';
I get an error 'Argument out of range'
Is it possible to change the default icon without adding an item to the marker? Or am I doing this wrong?
The Add method of TGMMarker returns a TMarker object. You can use it to assign more properties like Icon property. However, gmmarker1.Items[0].Icon or gmmarker1[0].Icon must be work if exists any marker. Check gmmarker1.Count before

animated journey using mapkit polyline

Good morning,
I have an app with a search list showing the trips.
After selectina one of it I need to show the trip viewing on the map a little car following all coordinates related for every GPS points I have in my trip's database for that trip.
Basically my app have three view the login page, the search page and the mapview.
In the search page I need also to include a filter by the city name (start or end) and the trip date range.
About the animation of the trip it's possible to include a bar at the bottom of map view to have play ,forward anda back buttons like a record player ?
Thank's in advance and sorry for my english.
Brunix

How do I create tooltips on image maps?

Is there any way to define my image map areas so that a tooltip will pop up when the area is moused over?
I am editing my page in dreamweaver and I have tryed the spry tooltips but the triggers won't assign to my polygon area.
Thanks
On the Area element of a Map you can specify both Title and Alt attribute. I would suggest setting both to the same text, since some older browsers have been known to mis-implement the spec for these.
http://www.w3schools.com/TAGS/tag_area.asp

Resources