Hallo All,

I wanted to continue here and open no new discussion since I ran into
something similar. (Sorry for spelling non native... )
I am trying to make a little cross platform mapping application for
architects.

http://localhost/MAPP_IT/HTML-CODE/map.html

and I ran into two problems which give me a lot of headache and
somehow I think they are connected.

1. In he V2 there was a 'click' map event where not only the event but
also the overlay that was clicked was passed on.
I tried to remodel this with adding an 'click' event to an overlay
which then friggers a 'click' event on the map passing it's self to
the map.
on my mac it all works fine (firefox, safari,...). but on my phone
(htc desire) the passed click event only gets fired once, after that
it disappears, until I zoom the map then it works again once.

google.maps.event.addListener(map,"click",function(event,Overlay){
                        if (Overlay){
                                event.returnValue = true; // this is needed to 
stop the other
events from executing..
                                var polyOptions = {
                                        strokeColor: 
ColorSelect.getStrokeColor(),
                                        strokeOpacity: 1.0,
                                        strokeWeight: ColorSelect.getStroke()
                                }
                                Overlay.setOptions(polyOptions);
                                if (Overlay.fillColor) {
                                        var polyOptions = {
                                                fillColor: 
ColorSelect.getFillColor(),
                                                fillOpacity: 
ColorSelect.getOpacity()
                                        }
                                        Overlay.setOptions(polyOptions);
                                }
                        }
        });

2. I am trying to establish a connection with the google maps data api
with mymaps. Which again on my mac works fine.
On my phone after executing mapService.getMapFeed(...) the complete
map is stuck. It will still accept inputs from the zoom buttons I
added but dragging or clicking on the map want do anything.

I watched the log files but in both cases no errors showed up.

thanks for any help

Richard

-- 
You received this message because you are subscribed to the Google Groups 
"Google Maps JavaScript API v3" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/google-maps-js-api-v3?hl=en.

Reply via email to