Thanks for posting this, works great

On Tuesday, February 5, 2013 12:06:24 AM UTC-5, Douglass Davis wrote:
>
>
>
> On Monday, February 4, 2013 5:33:43 AM UTC-5, Douglass Davis wrote:
>>
>>
>> I am working on extinfowindow for google api v3 as well, since I haven't 
>> been able to find the code online.
>>
>> http://devservices.northcarolina.edu/lcl/ded_gmap/system/themes/asp/js/extinfowindow.js
>>
>> Here is an example of its use:
>>
>> http://devservices.northcarolina.edu/lcl/ded_gmap/exams/find.php
>>
>> I have added some custom modifications though.  If any one wants to add it 
>> to some repository, feel free too.
>>
>> I am having one problem.  I am not sure whether this is a google maps API v3 
>> bug or what, and no one answers my questions on stackoverflow: 
>> http://stackoverflow.com/questions/14400354/how-can-i-stop-overlay-click-from-going-to-map-or-detect-its-an-overlay-click
>>
>> Basically, there is no way to stop a a click event on the infowindow.  it 
>> always goes through to the map.  None of this works to stop the event:
>>
>>
>> // overlay click event handlerExtInfoWindow.prototype.onClick_ = function(e) 
>> {
>>    var evt = e ? e:window.event;
>>
>>    evt.cancelBubble = true;
>>    evt.returnValue = false;
>>
>>    if (evt.stopPropagation) {
>>       evt.stopPropagation();
>>    }
>>    evt.stop(); // from google.maps.MouseEvent
>> };
>>
>>
> Btw: I figured out the click event problem, so that should be fixed. 
>
>>
>>  
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google Maps JavaScript API v3" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-maps-js-api-v3+unsubscr...@googlegroups.com.
To post to this group, send email to google-maps-js-api-v3@googlegroups.com.
Visit this group at http://groups.google.com/group/google-maps-js-api-v3?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to