Re: [Google Maps API v3] Re: Polygons not rendering

2011-04-15 Thread Chris Broadfoot
Okay - but what do you gain here? Are you displaying the same Polygon/Polyline on different maps? Chris -- http://twitter.com/broady -- 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

[Google Maps API v3] Re: Polygons not rendering

2011-04-14 Thread sgiddings
I have a similar problem. I use two methods to obtain a shape with a hole in it. The shape is either a donut or a polygon. The problem is perfectly demonstrated here - http://www.geocodezip.com/v3_polygon_example_donut.html As you can see, the inner circle is no longer empty. The same situation

[Google Maps API v3] Re: Polygons not rendering

2011-04-14 Thread scotiasystems
Perfect - looks like that was the problem, thanks! I've changed strokeColor to be #99 and the circle appears again :-) -- 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

Re: [Google Maps API v3] Re: Polygons not rendering

2011-04-14 Thread Andrew Leach
On 14 April 2011 09:04, sgiddings mr.s.giddi...@gmail.com wrote: I have a similar problem. I use two methods to obtain a shape with a hole in it. The shape is either a donut or a polygon. The problem is perfectly demonstrated here - http://www.geocodezip.com/v3_polygon_example_donut.html

Re: [Google Maps API v3] Re: Polygons not rendering

2011-04-14 Thread sgiddings
Thanks Andrew, Shame that google pushed out this change before announcing it. I saw the effect at least 2 days ago ! Simon -- 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

Re: [Google Maps API v3] Re: Polygons not rendering

2011-04-14 Thread Andrew Leach
On 14 April 2011 10:08, sgiddings mr.s.giddi...@gmail.com wrote: Shame that google pushed out this change before announcing it. I saw the effect at least 2 days ago ! I get my (irregular) polygon boundary coordinates from others. They are generated from Mapinfo and I've no idea which way they

Re: [Google Maps API v3] Re: Polygons not rendering

2011-04-14 Thread Andrew Leach
On 14 April 2011 10:17, Andrew Leach andrew.leac...@gmail.com wrote: So: is there any way to turn off canvas rendering? And/or: does anyone know how to determine which way a collection of points winds? (Just to save me searching for an algorithm) Found this for the second question, which may

[Google Maps API v3] Re: Polygons not rendering

2011-04-14 Thread geocode...@gmail.com
On Apr 14, 1:53 am, Andrew Leach andrew.leac...@gmail.com wrote: On 14 April 2011 09:04, sgiddings mr.s.giddi...@gmail.com wrote: I have a similar problem. I use two methods to obtain a shape with a hole in it. The shape is either a donut or a polygon. The problem is perfectly

[Google Maps API v3] Re: Polygons not rendering

2011-04-14 Thread geocode...@gmail.com
On Apr 14, 2:08 am, sgiddings mr.s.giddi...@gmail.com wrote: Thanks Andrew, Shame that google pushed out this change before announcing it. The v3 API is under active development. The nightly version (no version specified) can change at any time. There are no guarantees that anything will

[Google Maps API v3] Re: Polygons not rendering

2011-04-13 Thread Rossko
Polygons do not render anymore in 3.4 (works well on all previous versions) Here is one that works for me http://code.google.com/apis/maps/documentation/javascript/examples/polygon-simple.html perhaps the problem is in your webpage or browser ? -- You received this message because you are

[Google Maps API v3] Re: Polygons not rendering

2011-04-13 Thread geocode...@gmail.com
On Apr 13, 2:02 am, Rossko ros...@culzean.clara.co.uk wrote: Polygons do not render anymore in 3.4 (works well on all previous versions) Here is one that works for mehttp://code.google.com/apis/maps/documentation/javascript/examples/po... All mine still work (at least all the ones I looked

[Google Maps API v3] Re: Polygons not rendering

2011-04-13 Thread scotiasystems
I'm seeing problems with circles too? I've had to force v=3.3 to get the circles appearing on http://www.seekatweet.com ? Here's an example using 3.4 http://www.seekatweet.com/circlesv3.4.html which doesn't show the search radius.. -- You received this message because you are subscribed

[Google Maps API v3] Re: Polygons not rendering

2011-04-13 Thread geocode...@gmail.com
On Apr 13, 9:05 am, scotiasystems ngun...@googlemail.com wrote: I'm seeing problems with circles too?   I've had to force v=3.3 to get the circles appearing on  http://www.seekatweet.com ?  Here's an example using 3.4  http://www.seekatweet.com/circlesv3.4.htmlwhich doesn't show the search

[Google Maps API v3] Re: Polygons not rendering

2011-04-13 Thread scotiasystems
Thanks Larry - fixed that now! I'm still not seeing the circles though? I noticed in the release notes for 3.4 there's a mention of a fix of zIndex for circles - wonder if that's related? -- You received this message because you are subscribed to the Google Groups Google Maps JavaScript

[Google Maps API v3] Re: Polygons not rendering

2011-04-13 Thread Rossko
Here's an example using 3.4  http://www.seekatweet.com/circlesv3.4.html which doesn't show the search radius.. I don't even get a map in FF2, I suspect this may be a CSS issue, others have had similar problems when hotlinking from their own page to Google's example CSS link

[Google Maps API v3] Re: Polygons not rendering

2011-04-13 Thread Rossko
Having a similar problem: I have polygons set up for tooltips to appear on mouseover, and a click listener within the polygons to open infowindows of markers inside the polygons - not working on version 3.4. Doesn't seem that similar. Your 'buildings' polygons do not specify the 'clickable'

[Google Maps API v3] Re: Polygons not rendering

2011-04-13 Thread Rossko
circles appearing on  http://www.seekatweet.com ?  Here's an example using 3.4  http://www.seekatweet.com/circlesv3.4.htmlwhich doesn't show the search radius.. Interesting read on this thread

[Google Maps API v3] Re: Polygons not rendering

2011-04-13 Thread PhilR8
I'm using a click listener for the polygon click, which uses the getBounds extension. See http://pages.towson.edu/preese/campusmap2.0/mar7/js/point_in_poly.js for the code. And that doesn't affect the mouseover listener for the tooltips. The polygons are not loading. -- You received

Re: [Google Maps API v3] Re: Polygons not rendering

2011-04-13 Thread Phil Reese
Click on the construction checkbox for both maps. The construction polygons load in 3.3, and not in 3.4. On Wed, Apr 13, 2011 at 4:04 PM, PhilR8 phi...@gmail.com wrote: I'm using a click listener for the polygon click, which uses the getBounds extension. See

Re: [Google Maps API v3] Re: Polygons not rendering

2011-04-13 Thread Adam
*Temp fix:* http://maps.google.com/maps/api/js?*v=3.3*sensor=true *Theory:* Polygons must have a border in 3.4. -- 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

Re: [Google Maps API v3] Re: Polygons not rendering

2011-04-13 Thread Jason Sanford
I've got a demo that shows using Google's geometry library to measure length/area which doesn't work any more. The geometry for the polygon is still good, as the area measurements I'm getting are accurate, but polygon is drawn. I'm actually drawing a line and a polygon and the line stops drawing

Re: [Google Maps API v3] Re: Polygons not rendering

2011-04-13 Thread Chris Broadfoot
Thanks Jason, I've narrowed that bug down and filed an issue internally. Specify v=3.3 for now. On Thu, Apr 14, 2011 at 12:24 PM, Jason Sanford jasonsanf...@gmail.comwrote: I've got a demo that shows using Google's geometry library to measure length/area which doesn't work any more. The