Displaying 20 results from an estimated 4000 matches similar to: "Marker event listener"
2007 Nov 05
1
marker event listeners
I''d like to add an event listener for dragging markers, but it looks
like YM4R GM (and Mapstraction) doesn''t support this. I need an init like:
marker = new GMarker(...
GEvent.addListener(marker, "dragend", function() { })
but the current setup makes "anonymous" markers - never creates variable
that can be used to access them. Has anyone thought about
2006 Nov 06
4
Event listeners
Hi!
Your plugin is really great! Thanks.
One more little question.
Is it possible to add event listeners to the maps via your plugin?
greetings
/till
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://rubyforge.org/pipermail/ym4r-user/attachments/20061106/6b1c6f4f/attachment.html
2008 Mar 14
0
problem with rjs and marker group
Lo there all,
i have a function that builds a bunch of markers to go on a google
map. I would like to update them with rjs.
Here is what i have so far.
def map_main_layout
@zoom = params[:zoom].to_i
@zoom = 14 if params[:zoom].nil?
@map = GMap.new("map_div")
# @map.control_init(:large_map => true, :map_type => true) #
(inserts map control)
# place
2007 Jan 18
1
Clusterer generating javascript syntax error
Hi all,
I''m using Ym4r with the Clusterer. The GMaps code in my controller
looks something like this:
# geo is an array of lon/lat points
session[:gmap] = GMap.new(''map_div'')
session[:gmap].control_init(:large_map => true,:map_type => true)
session[:gmap].center_zoom_init([38.134557,-95.537109],4)
markers = Array.new
2007 Mar 04
0
Event listeners
Hello.. I am playing around on a pilot project with this wonderful
Rails plugin.... thanks for sharing it w us !
I read in a post , in reply to this subject yjat :
Events are possible. Either through the @map.record_init "azeazeae" (for
arbitrary events like domlistener) or through the
@map.event_init(@map,:click,"function(){alert(''HOYOYO'');}").
The
2007 Oct 17
0
GMarkerGroup center_and_zoom_on_markers problem
Hi,
I found the funcitoned mentioned in title (center_and_zoom_on_markers) but
am having troubles getting it working.
I have several markers being added to an array (@gmap_markers = []) in the
following manner:
marker = GMarker.new(latlng, :info_window => infoString, :icon => my_icon)
@gmap_markers << marker
I am then trying to do the following:
group = GMarkerGroup.new(true,
2007 Jul 25
1
regarding polylines
hi all, i am experimenting with ym4r mapstraction, i am using yahoo api
, when i tried polylines , its not showing up.. the code is
var map;
window.onload = addCodeToFunction(window.onload,function() {
map = new Mapstraction("map_div","yahoo");
map.setCenterAndZoom(new LatLonPoint(37.3853,-122.0172
),12);map.addSmallControls();
map.addMarkerGroup(new
2006 Nov 02
2
Update map
Hi!
I''ve just started playing around with the ym4r-plugin and try to update a
map as explained in the README-example...
but nothing happens. I can update normal html.
Heres my baby-code:
class AdminController < ApplicationController
def index
@map = GMap.new("map_div")
@map.control_init(:large_map => true)
@map.center_zoom_init([59.91106, 10.72223],16)
2007 Jul 13
0
layers of polylines, events building up on map
Hi all,
Here''s my situation:
I have a little route creation app that lets a user create a route.
I''m using the mapstraction version of ym4r...
here is the workflow:
first page has a map displaying the start point of existing routes.
if they click "new route:
creates a route_object
clears all polylines in case there are any
clears all the markers and adds an onclick
2007 Oct 16
3
can''t define custom GIcon
Hi,
I am having trouble getting custom GIcons to display. Here is the code in
my controller:
@map = GMap.new("map_div")
@map.control_init(:large_map => true,:map_type => true)
@map.icon_global_init(GIcon.new(:image => "images/APBox-20.png
"),"ap_none")
infoString = "Friendly Name: "+result.friendly_name+
2007 Mar 10
1
clusterer - click infowindow
Clicking on the icon of a clusterer opens an infowindow with a list
of markers , ech one has an icon and a description...
Is it possible to click on the marker icon (how to change its
image ?) to zoom directly to that marker ? or should I write a link
in the description
yhanks for your help
Note :additional question : what is the origin of the error message :
'' too many
2007 Nov 12
0
info window tabs
Hi,
I am having some trouble getting the :info_window_tabs option working, and
was wondering if anybody else has used this.
I am trying this:
marker = GMarker.new(latlng, :info_window_tabs => {title => infoString})
The API says that you should pass a hash, so this is what I am trying. Is
there something that I''m missing here? It seems like it should be pretty
straightforward.
2007 Mar 09
1
error in clusterer.js (need patch)
there is an error line 348 Clusterer.popUp( poppedUpCluster )
Clusterer.rePop = function ( clusterer ){
if ( clusterer.poppedUpCluster != null )
Clusterer.popUp( poppedUpCluster );
};
should be
Clusterer.rePop = function ( clusterer ){
if ( clusterer.poppedUpCluster != null )
Clusterer.popUp( clusterer.poppedUpCluster );
};
-------------- next part --------------
An HTML
2008 Mar 04
0
question about updating the map
Hey there all.
I have a mapping app that uses ym4r_gm to build with google maps.
The markers i generate use the status of a machine to determine their color.
This way our customers can pull up the map and see a color coded
drawing where their machine is.
So, how would i go about making this to where it could update each
marker every 10 minutes or so. I would like to allow our customers to
leave
2008 May 13
0
example of opening info windows in GMarkers
I''m quite enjoying the rapid development using Ym4r!
However, I''ve hit a roadblock and would appreciate any pointers.
I''ve got a map that has GMarkers on it. When you click on a GMarker a
beautiful little window pops up, chock full of information.
I also have a set of text links on the bottom of the page where each
is associated with a single GMarker. I''d
2007 Mar 08
1
map not displayed after Ajax.updater request
In my layout header I inserted the standard helper : GMap.header
I built the map in my controller , I build either a standard table
or a map and display it in the corresponding partial
the map is built without any problem with the icons and markers
( @map is correct...)
@map = GMap.new("map_div")
...
@map.icon_global_init(GIcon.new(:image =>
2007 Mar 09
0
(no subject)
I am trying to use the clusterer as stated in the README ( plugin is
running well ...)
and I got an error when displaying the map...
addDescriptionToMarker is not defined
(no name)()22 (line 169)
(no name)()ym4r-gm.js (line 67)
[Break on this error] map.addOverlay(new GMarker(new GLatLng
(47.7377071331,-2.9257965088),{title : "aa...
here is the generated script...
<script
2007 Mar 04
0
Event listeners.. solved
sorry.. I paid a little bit more attention to your reply.. especially
using Firebug extension... (so helpful...)
and I got it (maybe not so good writing..
@map.declare_init(@marker1, ''marker1'')
@map.overlay_init(@marker1)
@map.record_init "GEvent.addListener(marker1, ''dragend'',
function () {
point = marker1.getPoint();
2008 Aug 01
0
YM4R Add label to top of marker
Hi,
Does anyone know how to add a label to the top of a marker. For example
if i have 5 reults for locations and i have them numbered 1-5 then a
number on the top of each marker so its clear which marker belongs to
which location.
Ive read through the ruby docs and googled but cant find any info or
examples on this, is it even possible, i think i seen something like
this before.
JB
--
Posted
2008 Mar 15
3
problem with config file
Hey there all
if i have this in my gmap_api_key.yml file,
production:
ABQIAAAASPzYuwhUCPD9Vz98LPOPDhQXfahRKLczKzlJSy9lXc0oaHHYcxTFTjWleXY7LH-N3IAp9ruoqiU43w
everything works fine but if i have this .....
production:
texaspivot.com:
ABQIAAAASPzYuwhUCPD9Vz98LPOPDhQXfahRKLczKzlJSy9lXc0oaHHYcxTFTjWleXY7LH-N3IAp9ruoqiU43w
i get this
ActionView::TemplateError (texaspivot.com) on line #1 of