[Google Maps API v3] function not working (see Picture)

2010-03-03 Thread vincent14
Hello have a look a at the picture! http://www.weltmeer.ch/divelog/screenshot.70.jpg This is not working in GoogleMap V3 have a nice day vincent -- 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

[Google Maps API v3] Re: how to open InfoWindows without markers?

2010-03-03 Thread Marcelo
See here: http://code.google.com/apis/maps/documentation/v3/examples/map-coordinates.html -- Marcelo - http://maps.forum.nu -- On Mar 4, 2:10 am, José Luis wrote: > Hi, > > In the documentation it is said that InfoWindows may be attached to > either Marker objects or on the map itself at a spec

[Google Maps API v3] Re: Geocoder tools now in the Demo Gallery

2010-03-03 Thread vincent14
Hello Thor thanks to share this tool! It is what i was looking for, ... almost! But the version V2 is not working with IE6.0 and in the V3 i wonder how it works if you have a Select Option construct to select countries. At this time i can't make them talk to gether http://www.weltmeer.ch/divelog

[Google Maps API v3] Re: Using Maps in CMS

2010-03-03 Thread pete
Hi there, No problem. That variable is a failsafe for the else statement, if you don't want the back-up, feel free to remove it. It was just an example of being able to provide some type of fallback, what you do in that else statement is up to you. Pete On Mar 4, 1:50 pm, stacef wrote: > Hey-

[Google Maps API v3] Resizing the content inside an InfoWindow overlay.

2010-03-03 Thread Mathew Byrne
Is there a way to get an InfoWindow object to recalculate its size and position if it's contents are altered? The specific use case I have is that an image is being dynamically loaded into an InfoWindow. I do not know the specific image dimensions until after the image has loaded into the browser.

[Google Maps API v3] Geocoder tools now in the Demo Gallery

2010-03-03 Thread Thor (Google Employee)
When supporting Maps API Premier customers, we often see questions about problems geocoding a specific address. To help visualise and debug such problems I wrote a geocoding tool for both v2 and v3 which we use internally. They simply display all of the results for a query on a map, with bounding b

[Google Maps API v3] Re: Using Maps in CMS

2010-03-03 Thread stacef
Hey- Thanks for the help - that seem to have done the trick! And thanks, too, for the tip on providing a default map if the geocode is unsuccessful. But for the sake of argument, assuming I didn't have that back up, I'm confused about the use or need for the var latlng = new google.map

[Google Maps API v3] how to open InfoWindows without markers?

2010-03-03 Thread José Luis
Hi, In the documentation it is said that InfoWindows may be attached to either Marker objects or on the map itself at a specified LatLng. How can I create one in the latter way? I tried open(map, latLng) but it doesn't work. -- You received this message because you are subscribed to the Google G

[Google Maps API v3] Re: reverse geocoding fails with ZERO_RESULTS

2010-03-03 Thread José Luis
I found the culprit: >           var location = new google.maps.LatLng(event.latLng); >           geocoder.geocode({'latLng': location}, function(results, status) { event.latLng is already a LatLng, and so the first line is wrong. event.latLng should be used in place of location. -- You receiv

[Google Maps API v3] reverse geocoding fails with ZERO_RESULTS

2010-03-03 Thread José Luis
Hi, I'm trying to use reverse geocoding to show a popup window with the clicked address on the map. To this end I have written this code. var infowindow = new google.maps.InfoWindow(); var geocoder = new google.maps.Geocoder(); google.maps.event.addListener(map, 'click', function(e

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

2010-03-03 Thread Luke (Google Employee)
Issue 1801 will actually be fixed in the next release. Sorry for any confusion. Luke On Mar 3, 11:43 am, "Luke (Google Employee)" wrote: > Hey everyone! > > We've recently pushed out a new version of the API.  See the list of > changes > below:http://code.google.com/p/gmaps-api-issues/wiki/Jav

[Google Maps API v3] Re: Radius and markers

2010-03-03 Thread pete
There are multiple ways this can be achieved, however if you provide a link, we could provide you with a more efficient and relative answer (in context of your application) In theory, this class is the key: http://code.google.com/apis/maps/documentation/v3/reference.html#LatLngBounds On Mar 4, 2:

[Google Maps API v3] Re: Using Maps in CMS

2010-03-03 Thread pete
Hi there, Remove "center:latlng" from the "myOptions" variable. As a backup incase the geocode is unsuccessful, set the map center to your latlng like so else { alert("Geocode was not successful for the following reason: " + status); map.setCenter(latlng); } That's it. Pete On Mar 4, 3:54 am,

[Google Maps API v3] Re: Map z-index vs other page elements

2010-03-03 Thread pete
Using firebug you can see that the mapDiv only has a z-index of 0. Wih this in mind, you can set your z-index to 1 and it will have the same effect as 2000 (tested) On Mar 4, 5:03 am, Jeffrey Yasskin wrote: > Onhttp://sundaystreetssf.com/?page_id=676I noticed that when you > hover over the "Eve

[Google Maps API v3] Re: Map Scroll Event

2010-03-03 Thread Marcelo
On Mar 3, 7:24 pm, mtycholaz wrote: > Can't do that. This application is an internal company project and is > not setup with access to the outside world. Then contact your Google Premier representative for technical support. It is included in the price you paid for your Premier license. -- Marc

[Google Maps API v3] Google maps not loading tiles correctly (randomly)

2010-03-03 Thread Yanko Hernández
Google Maps V3 is not loading map tiles correctly, showing the message "Sorry, we have no imagery here”. This is happening for 3 or 4 days already. I'm behind a really slow link to the internet, and lately this is what I'm getting: http://picasaweb.google.com/lh/photo/lMwnbEx98qNc0EslVFPI9w?feat=d

[Google Maps API v3] 2010/03/03: New Release

2010-03-03 Thread Luke (Google Employee)
Hey everyone! We've recently pushed out a new version of the API. See the list of changes below: http://code.google.com/p/gmaps-api-issues/wiki/JavascriptMapsAPIv3Changelog Changes Issues: Issue 2136: MarkerImage properties obfuscated. Issue 1801: zIndex can now be specified on polygon and polyl

[Google Maps API v3] Using Maps in CMS

2010-03-03 Thread stacef
I'm trying to use maps in my CMS but I'm very new to the Google Maps API. I'd like the map to load based on a an address geocoded from a PHP variable. I've figured it out in v2 but I'd prefer to do it in v3. Based on the code found in http://code.google.com/apis/ maps/documentation/v3/services.

[Google Maps API v3] Map z-index vs other page elements

2010-03-03 Thread Jeffrey Yasskin
On http://sundaystreetssf.com/?page_id=676 I noticed that when you hover over the "Event Information" menu item to pop up its menu, the menu appeared under the map. I fixed this by adding "#suckerfishnav * {z-index: 2000;}" to the site's style sheet, but I'm wondering: A) Is there a better way to

[Google Maps API v3] Re: Map Scroll Event

2010-03-03 Thread mtycholaz
Can't do that. This application is an internal company project and is not setup with access to the outside world. Basically I need to detect when a map scroll event is fired on an OverlayView, and currently it looks like the map scroll event isn't available for an OverlayView. So... I have an Ov

[Google Maps API v3] Re: A sidebar for simple map who read data from xml/mysql. Anyone help me?

2010-03-03 Thread Marco
The map i use now is at: http://www.corteccia.it/mappa_alberi_notevoli/ The two map i'll hope are: http://www.corteccia.it/wordpress/defEntry/phpsqlinfo_add.html http://www.corteccia.it/wordpress/mappaPamela/phpsqlajax_map_v3.html . With first map an user can add a tree, with the second anyone can

[Google Maps API v3] Re: How do I get markers to only get painted in one 'map section'

2010-03-03 Thread Viktor Eriksson
Prob solved. Had nothing to do with google maps. Other error. On Mar 2, 11:52 am, Viktor Eriksson wrote: > I'm having problems when trying to set the bounds on the map using > fitBounds. > The map centers on the line that 'divides the world' (+-12h line i > guess) > > Here is a prnt scrn describi

[Google Maps API v3] Re: FYI: New Release (2010/03/02)

2010-03-03 Thread bratliff
Apparently it is limited to dial-up users. Trace Route: Tracing route to mt.l.google.com [64.233.169.93] over a maximum of 30 hops: 1 358 ms 359 ms 355 ms max01.provide.net [216.86.65.80] 2 348 ms 349 ms 356 ms hydrogen.sfld.provide.net [216.86.65.

[Google Maps API v3] Radius and markers

2010-03-03 Thread Artur Morka
Hello, Question. I have v3 application it shows about 240 markers which I pull from xml file (on click). Normally it just shows our school's location. What I would like to do is: On click my application gets lat and lng for a click location and then shows markers (from my xml file) which are i

[Google Maps API v3] Re: Initialize Event NOT on Body Tag

2010-03-03 Thread calibanter
I knew it was fuzzy JavaScript thinking. And the solution was so obvious. Just before the closing body tag, this: initialize(); And everything acts nicely. Thank you for your time and help. On Mar 3, 3:46 am, Marcelo wrote: > On Mar 3, 4:39 am, calibanter wrote: > > > > > So what other

[Google Maps API v3] Re: Layout messed up for controls in IE with STRICT doctype

2010-03-03 Thread Anton Snippen
http://snippen.eu/Brandsma/Combrailles - Copy.php http://snippen.eu/Brandsma/Combrailles.php The first declares a doctype and lines my page up as I meant it to be but doesn't display a map. Tried about every doctype available but none will show up the map (click 'Plattegrond' on the right). In the

[Google Maps API v3] Re: Show the map diferent in Iphone, android or web browser

2010-03-03 Thread DevAPI
Fine its work great! thanks a lot! On Mar 3, 2:08 am, pete wrote: > You need to call your detectBrowser function after the mapdiv is in > the DOM and ready to use. > > Call the function after the mapdiv in your HTML like so: > > > >     detectBrowser(); > > > Pete > > On Mar 3, 10:08 am, DevA

[Google Maps API v3] Google maps not loading, randomly

2010-03-03 Thread Arnout
Hello, We have been experiencing some issues related to the Google Maps V3 service. Various of users reported that they where unable to see the Google Maps that we had integrated in to our application. After closer inspection we where able to reproduce this issue and it seems to be caused a combin

[Google Maps API v3] A sidebar for simple map who read data from xml/mysql. Anyone help me?

2010-03-03 Thread Marco
I use Pamela Fox code for my map. Great, but i like use sidebar and i'm not a programmer. Panic! Anyone can help me? Sorry for my english and thank you. Marco. P.s. The code is: //

[Google Maps API v3] Re: Initialize Event NOT on Body Tag

2010-03-03 Thread Marcelo
On Mar 3, 4:39 am, calibanter wrote: > > So what other JavaScript event can write the map after the body tag is > declared?   window.onload = myLoadFunction; >Someone must have sorted this out by now. Yes, but that's general javascript, and not a Google Maps API question, so it is outside the