[Google Maps API v3] how to stop my overlayview (custom infobox) re-positioning/shifting when the map is dragged.

2013-07-01 Thread rlk27
I have a infobox created using overlayview and custom innter html. I see the option disable auto pan. But how to set that option for overlayview? my infobox is created using new google.maps.OverlayView(); and custom html. please help. -- You received this message because you are subscribed

[Google Maps API v3] mouseover on a custom marker ..markers under custommarker still receive mouse over

2012-04-05 Thread rlk27
I created custommarker with custom html using overlayView. I have mouseover events on this marker. I also have few smaller markers underneath the custom markers. when I mouse over the custom marker, the underneath small markers receive the mouse over. How to prevent that? -- You received this m

[Google Maps API v3] Re: moving the mouse over the custom marker creates mouseover and mouseout events

2011-12-09 Thread rlk27
I tried stopPropagation() and cancleBubble=true but did not work. -- You received this message because you are subscribed to the Google Groups "Google Maps JavaScript API v3" group. To view this discussion on the web visit https://groups.google.com/d/msg/google-maps-js-api-v3/-/eFjiZWFjhPYJ. To

[Google Maps API v3] Re: moving the mouse over the custom marker creates mouseover and mouseout events

2011-12-09 Thread rlk27
make it on top of the marker image and adjusted the pixel offet. thanks Rlk27 -- You received this message because you are subscribed to the Google Groups "Google Maps JavaScript API v3" group. To view this discussion on the web visit https://groups.google.com/d/msg/google-maps

[Google Maps API v3] Re: moving the mouse over the custom marker creates mouseover and mouseout events

2011-12-08 Thread rlk27
Oh yeah..silly me. -- You received this message because you are subscribed to the Google Groups "Google Maps JavaScript API v3" group. To view this discussion on the web visit https://groups.google.com/d/msg/google-maps-js-api-v3/-/5iYPB4jjocoJ. To post to this group, send email to google-map

[Google Maps API v3] Re: moving the mouse over the custom marker creates mouseover and mouseout events

2011-12-01 Thread rlk27
Thank you very much Rossko. But I tested the same html in http://cdtestsite.com/Forum/testingNestedDiv.html and seem to work fine. THis is exactly what I am trying in the custommarker html. what is the difference.? Thanks rlk27 -- You received this message because you are subscribed to

Re: [Google Maps API v3] Re: moving the mouse over the custom marker creates mouseover and mouseout events

2011-11-30 Thread rlk27
Finally... here is the link http://cdtestsite.com/Forum/custommarker.html Move the mouse over the custom icon and you see the many mouseovers by count increase in the info window Thanks rlk27 -- You received this message because you are subscribed to the Google Groups "Google

[Google Maps API v3] Markers under my custom infobox still get mouseover

2011-11-11 Thread rlk27
under the infobox (hidden under) are still receiving mouse over. how to stop that? Thanks Rlk27 -- You received this message because you are subscribed to the Google Groups "Google Maps JavaScript API v3" group. To view this discussion on the web visit https://groups.google.com/d/

[Google Maps API v3] question on moving markers

2011-11-08 Thread rlk27
I inherited a code that was written in V2 and upgrade to V3. there are marker that are vehicles so, we will have to move the marker with new position info. Questions 1. In V2, to reposition the marker, the old one is removed and new marker is created. i see that setPosition() in Marker obj

[Google Maps API v3] Re: marker and zIndex

2011-11-08 Thread rlk27
I tired this already but did not work in my case thsi gives negative number. As I have many types of markers with each one with their zindex. (100,200,300, 700) so, I used positive 10. Math.round(marker.getPosition().lat()*10)<<5 for the marker and marker.getZIndex() + 1 for label

[Google Maps API v3] Re: marker and zIndex

2011-11-08 Thread rlk27
Is there any calculation to get the zIndex based on the coordinates? Any example or link would be appreciated. -- You received this message because you are subscribed to the Google Groups "Google Maps JavaScript API v3" group. To view this discussion on the web visit https://groups.google.com

[Google Maps API v3] marker and zIndex

2011-11-08 Thread rlk27
n the overlapping situtation to maintain it s zIndex and not come in the front. Any suggestions. marker creation is the same function which uses the 700 alway. any way to find zindex from the laglat? Thanks rlk27 -- You received this message because you are subscribed to the Google Groups &q

[Google Maps API v3] Re: overlayView draw function give null object error

2011-11-08 Thread rlk27
never mind..found the problem. -- You received this message because you are subscribed to the Google Groups "Google Maps JavaScript API v3" group. To view this discussion on the web visit https://groups.google.com/d/msg/google-maps-js-api-v3/-/nNE9OZpuqUYJ. To post to this group, send email t

[Google Maps API v3] overlayView draw function give null object error

2011-11-07 Thread rlk27
I am creating my overlay as shown below *var testOverlay = new myOverlay(marker.position,infobox.innerHTML);* Below is my overlay code, where onAdd() , draw and onRemove90 is defined. But simetime I see that draw is getting null object error when accessing this._div in the draw() function?

[Google Maps API v3] does the richmarker give mouseover, mouseout and click events?

2011-11-04 Thread rlk27
I see the richmarker. looks like they use overlayView with custom DIV for content. I beleive it gives mouseover and out. I used this link http://google-maps-utility-library-v3.googlecode.com/svn/trunk/richmarker/examples/richmarker.html and changed content to the below. I see that the mou

Re: [Google Maps API v3] Re: moving the mouse over the custom marker creates mouseover and mouseout events

2011-11-04 Thread rlk27
thanks Ralph. The page is giving me error when I tried to register the free signup. Any other. My office is seeting a paid hosting just for this purpose but it will talk a day or two. -- You received this message because you are subscribed to the Google Groups "Google Maps JavaScript API v3"

[Google Maps API v3] what is the equivalent of GOverlay.getZIndex() of v2 in v3 OverlayView

2011-11-03 Thread rlk27
Old code uses GOverlay.getZIndex(this.marker.getPoint().lat()) which is replaced by OverlayView. How to getZindex()? -- You received this message because you are subscribed to the Google Groups "Google Maps JavaScript API v3" group. To view this discussion on the web visit https://group

Re: [Google Maps API v3] Re: moving the mouse over the custom marker creates mouseover and mouseout events

2011-11-03 Thread rlk27
I have the sample page that just produces the problem of multiple mouseover/outs when moving around inside the custom markers custom image. very simple which I attached in my previous posting in this thread. How hard would it be for anyone to take a look at that html file. I am trying to ge

[Google Maps API v3] Re: moving the mouse over the custom marker creates mouseover and mouseout events

2011-11-03 Thread rlk27
I did post the whole html and attached the files. it is just a sample page that I am trying for a proof of concept for working with custom markers with our own image html. I am surprised that most of the forum do work with copy/paste of the code and asking question. I guess the google TOS, do

[Google Maps API v3] Re: moving the mouse over the custom marker creates mouseover and mouseout events

2011-11-03 Thread rlk27
I am still developing. too early to show final product pulically. Final product will be publically available. I just created a sample page to show the problem. I am still trying to create a temp link. -- You received this message because you are subscribed to the Google Groups "Google

[Google Maps API v3] Re: moving the mouse over the custom marker creates mouseover and mouseout events

2011-11-03 Thread rlk27
Did anyone see the problem? any idea? you help is much appreciated. -- You received this message because you are subscribed to the Google Groups "Google Maps JavaScript API v3" group. To view this discussion on the web visit https://groups.google.com/d/msg/google-maps-js-api-v3/-/8tE_QwuOL2cJ.

[Google Maps API v3] Re: moving the mouse over the custom marker creates mouseover and mouseout events

2011-11-02 Thread rlk27
sorry and thanks rename the file custommarker.copytohtml to .html. place the html file and image file on a folder and open with a browser view the html file to see my comment on working and nonworking version thanks Rlk27 -- You received this message because you are subscribed to the

Re: [Google Maps API v3] Re: moving the mouse over the custom marker creates mouseover and mouseout events

2011-11-02 Thread rlk27
I have renamed the html. image file is attached. I also copy pased the html -- You received this message because you are subscribed to the Google Groups "Google Maps JavaScript API v3" group. To view this discussion on the web visit https://groups.google.com/d/msg/google-maps-js-api-v3/-/T

[Google Maps API v3] Re: moving the mouse over the custom marker creates mouseover and mouseout events

2011-11-02 Thread rlk27
files attached. I am talking to IT for making this available on the public server and provide the link.. -- You received this message because you are subscribed to the Google Groups "Google Maps JavaScript API v3" group. To view this discussion on the web visit https://groups.google.com/d/msg/

Re: [Google Maps API v3] Re: moving the mouse over the custom marker creates mouseover and mouseout events

2011-11-02 Thread rlk27
I have renamed the html file this time. I am talking to my IT to have it posted on a public server,, -- You received this message because you are subscribed to the Google Groups "Google Maps JavaScript API v3" group. To view this discussion on the web visit https://groups.google.com/d/msg/g

[Google Maps API v3] Re: moving the mouse over the custom marker creates mouseover and mouseout events

2011-11-02 Thread rlk27
*Google* Maps JavaScript API v3: Custom Marker Demo http://maps.googleapis.com/maps/api/js?v=3.5&sensor=true"*> * function* CustomMarker(latlng, map) { google.maps.OverlayView.call(*this*); * this*.latlng_ = latlng; // Once the LatLng and text are set, add the overlay t

Re: [Google Maps API v3] Re: moving the mouse over the custom marker creates mouseover and mouseout events

2011-11-02 Thread rlk27
Sending attachments again. Pl check. until then, I will figure out a place to host these files.. -- You received this message because you are subscribed to the Google Groups "Google Maps JavaScript API v3" group. To view this discussion on the web visit https://groups.google.com/d/msg/google-

[Google Maps API v3] Re: moving the mouse over the custom marker creates mouseover and mouseout events

2011-11-02 Thread rlk27
Html file and image files attached -- You received this message because you are subscribed to the Google Groups "Google Maps JavaScript API v3" group. To view this discussion on the web visit https://groups.google.com/d/msg/google-maps-js-api-v3/-/vYBgXn8al_kJ. To post to this group, send emai

[Google Maps API v3] Re: moving the mouse over the custom marker creates mouseover and mouseout events

2011-11-02 Thread rlk27
html dynamically. I have commented out the working version which is basically example from google. Thanks Rlk27 -- You received this message because you are subscribed to the Google Groups "Google Maps JavaScript API v3" group. To view this discussion on the web vi

[Google Maps API v3] moving the mouse over the custom marker creates mouseover and mouseout events

2011-11-01 Thread rlk27
We have custom marker using Goodle.maps.OverlayView() (creates div with our custom html) and marker events are triggered when events on the DIV is triggered (shown below) *this*.DOMEventHandle.push( google.maps.event.addDomListener(*this*.div_, "mouseover", *function*() { google.maps.event

[Google Maps API v3] Re: multiple markers and mouseover

2011-11-01 Thread rlk27
I dont understand the logic. BTW my markers have custom icon and use overlayView to define a DIV (with innerHTML ) and click on DIV triggers click on the marker. -- You received this message because you are subscribed to the Google Groups "Google Maps JavaScript API v3" group. To view this d

[Google Maps API v3] multiple markers and mouseover

2011-10-28 Thread rlk27
I want mouseover event for the topmost marker when the multiple markers are in same location stacked up. how do i prevent mouse over event of the bottom markers in this case? -- You received this message because you are subscribed to the Google Groups "Google Maps JavaScript API v3" group. To

[Google Maps API v3] multple markers and mouseover problem

2011-10-28 Thread rlk27
I have multiple markers stacked up and mouseover, should do actions for the top most marker. but sometimes it does go to mouseover event handler for the underlying ones. how to prevent that.? -- You received this message because you are subscribed to the Google Groups "Google Maps JavaScript