[Google Maps API v3] CSS for changing vertex icons in edition mode

2011-11-27 Thread Silver
Hello folks, Some idea about changing the small boxes markers of drawingManager using CSS? Best regards!!! -- 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: MarkerManager

2011-11-27 Thread AF
I have discovered/fixed the problem, it was within the stock google markermanager code. Its a shame that the people who felt the need to ( unnecessarily ) reply to this post with guff have been have been such a distraction from solving the problem, still you live and learn, I wont be using the

[Google Maps API v3] Re: MarkerManager

2011-11-27 Thread AF
As said in an earlier post a link is/was not available but I thought the desription(s) should have been enough to get some cunstructive comments going backwards and forwards, still I have solved the problem ( see reply to andrews post ), as far as clairvoyancy goes I have a sense you are going

[Google Maps API v3] Re: MarkerManager

2011-11-27 Thread AF
Not specific to my original problem ( if I can remember that far back it seems so long ago now ), anyway problem is solved. Tallyho. -- 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

Re: [Google Maps API v3] Re: MarkerManager

2011-11-27 Thread AF
Thanks for the comment chris, the problem is solved now, a sensible reply is always welcome. Cheers. -- 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

Re: [Google Maps API v3] Re: MarkerManager

2011-11-27 Thread AF
Wow we really have gone off topic now, we are no longer talking about an api, or even computers in general, we are now talking about apples, m, apples. -- You received this message because you are subscribed to the Google Groups Google Maps JavaScript API v3 group. To view this

[Google Maps API v3] Re: How to add a domready event to an infoBubble

2011-11-27 Thread Geoff Schultz
Rossko, Thanks again for your insights! Since you seem to be very knowledgeable about this, perhaps you can help me with one more problem. Basically I'm trying to display some weather charts. These charts come from a variety of sources. I am trying to display them within a infoWindow of

[Google Maps API v3] Re: MarkerManager

2011-11-27 Thread geocode...@gmail.com
On Nov 27, 3:34 am, AF afils...@serif.com wrote: I have discovered/fixed the problem, it was within the stock google markermanager code. Perhaps you could post the issue and its resolution on the relevant issues list: http://code.google.com/p/google-maps-utility-library-v3/issues/list (so it

[Google Maps API v3] Re: zIndex

2011-11-27 Thread geocode...@gmail.com
On Nov 26, 6:32 pm, geocode...@gmail.com geocode...@gmail.com wrote: On Nov 26, 8:15 pm, Marcelo marcelo...@hotmail.com wrote: On Nov 26, 6:00 pm, john john.c...@aafa-inc.com wrote: I read the doc. For those markers in the same group. I want keep the default behavior. That's my trouble

[Google Maps API v3] Re: How to add a domready event to an infoBubble

2011-11-27 Thread Geoff Schultz
This example is a massively stripped down version of the development code just to show the issue. This occurs in the development version even when the map is fully drawn. To make the example behave more like the development version, I added a click event handler to the map which displays the

[Google Maps API v3] Re: How to add a domready event to an infoBubble

2011-11-27 Thread Rossko
To make the example behave more like the development version, I added a click event handler to the map which displays the infoBubble and it exhibits the same behavior despite the map being fully drawn. Yep, infobubble's 'domready' event is still optimistic, it fires before the browser has had

[Google Maps API v3] Re: How to add a domready event to an infoBubble

2011-11-27 Thread Geoff Schultz
I changed the click event to execute the load_rotator() code and you were correct! (I like talking to smart people :-) To me this simply indicates that the domready event code is broken for the infoBubble. This should be a deterministic event. However, it clearly isn't. So, I'll implement

[Google Maps API v3] Re: How to add a domready event to an infoBubble

2011-11-27 Thread Rossko
So, I'll implement your suggestion.  However, how does one add a task to the browser queue? setTimeout ('doMyFunction(blah)', 0); Looks like a zero delay, but would should happen is that a new task is appended to the browser's work queue after a zero delay. I believe/ hope that should then be

[Google Maps API v3] Re: How to add a domready event to an infoBubble

2011-11-27 Thread Geoff Schultz
I tried your suggestion of doing a setTimeout(load_rotator(),0) to execute the load_rotator() function, but that didn't resolve the issue. I had to bump the timer up to 1500 ms before it worked, but that seems highly system/browser specific. I think that I'll just figure out how to make a

[Google Maps API v3] Geolocation Issues

2011-11-27 Thread BusyBee
Hello everyone, This is my first time posting on here. I was working on this program where the website is query the mobile phone and then displaying it on a map. But for some reason it works on some Driods, and an unlocked Iphone 4. I tried on verizon's Iphone 4S and Verizon Iphone 4G and it

[Google Maps API v3] Re: Bounding box behavior

2011-11-27 Thread Nick
Thank you for your reply! Did you paste the code before zooming? When I paste it to the console and zoom out afterwards I can see it. Just tried it using Safari, I have not tested it in another browser. Well, what I am trying to achieve is the following: I want to know whether a marker is

[Google Maps API v3] Google Maps V3 API WinForm Usage

2011-11-27 Thread engrforever
Folks, I am interested in figuring out how I can integrate the Google Map V3 API features into a custom WinForm application. I have come across a codeplex project (GMap.NET), I trying to understand what are my options and limitations. I know I can add a web control in WinForm, but will that

[Google Maps API v3] Example doesn't work locally - generating a kml layer at runtime

2011-11-27 Thread Felix Kiechle
[By mistake, I posed this question first in the API v2 forum at http://groups.google.com/group/google-maps-api/browse_frm/thread/165fe59d079624f5/f200780e71e2cdcf#f200780e71e2cdcf] Hi, I'm trying to run the Too Many Markers Example by Miguel Ángel Vilela [1] on my server [2] but the kml layer

[Google Maps API v3] Re: To add a search bar

2011-11-27 Thread Masashi.K
It's easy like this: -- var input = document.getElementById('search'); mapCanvas.controls[google.maps.ControlPosition.TOP_LEFT].push(input); var options = { types: ['establishment'] }; var autocomplete = new google.maps.places.Autocomplete(input, options);

[Google Maps API v3] stretch map to viewport size

2011-11-27 Thread Bas van de Lustgraaf
how to manage that the map is as big as the canvas (div) based on the bounds? So basically the same map appears independantly if the canvas is 200x200 or 600x600. -- You received this message because you are subscribed to the Google Groups Google Maps JavaScript API v3 group. To view this

[Google Maps API v3] stretch map independantly of the canvas size

2011-11-27 Thread Bas van de Lustgraaf
how to manage that the map is as big as the canvas (div) based on fixed bounds coordinates? So basically the same map appears independantly if the canvas is 200x200 or 600x600. -- You received this message because you are subscribed to the Google Groups Google Maps JavaScript API v3 group. To

Re: [Google Maps API v3] Re: How to add a domready event to an infoBubble

2011-11-27 Thread Chris Broadfoot
On Sat, Nov 26, 2011 at 11:40 PM, Geoff Schultz geoffrey.w.schu...@gmail.com wrote: Rossko, I took me quite a while to decode what you were telling me. I'm quite confused as to how the domReady event can fire before the infoBubble is opened. Anyhow, what I finally figured out was that I

[Google Maps API v3] Re: stretch map independantly of the canvas size

2011-11-27 Thread Marcelo
You cannot do that exactly because zoom levels are discrete values. The only way to make it fit would be to reduce or increase the size of the canvas in multiples of 2, ie. 200x200 pixels at zoon 4 would show the same area as 400x400 pixels at zoom 5, and so on. -- Marcelo - http://maps.forum.nu

[Google Maps API v3] The distance between two points,a user-defined route?

2011-11-27 Thread xinyun_0...@126.com
Hello I have two markers, now i want to know the distance between this two points.But not the straight-line distance,the route is a user- defined.For example,the route is a KML file, these two points in this line, and now i want to know the distance between two points.Who can help me? My

[Google Maps API v3] Re: Example doesn't work locally - generating a kml layer at runtime

2011-11-27 Thread geocode...@gmail.com
On Nov 27, 3:52 pm, Felix Kiechle felix.kiec...@googlemail.com wrote: [By mistake, I posed this question first in the API v2 forum athttp://groups.google.com/group/google-maps-api/browse_frm/thread/165f...] Hi, I'm trying to run the Too Many Markers Example by Miguel Ángel Vilela [1] on my

[Google Maps API v3] Re: Google Maps V3 API WinForm Usage

2011-11-27 Thread Mr.Pohoda
I suggest you to use GMap.NET. I've tried web control in my mobile application and not all javascript worked. I suppose it will be the same in desktop application. In GMap.NET there are even things like marker clusterer and you can use google, openstreet layers, bing or yahoo if you want. If you

Re: [Google Maps API v3] Re: Google Maps V3 API WinForm Usage

2011-11-27 Thread Chris Broadfoot
I'm not familiar with the .NET framework, but in general, we recommend web views. Could you find a WebKit-based web view? Neither solution is directly supported, but use of GMap.NET violates the Terms of Service. Using a web view may not be covered by our supported browsers but in all likelihood

Re: [Google Maps API v3] CSS for changing vertex icons in edition mode

2011-11-27 Thread Chris Broadfoot
Hi, It's not possible to change the anchor points of editable shapes. If you'd like this feature, please file it over on the issue tracker: http://code.google.com/p/gmaps-api-issues Cheers Chris -- http://twitter.com/broady On Sun, Nov 27, 2011 at 8:43 PM, Silver silv...@gmail.com wrote:

Re: [Google Maps API v3] The distance between two points,a user-defined route?

2011-11-27 Thread Chris Broadfoot
I'm not sure what you're trying to achieve, could you use the computeLength function in the geometry library? http://code.google.com/apis/maps/documentation/javascript/reference.html#geometry Chris -- http://twitter.com/broady On Mon, Nov 28, 2011 at 1:42 PM, xinyun_0...@126.com