[Google Maps API v3] Re: Map Custom Overlays is not clickable in mobile devices.

2018-03-05 Thread Gary Little
This has now been fixed (at least in MarkerClustererPlus). See https://issuetracker.google.com/issues/73571522 for the suggestion that led to a successful workaround. On Sunday, March 4, 2018 at 2:35:39 PM UTC-8, Arun Wilson wrote: > > Google maps Custom overlay click event is not working in

Re: [Google Maps API v3] Re: infoBoxes in StreetView? Or another way around this problem???

2013-03-01 Thread Gary Little
see in StreetView when viewing on google maps. Is there any way to resolve this? i.e. same functionality with the correct perspective render of StreetView panorama? Thanks in advance! And great work!! Alexander On Friday, February 18, 2011 3:45:28 PM UTC, Gary Little wrote: Tim I

[Google Maps API v3] Re: markerWithLabel printing - labels missing

2012-06-04 Thread Gary Little
I just took a look at the basic MarkerWithLabel example and the labels print fine on a Mac with Safari, Chrome, and Firefox. Check the CSS for your labels; perhaps you specified display: none; in a print media selector. Gary On Thursday, May 31, 2012 3:48:40 AM UTC-7, dbrb2 wrote: Hi,

[Google Maps API v3] Problems with mouseover/mouseout events during zoom

2012-02-01 Thread Gary Little
The latest version of the Google Maps implementation seems to have changed recently causing problems with events during zoom operations. I have markers that have listeners for mouseover and mouseout events. On mouseover a box appears showing information about the marker; on mouseout the box is

[Google Maps API v3] Re: Problems with mouseover/mouseout events during zoom

2012-02-01 Thread Gary Little
This behavior only occurs with v=3. It does not occur with v=3.6. I haven't seen any release notes for a 3.7 refresh since late last year, but something has definitely changed quite recently. On Feb 1, 2:24 pm, Gary Little g...@luxcentral.com wrote: The latest version of the Google Maps

[Google Maps API v3] Re: InfoBox content not accepting HTMLDivElement

2012-01-29 Thread Gary Little
It worked fine for me after I fixed three typos: change , to ; at end of lines 1, 2, and also the 2nd to last line. You've also got an extraneous comma at the end of the height: auto line which will causes problems with some browsers. Gary On Jan 27, 2:19 pm, velomash adam.trim...@gmail.com

[Google Maps API v3] CSS Style for Copyright notice

2012-01-24 Thread Gary Little
Does anyone know the CSS style that is now applied to the Google copyright notice in the lower right corner of the map? The text seems to be a shade of gray with a shade of white being used for the background. I want to replicate the look with another copyright notice I'm adding to my map. --

[Google Maps API v3] Re: Issues with Markererclusterplus with ie8 12000 markers

2011-12-14 Thread Gary Little
Harman, Try using the batchSizeIE parameter. It's use is covered in the MarkerClustererPlus reference. Rendering this many markers will still be very slow but by setting batchSizeIE appropriately you can probably avoid the error message. Gary On Dec 14, 10:33 pm, meenu bhatti

[Google Maps API v3] Re: Does infoBox work in IE 9?

2011-12-02 Thread Gary Little
Note: this issue was solved over on the utilities forum -- it is important to use the latest version (1.1.9) of InfoBox. On Nov 30, 4:51 am, Geoff Schultz geoffrey.w.schu...@gmail.com wrote: While I wait for my membership in the Google Maps Utility Library group to get approved, I'll ask this

[Google Maps API v3] Re: Geocoding problem: always getting OVER_QUERY_LIMIT error

2011-11-30 Thread Gary Little
Marcelo, You're probably right. Now I'm wondering why I bothered to pay extra for the fixed IP address since it may not be unique to me. Gary On Nov 29, 3:29 pm, Marcelo marcelo...@hotmail.com wrote: On Nov 29, 4:24 pm, Gary Little g...@luxcentral.com wrote: It turns out I have a dedicated

[Google Maps API v3] Geocoding problem: always getting OVER_QUERY_LIMIT error

2011-11-29 Thread Gary Little
When I request a geocoding operation from my server (using a PHP script) I always get an OVER_QUERY_LIMIT error. Not sure why because I certainly don't make very many such requests. Does anyone have any idea of what's going on? I'm on one of those shared servers from a web hoster, could it be that

[Google Maps API v3] Re: Geocoding problem: always getting OVER_QUERY_LIMIT error

2011-11-29 Thread Gary Little
Yes, it fails on the very first request. I'm using some code that Google provided some time ago -- each time a request fails I delay an additional 10 microseconds (100 milliseconds) before making the next request. On Nov 29, 2:30 pm, MymsMan bobbux...@gmail.com wrote: How many requests are

[Google Maps API v3] Re: Geocoding problem: always getting OVER_QUERY_LIMIT error

2011-11-29 Thread Gary Little
It turns out I have a dedicated IP address so I shouldn't be penalized by others who share the server who are making requests. Gary On Nov 29, 1:44 pm, Andrew Leach andrew.leac...@gmail.com wrote: On 29 November 2011 21:38, Gary Little g...@luxcentral.com wrote: When I request a geocoding

[Google Maps API v3] Editable polygons prevents MarkerClusterer icons from being clicked

2011-11-21 Thread Gary Little
I've noticed that if you make a polygon editable (using the new 3.7 capability) and the polygon encloses a MarkerClusterer icon, the MarkerClusterer icon does not get click events. This is not good, since clicking the icon is the quick way to zoom the map in and see the individual markers. Anyone

[Google Maps API v3] Re: Editable polygons prevents MarkerClusterer icons from being clicked

2011-11-21 Thread Gary Little
Go to http://www.luxcentral.com/bug/bug10.html 1. Click the polygon tool in the shape toolbar on the map (it's the only tool with editable set to true) 2. Draw a polygon around the cluster icon. 3. Click the hand tool in the shape toolbar. 4. Click the cluster icon -- nothing happens. 5.

[Google Maps API v3] Re: Editable polygons prevents MarkerClusterer icons from being clicked

2011-11-21 Thread Gary Little
Mac OS X 10.6.8 / Safari I just tried Firefox 7.0.1... and it works! So it looks like it is something to do with Safari. On Nov 21, 9:38 pm, Enoch Lau (Google Employee) enoch...@google.com wrote: I don't see the behavior you describe - for both editable polygons and non-editable circles, when

[Google Maps API v3] Re: Editable polygons prevents MarkerClusterer icons from being clicked

2011-11-21 Thread Gary Little
I just checked Chrome, OmniWeb, and Opera (all on Mac) and they work as well. Only Safari is problematic. I'm running v 5.0.5. Gary On Nov 21, 10:23 pm, Gary Little g...@luxcentral.com wrote: Mac OS X 10.6.8 / Safari I just tried Firefox 7.0.1... and it works! So it looks like

[Google Maps API v3] Re: Undocumented editable Polygon/Polyline support

2011-11-15 Thread Gary Little
I've figured out how to make the custom area polygons editable on my interactive real estate map and it works great! The key is to add listeners for the insert_at, remove_at, and set_at events of the path of the polygon. That's where you would save the new vertices of the polygon. Gary On

[Google Maps API v3] Re: Undocumented editable Polygon/Polyline support

2011-11-15 Thread Gary Little
See http://googlegeodevelopers.blogspot.com/2011/11/make-your-map-interactive-with-shape.html On Nov 15, 9:27 am, Gary Little g...@luxcentral.com wrote: I've figured out how to make the custom area polygons editable on my interactive real estate map and it works great! The key is to add

[Google Maps API v3] Re: 2011/11/7 - New Release (3.7) - editable shapes, DrawingManager, and more

2011-11-15 Thread Gary Little
Could you post the CSS styles for the new visual style of the default controls so that I can make my own visual controls look similar? On Nov 15, 6:47 pm, Chris Broadfoot (Google Employee) c...@google.com wrote: Hi all, We recently released a new minor version of the Maps API. This means that

[Google Maps API v3] Re: Zoom/Back Button in V3

2011-10-06 Thread Gary Little
The DragZoom library has this capability but it works with V2 only, it was never ported to V3. The KeyDragZoom library (available for both V2 and V3), initially designed to provide a drag zoom capability triggered by holding down a hot key (with no UI controls required), but later enhanced to

[Google Maps API v3] Why are new Google UI elements not available through API?

2011-09-30 Thread Gary Little
See http://google-latlong.blogspot.com/2011/09/refocused-design-evolution-continued.html Google seems very proud of some tweaks to the UI of its main Google map. Any idea why these elements are not used by default when creating custom Google maps using V3 of the API? I would like to see some

[Google Maps API v3] Re: Clusterer shows in a different map

2011-09-29 Thread Gary Little
See http://code.google.com/p/gmaps-api-issues/issues/detail?id=3651 Try setting v=3.5 when loading the Google Maps API. On Sep 29, 2:47 am, Petermilad peter.a...@coformatique.com wrote: Hello all, I have this issue which I load the map centred at (0,0), create a new cluster then markers to

[Google Maps API v3] Re: Clusters are not showing on the map

2011-09-29 Thread Gary Little
See http://code.google.com/p/gmaps-api-issues/issues/detail?id=3651 On Sep 29, 3:55 am, Petermilad peter.a...@coformatique.com wrote: Hello all, I created a new cluster and set some markers to it, set the default map zoom level to 2 and the centre to (0,0). just to mention something about

[Google Maps API v3] Recent Maps API change causing problems placing markers in MarkerWithLabel

2011-09-21 Thread Gary Little
See http://code.google.com/p/google-maps-utility-library-v3/issues/detail?id=129 Beginning recently, presumably triggered by a change in one of the nightly releases, markers and/or their associated labels are not being positioned property -- but only when using certain browsers -- when using the

[Google Maps API v3] Re: InfoBox Marker Issues

2011-09-02 Thread Gary Little
There's a syntax error in the code for your map that uses InfoBox. On the line after ,width: 180px there is an extraneous } on a line by itself. It needs to be removed. Gary On Sep 1, 11:02 am, ir261273 hobbito...@googlemail.com wrote: Hi, I wonder whether someone may be able to

[Google Maps API v3] Re: Removing restaurants, hotels etc. from the roadmap

2011-08-25 Thread Gary Little
People may also want to turn off poi.medical to prevent pharmacies -- which I feel are more like businesses than medical facilities -- from being displayed (of course this would also affect hospitals). On Aug 24, 1:12 am, Chris Broadfoot c...@google.com wrote: Hi, you can disable the business

[Google Maps API v3] Re: Infobox displays on top of other markers, but passes through events to underlying markers

2011-08-24 Thread Gary Little
Rob, OK, I've now figured this out. It turns out the problem occurs when using markers that have the optimized property set to true -- and with current versions of Google Maps API the default setting is true. In this situation Google uses a canvas to render markers and it seems this is

[Google Maps API v3] Re: Infobox displays on top of other markers, but passes through events to underlying markers

2011-08-24 Thread Gary Little
See Issue 3573 http://code.google.com/p/gmaps-api-issues/issues/detail?id=3573 On Aug 24, 7:55 am, Gary Little g...@luxcentral.com wrote: Rob, OK, I've now figured this out. It turns out the problem occurs when using markers that have the optimized property set to true -- and with current

[Google Maps API v3] Re: Infobox displays on top of other markers, but passes through events to underlying markers

2011-08-24 Thread Gary Little
://www.luxcentral.com/bug/infowindow-bug.html even when applying a workaround. On Aug 24, 5:22 pm, Gary Little g...@luxcentral.com wrote: See Issue 3573 http://code.google.com/p/gmaps-api-issues/issues/detail?id=3573 On Aug 24, 7:55 am, Gary Little g...@luxcentral.com wrote: Rob, OK

[Google Maps API v3] How does InfoWindow prevent cursor change for covered markers?

2011-08-24 Thread Gary Little
I have noticed that google.maps.InfoWindow correctly prevents the cursor from changing to a pointer when the mouse rolls over a clickable marker (including the new POI markers) covered by the InfoWindow. I am trying to mimic this same behavior in my InfoBox class and can't figure out how to do

[Google Maps API v3] Re: How does InfoWindow prevent cursor change for covered markers?

2011-08-24 Thread Gary Little
, 7:19 pm, Gary Little g...@luxcentral.com wrote: I have noticed that google.maps.InfoWindow correctly prevents the cursor from changing to a pointer when the mouse rolls over a clickable marker (including the new POI markers) covered by the InfoWindow. I am trying to mimic this same

[Google Maps API v3] Re: How does InfoWindow prevent cursor change for covered markers?

2011-08-24 Thread Gary Little
-library-v3.googlecode.com/svn/trunk/infobox/src/infobox.js Gary On Aug 24, 6:07 pm, Gary Little g...@luxcentral.com wrote: Changing z-index should make no difference if the marker's mouseTarget pane is different from the floatPane. It's almost as if the mouse target DIVs are now

[Google Maps API v3] Re: Infobox displays on top of other markers, but passes through events to underlying markers

2011-08-24 Thread Gary Little
The cursor change issue has now been fixed in the trunk version (1.1.8) of InfoBox that I posted earlier today: http://google-maps-utility-library-v3.googlecode.com/svn/trunk/infobox/src/infobox.js On Aug 24, 9:58 am, Gary Little g...@luxcentral.com wrote: Pil, The cursor change issue seems

[Google Maps API v3] Re: Infobox displays on top of other markers, but passes through events to underlying markers

2011-08-24 Thread Gary Little
Noli, Your request is a bit off topic, but here are two examples: http://google-maps-utility-library-v3.googlecode.com/svn/trunk/infobox/examples/ On Aug 24, 7:12 pm, Noli Sicad nsi...@gmail.com wrote: On 8/24/11, Noli Sicad wrote: Do you have simple example illustrating how to use this

[Google Maps API v3] Re: Markercluster in V3

2011-08-23 Thread Gary Little
First of all, performance will be very slow when handling this number of markers. I would guess that Internet Explorer, the slowest of the browsers, would be totally unusable. To answer your question: MarkerClusterer does not trigger events when it starts (and ends) clustering. However,

[Google Maps API v3] Re: 2011/8/17 - New Release (3.6)

2011-08-23 Thread Gary Little
I can try it myself. Chris --http://twitter.com/broady On Sat, Aug 20, 2011 at 12:59 AM, Gary Little g...@luxcentral.com wrote: ... after some experimentation I've found that even after setting the visibility of poi.business labels to off I am seeing some clickable business icons

[Google Maps API v3] Re: Markercluster in V3

2011-08-23 Thread Gary Little
It can probably handle it, though you may not be satisfied the performance, even with a fast browser. IE would be totally unusable. On Aug 23, 9:49 am, Al Black alexleebl...@gmail.com wrote: Gary, in the example MarkerClustererPlus goes up to 1000 markers no sweat - would it be able to handle

[Google Maps API v3] Re: Infobox displays on top of other markers, but passes through events to underlying markers

2011-08-23 Thread Gary Little
I see the problem. I've tried to create a simple test case to reproduce it using one of the InfoBox examples but it works correctly. Could you create a minimal test case to illustrate the problem? There's something odd here that I can't quite put my finger on. Gary On Aug 22, 7:40 am, RobRoyAus

[Google Maps API v3] Re: 2011/8/17 - New Release (3.6)

2011-08-19 Thread Gary Little
What are the criteria for determining which clickable business icons are shown on the base map? In the downtown core of my town, only two businesses are shown (both are pharmacies); there are no restaurants, banks, grocery stories, coffee shops, etc. Not very useful. Gary On Aug 16, 6:53 pm,

[Google Maps API v3] Re: 2011/8/17 - New Release (3.6)

2011-08-19 Thread Gary Little
and I'm seeing some clickable business icons because of a bug or ??? On Aug 19, 7:36 am, Gary Little g...@luxcentral.com wrote: What are the criteria for determining which clickable business icons are shown on the base map? In the downtown core of my town, only two businesses are shown (both

[Google Maps API v3] Re: Polygons visible only at certain zoom levels??

2011-08-04 Thread Gary Little
Yes, that's how to do it: add a handler for the map's zoom_changed event then change the visibility of your polygons depending on the current zoom level. I do something like this for hiding labels at low zoom levels and showing them when the map is zoomed in beyond a threshold value. On Aug 3,

[Google Maps API v3] Re: MarkerClusterer - removing individual clusters

2011-08-04 Thread Gary Little
There is no documented way to programmatically hide a cluster other than by using the minimumClusterSize property. Barry could probably get the desired effect by using MarkerClustererPlus (an enhanced version of MarkerClusterer), however. What you would do is hide markers that don't meet your

[Google Maps API v3] Re: Marker Cluster icons displaying over single marker icons

2011-08-03 Thread Gary Little
The marker clusterer places cluster icons in the overlayMouseTarget pane which is above the overlayImage pane where markers reside. That's why changing z-indexes doesn't affect the ordering: cluster icons always appear above markers. I believe the overlayMouseTarget pane was probably chosen to

[Google Maps API v3] Re: Google Maps V3 : Area Shape definition (Expert)

2011-08-01 Thread Gary Little
From the V2 Reference: Note: The Google Maps Javascript API Version 2 has been officially deprecated as of May 19, 2010. The V2 API will continue to work as per our deprecation policy, but we encourage you to migrate your code to version 3 of the Maps Javascript API On Aug 1, 8:09 am, franklinNY

[Google Maps API v3] Double clicking a fusion table overlay -- any way to kill subsequent click event?

2011-06-15 Thread Gary Little
I've got a clickable fusion table with 15,000 polygons overlaid on my map. I have a click handler to display a dialog box when any of these polygons is clicked. When the user double clicks on a polygon, the map zooms in one level (I think this is done by the Google fusion layer code) then the

[Google Maps API v3] Re: Re : Code working fine with IE, Chrome, FF... and the iOS (iphone/ipod) but not Safari!

2011-06-06 Thread Gary Little
Works for me with Safari 5.0.5/Mac on a MacBook Pro with Mac OS X 10.6.7. Gary On Jun 5, 3:21 pm, kfa1983 ruff...@gmail.com wrote: Here's a link where you can see it in action: http://www.oneyez.com/conf/13954c10d97d93d4a1b4baab9cbb839bbe002dd9 Thanks in advance!! ^^ -- You received this

[Google Maps API v3] Re: Using the places library without a map on the same page

2011-05-25 Thread Gary Little
Chris, Neat bindTo trick! No need to set up an event listener... Saved me several lines of code. Gary On May 25, 2:59 am, Chris Broadfoot c...@google.com wrote: On Thu, May 19, 2011 at 7:07 AM, Johannes Schill johannes.sch...@gmail.comwrote: are being included in the result. Maybe my

[Google Maps API v3] Re: Introducing the Map Label utility library

2011-05-25 Thread Gary Little
Chris, Luke, What happens when you try to use this library with a browser that does not support canvas? Does it gracefully switch to using a different technique, fail, or...? Gary On May 24, 12:05 am, Chris Broadfoot c...@google.com wrote: Hi all, A few of you who had watched my Google I/O

[Google Maps API v3] Re: Introducing the Map Label utility library

2011-05-25 Thread Gary Little
You can also create map labels using the InfoBox class in the V3 utilities library: http://google-maps-utility-library-v3.googlecode.com/svn/tags/infobox/1.1.5/ These labels don't use canvas so if you have a lot of labels on the map performance may not be as fast as with Map Label. On the other

[Google Maps API v3] Re: About Infobox: show/open/setContent

2011-05-23 Thread Gary Little
Be sure to include the InfoBox library before using it. That is, include the following file in a script tag: http://google-maps-utility-library-v3.googlecode.com/svn/tags/infobox/1.1.5/src/infobox.js When you attach an InfoBox to the map (with open) it appears on the map by default. You can then

[Google Maps API v3] Re: Google sample code not working on safari

2011-05-12 Thread Gary Little
I'm using Safari 5.0.5/Mac and it works as expected. On May 11, 8:07 am, pablovn p...@varsitynetworks.com wrote: Sorry, I should have been more specific about what is not working.  On firefox, chrome and IE I get the map.  On Safari 5.0.5, I get nothing, a blank screen. -- You received this

[Google Maps API v3] Re: Help needed with InfoBox mousover/mouseout

2011-04-20 Thread Gary Little
In your mouseover listener, you're going to have to change the content of the InfoBox based on which marker is being moused over. Use the setContent function of the InfoBox class. Gary On Apr 20, 7:11 am, pontusw pontuswesterber...@googlemail.com wrote: Hi, I'm new to the Google Maps Api and

[Google Maps API v3] Re: keydragzoom button for visual control

2011-04-19 Thread Gary Little
This is not currently possible with KeyDragZoom. The visual control must appear on the surface of the map. Gary On Apr 19, 3:13 am, Alessio alessio...@gmail.com wrote: Hi, in the extension for the v2 api I was able to activate the dragzoom with a normal html button, using a function in the

[Google Maps API v3] Re: customs info windows

2011-04-14 Thread Gary Little
InfoBox has a setContent method for changing the content and a setPosition method for changing the position. So in your click handler for a marker you can get the position of the marker (google.maps.Marker.getPosition()), then pass the result on to the InfoBox to reposition it at the marker

[Google Maps API v3] Re: Adding shopping center, buss station, and extra labels to maps

2011-04-07 Thread Gary Little
You can use the infobox.js library to add labels to V3 maps: http://google-maps-utility-library-v3.googlecode.com/svn/tags/infobox/1.1.5/ One of the examples shows exactly how to do it. On Apr 6, 11:07 am, iTraceDesigns justinstev...@itracedesigns.com wrote: How can I add extra labels to my

[Google Maps API v3] Re: No more DragZoom in V3? Must use keyboard?

2011-04-06 Thread Gary Little
The current version of KeyDragZoom lets you activate a drag zoom not only from the keyboard but also by clicking a visual control. Read the documentation at http://google-maps-utility-library-v3.googlecode.com/svn/tags/keydragzoom/2.0.5/docs/reference.html On Apr 5, 10:06 am, Howard P

[Google Maps API v3] Re: 2011/3/22 - New Release

2011-03-26 Thread Gary Little
This release is considerably slower than v3.3 when it comes to updating map tiles. With 3.3, when I pan a map I rarely see a blank spot while the API fetches and displays a new tile. With 3.4 I see these blanks spots all the time and it takes a second or two to update. Gary On Mar 24, 7:58 am,

[Google Maps API v3] Re: How can I used the overlayMouseTarget Custom Overlays

2011-03-20 Thread Gary Little
The MarkerWithLabel utility library uses the overlayMouseTarget pane. You can retrieve the source code at http://google-maps-utility-library-v3.googlecode.com/svn/trunk/markerwithlabel/ Gary On Mar 18, 11:36 pm, sq wang chlorella2...@gmail.com wrote: I am trying to add my layer which can catch

[Google Maps API v3] Re: New Release - 2011/3/17

2011-03-19 Thread Gary Little
Chris, Note this Safari disappearing marker bug with V3.4 when marker optimization is off: http://code.google.com/p/gmaps-api-issues/issues/detail?id=3162 Gary On Mar 17, 12:07 am, Chris Broadfoot (Google Employee) c...@google.com wrote: Hi all, Today we pushed a new version of the API.

[Google Maps API v3] Re: Markers and zIndex

2011-03-18 Thread Gary Little
Chris: Setting optimized: false seems to have solved my problem since I was already doing everything else you suggested. Thanks. Now I wish I could set optimized: true but for that I need an official way to access the internal z-indexes of the marker. (This is part of my work on MarkerWithLabel

[Google Maps API v3] Re: Markers and zIndex

2011-03-18 Thread Gary Little
Chris: After further analysis... optimized: false doesn't work reliably with Safari/Mac (entire markers sometimes go missing). Seems to be OK with every other Mac browser. Will start a new thread to discuss. Gary On Mar 18, 9:42 am, Gary Little g...@luxcentral.com wrote: Chris: Setting

[Google Maps API v3] Re: Markers and zIndex

2011-03-18 Thread Gary Little
See bug report at http://code.google.com/p/gmaps-api-issues/issues/detail?id=3162 On Mar 18, 11:34 am, Gary Little g...@luxcentral.com wrote: Chris: After further analysis... optimized: false doesn't work reliably with Safari/Mac (entire markers sometimes go missing). Seems to be OK

[Google Maps API v3] Re: Draggable markers sometimes disappearing on Safari/Mac

2011-03-18 Thread Gary Little
I've now seen this even with non-draggable markers and have created a test case. See: http://code.google.com/p/gmaps-api-issues/issues/detail?id=3162 Gary On Mar 12, 4:45 pm, Gary Little g...@luxcentral.com wrote: All, I'm experiencing an odd situation which I believe is unique toSafari

[Google Maps API v3] Re: Markers and zIndex

2011-03-18 Thread Gary Little
Simon: I tried your sample and I also observe the problem you're describing. I added an optimized: false parameter to each marker and everything now works as expected! Definitely a bug -- zindex of draggable markers isn't behaving as expected when optimized is true (the new default). Gary On

[Google Maps API v3] Re: New Release - 2011/3/17

2011-03-17 Thread Gary Little
It would be nice to have a way to prevent the overview map control from appearing when the map is printed. This could be done by supporting an overviewMapControlOptions parameter for specifying the name of a CSS class to be applied to the control's DIV. If this were done, a display: none; rule in

[Google Maps API v3] Re: New Release - 2011/3/17

2011-03-17 Thread Gary Little
to file a external one too. -- Luke On Fri, Mar 18, 2011 at 8:18 AM, Gary Little g...@luxcentral.com wrote: It would be nice to have a way to prevent the overview map control from appearing when the map is printed. This could be done by supporting an overviewMapControlOptions parameter

[Google Maps API v3] Re: Markers and zIndex

2011-03-17 Thread Gary Little
Chris, I too have been noticing unexpected problems in z ordering with V3.4, not sure if it's related to this problem, but it might be. In my case, I'm attempting to set the z-index of an OverlayView object based on the current z-index of an associated Marker so I can order them properly

[Google Maps API v3] Draggable markers sometimes disappearing on Safari/Mac

2011-03-12 Thread Gary Little
All, I'm experiencing an odd situation which I believe is unique to Safari 5.0.4 running on Mac OS X (in my case 10.6.6). I have created a map containing draggable markers. When I zoom the map in, then pan so that other markers should be exposed, they sometimes do not appear. They usually

[Google Maps API v3] Any way to get a Polygon to appear above a Fusion Table layer

2011-03-10 Thread Gary Little
I have a map with a fusion table layer and a bunch of polygons. The polygons currently appear below the fusion layer. Is there any way to get the polygons to be drawn so that they appear on top of the fusion layer? -- You received this message because you are subscribed to the Google Groups

[Google Maps API v3] Re: 2011/3/2 - New Release

2011-03-09 Thread Gary Little
Jason: See http://code.google.com/p/gmaps-api-issues/issues/detail?id=3114 Comment 9 there has an easy workaround for your problem until the V3.4 bug is fixed. Simply set the visible property of your labeled markers explicitly when you create them. Gary On Mar 8, 5:26 pm, Jason Jonas

[Google Maps API v3] Re: 2011/3/2 - New Release

2011-03-08 Thread Gary Little
See marker getVisible() bug that has surfaced in the past day or so: http://code.google.com/p/gmaps-api-issues/issues/detail?id=3114 Gary On Mar 1, 9:08 pm, Chris Broadfoot (Google Employee) c...@google.com wrote: Hi all, Recently a new version of the Maps API went live. We have made

[Google Maps API v3] Re: Centering a marker in a dblclick handler doesn't work [V3.4 bug]

2011-03-02 Thread Gary Little
/browse_thread/th... It seems the double click event has been changed at some place. Do you know if there exist a mean to use only version 3.3 in one code app? On Mar 2, 1:14 am, Gary Little g...@luxcentral.com wrote: I have a simple map which illustrates a problem in the current iteration

[Google Maps API v3] Re: Centering a marker in a dblclick handler doesn't work [V3.4 bug]

2011-03-02 Thread Gary Little
, 2011 at 11:14 AM, Gary Little g...@luxcentral.com wrote: I have a simple map which illustrates a problem in the current iteration of V3.4: http://www.luxcentral.com/bug/bug3.html This map has a single marker with a dblclick handler attached. The handler is supposed to center the map

[Google Maps API v3] Re: Unexpected disappearance of markers when using Safari 5.0.3/Mac and V3.4

2011-03-01 Thread Gary Little
As of today (March 1), this problem seems to have been fixed. Yay! Gary On Feb 27, 10:00 am, Gary Little g...@luxcentral.com wrote: FYI, I have filed a bug report regarding the unexpected disappearance of markers when zooming in and out of a V3.4 Google map using Safari 5.0.3/Mac: http

[Google Maps API v3] Centering a marker in a dblclick handler doesn't work [V3.4 bug]

2011-03-01 Thread Gary Little
I have a simple map which illustrates a problem in the current iteration of V3.4: http://www.luxcentral.com/bug/bug3.html This map has a single marker with a dblclick handler attached. The handler is supposed to center the map around the marker position and zoom in one level. All works well

[Google Maps API v3] Re: 2011/2/22 - New Release

2011-02-27 Thread Gary Little
Chris, I have filed a formal bug report concerning my disappearing marker issue (on Safari 5.0.3/Mac) that was first observed when V3.4 came out a couple of weeks ago. See: http://code.google.com/p/gmaps-api-issues/issues/detail?id=3076 Gary On Feb 22, 4:09 pm, Chris Broadfoot (Google

[Google Maps API v3] Unexpected disappearance of markers when using Safari 5.0.3/Mac and V3.4

2011-02-27 Thread Gary Little
FYI, I have filed a bug report regarding the unexpected disappearance of markers when zooming in and out of a V3.4 Google map using Safari 5.0.3/Mac: http://code.google.com/p/gmaps-api-issues/issues/detail?id=3076 The problem does not seem to occur with other browsers or other versions of the

[Google Maps API v3] Re: How can I add a simple text to a fixed location on google map?

2011-02-20 Thread Gary Little
For creating labels that are *not* associated with a marker, you can use InfoBox, also in the Google Maps Utility Library: http://google-maps-utility-library-v3.googlecode.com/svn/trunk/infobox/ Gary On Feb 20, 1:07 am, Martin Matysiak kaktus...@googlemail.com wrote: Is your fixed location

[Google Maps API v3] Re: infoBoxes in StreetView? Or another way around this problem???

2011-02-20 Thread Gary Little
Sascha, I think you will have to do what Tim did in his sample code up above. i.e., create a duplicate set of markers to add to the custom Street View. Gary On Feb 20, 1:48 am, archinform arch...@archinform.de wrote: Hi folks, have a similar problem (posted

[Google Maps API v3] Re: infoBoxes in StreetView? Or another way around this problem???

2011-02-18 Thread Gary Little
Tim I have been communicating directly about this. I will summarize the resolution here so that others may benefit. First of all, the InfoBox utility class ( see http://google-maps-utility-library-v3.googlecode.com/svn/trunk/infobox/ ) does work with Street View panoramas. In other words, you

[Google Maps API v3] Re: infoBoxes in StreetView? Or another way around this problem???

2011-02-16 Thread Gary Little
, Feb 16, 2011 at 3:12 AM, Gary Little g...@luxcentral.com wrote: It would be instructive to know how Google gets markers to appear above the street view pane. If that is understood it might give insight into how to force something in the floatPane (i.e., an infobox or infowindow) to appear

[Google Maps API v3] Re: 2011/2/8 - New Release (Maps API 3.4)

2011-02-16 Thread Gary Little
Tonight I've noticed that markers on my map disappear at high zoom levels; this seems to have just started happening today for no apparent reason. The markers do not disappear if I set the version to 3.3 http://map.garylittle.ca/ Gary On Feb 16, 10:00 am, Mike Dolbow mike.dol...@state.mn.us

[Google Maps API v3] Re: 2011/2/8 - New Release (Maps API 3.4)

2011-02-16 Thread Gary Little
Note: The problem regarding the disappearing markers was observed with Safari/Mac. It did not occur with Firefox/Mac or Chrome/Mac. On Feb 16, 9:43 pm, Gary Little g...@luxcentral.com wrote: Tonight I've noticed that markers on my map disappear at high zoom levels; this seems to have just

Re: [Google Maps API v3] Re: 2011/2/8 - New Release (Maps API 3.4)

2011-02-16 Thread Gary Little
, 2011, at 22:20 :11, Chris Broadfoot wrote: On Thu, Feb 17, 2011 at 4:49 PM, Gary Little g...@luxcentral.com wrote: Note: The problem regarding the disappearing markers was observed with Safari/Mac. It did not occur with Firefox/Mac or Chrome/Mac. Hi Gary, I can't reproduce this on Safari/Mac

Re: [Google Maps API v3] Re: 2011/2/8 - New Release (Maps API 3.4)

2011-02-16 Thread Gary Little
, it works as expected. Gary On Feb 16, 2011, at 22:30 :24, Gary Little wrote: Chris, No errors in the console. I'm running Mac OS X 10.6.6 with Safari 5.0.3 (6533.19.4) on a MacBook Pro. The markers disappear for the top 4 zoom levels. I'll keep banging on it tomorrow morning (it's 22

[Google Maps API v3] Re: infoBoxes in StreetView? Or another way around this problem???

2011-02-15 Thread Gary Little
It would be instructive to know how Google gets markers to appear above the street view pane. If that is understood it might give insight into how to force something in the floatPane (i.e., an infobox or infowindow) to appear above the street view as well. On Feb 14, 9:34 am, Tim Blackburn

[Google Maps API v3] Re: MarkerWithLabel in IE6!

2011-02-12 Thread Gary Little
I wrote this library, so I should be able to help... but I do not have a system running MSIE 6. Just so you know, Google Maps API V3 no longer supports MSIE 6, see http://maps.google.com/support/bin/answer.py?hl=enanswer=16532 Doing a quick search of the web I note there are many zindexing bugs

[Google Maps API v3] Re: Color markers (other than red)

2010-12-28 Thread Gary Little
If you're trying to add a label to any Marker, you can use the MarkerWithLabel class: http://google-maps-utility-library-v3.googlecode.com/svn/tags/markerwithlabel/ Gary On Dec 27, 10:03 pm, Mark Adler goo...@madler.net wrote: If anyone is interested, a program is linked here that reads a png

[Google Maps API v3] Any way to cancel a marker drag operation?

2010-12-20 Thread Gary Little
If you start dragging a marker, is there any way to cancel the drag so that the marker returns to its original position? I thought that pressing Esc might work... but it does not. Gary -- You received this message because you are subscribed to the Google Groups Google Maps JavaScript API v3

[Google Maps API v3] Re: Any way to cancel a marker drag operation?

2010-12-20 Thread Gary Little
for is to tell a user to press Esc then immediately release the mouse button. Gary On Dec 20, 7:01 pm, geocode...@gmail.com geocode...@gmail.com wrote: On Dec 20, 9:55 pm, Gary Little g...@luxcentral.com wrote: If you start dragging a marker, is there any way to cancel the drag so that the marker

[Google Maps API v3] Re: 2010/12/5: New Release - including Marker animations, Max Zoom Service

2010-12-07 Thread Gary Little
, 9:07 am, Gary Little g...@luxcentral.com wrote: Chris, But you can't determine the state of raiseOnDrag programmatically as you can many other Marker parameters. For example, in a class like MarkerWithLabel any drag that begins in the label portion needs to know whether the label is supposed

[Google Maps API v3] Re: 2010/12/5: New Release - including Marker animations, Max Zoom Service

2010-12-06 Thread Gary Little
Regarding the new raiseOnDrag feature: It would be useful to have a getRaiseOnDrag() method (for Marker class) for determining whether this feature is on or off. This would allow a custom class such as MarkerWithLabel (see http:// code.google.com/p/google-maps-utility-library-v3/wiki/Libraries)

[Google Maps API v3] Re: 2010/12/5: New Release - including Marker animations, Max Zoom Service

2010-12-06 Thread Gary Little
constant, though. Gary On Dec 6, 1:59 pm, Gary Little g...@luxcentral.com wrote: Regarding the new raiseOnDrag feature: It would be useful to have a getRaiseOnDrag() method (for Marker class) for determining whether this feature is on or off. This would allow a custom class

[Google Maps API v3] Re: Setting zIndex to get label to display above marker

2010-12-02 Thread Gary Little
Malcolm, Here's a piece of code derived from from my MarkerWithLabel class that shows what you have to do: function setLabelZIndex( labeldiv, marker ) { var zAdjust = 1; // or -1 if you want the label in the background if (typeof marker.getZIndex() === undefined) { labeldiv.style.zIndex

[Google Maps API v3] Re: InfoBox labels blocking click propagation for polygons?

2010-11-30 Thread Gary Little
In your V3 example, because you've set InfoBox's enableEventPropagation property to true, the click event passes from the overlayShadow pane to the map itself -- as you've observed. I believe the various V3 map panes are independent of one another so an event originating in one pane does not get

[Google Maps API v3] Re: How do you prevent custom control from printing?

2010-11-30 Thread Gary Little
controls. Gary On Nov 28, 11:21 pm, Gary Little g...@luxcentral.com wrote: Agreed. I've just added a visualClass property to the keydragzoom control so that you can prevent the visual portion of the control from printing by setting visualClass to noprint, the CSS class in your example above

[Google Maps API v3] Re: InfoBox labels blocking click propagation for polygons?

2010-11-30 Thread Gary Little
with pretty much the same results as before (the first 2 labels). - ping On Dec 1, 6:58 am, Gary Little g...@luxcentral.com wrote: In your V3 example, because you've set InfoBox's enableEventPropagation property to true, the click event passes from the overlayShadow pane to the map itself

[Google Maps API v3] Re: How do you prevent custom control from printing?

2010-11-28 Thread Gary Little
On Nov 28, 1:50 pm, Chris Broadfoot c...@google.com wrote: If your custom control has class noprint: @media print {   .noprint {     display: none;   } } Chris On Sunday, November 28, 2010, Gary Little g...@luxcentral.com wrote: I want to prevent the visual element of a custom control

[Google Maps API v3] Re: 2010/11/29: New Release

2010-11-28 Thread Gary Little
I noticed a couple of days ago that markers on maps now print w/o enabling printing of background. Great news! I'd love to know how this was accomplished -- some advanced CSS work I imagine. Gary On Nov 28, 9:29 pm, Luke (Google Employee) lu...@google.com wrote: Hey everyone! We've recently

  1   2   >