[Google Maps API v3] Marker click makes arise Out, Over and then Click

2012-02-09 Thread InfoMail InfoMail
In Google Maps API 3.7, a click on a marker mkes the API to arise additional/wrong Out, Over events before che Click event. Tested on Windows (IE9, Chrome) and Mac (Chrome, Safari). In version 3.6 Google Maps worked as expected (the click eventi is the only one generated). -- You received

[Google Maps API v3] Re: Marker click makes arise Out, Over and then Click

2012-02-09 Thread InfoMail InfoMail
Here's the code, taken from an official Google Maps sample. -- 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 https://groups.google.com/d/msg/google-maps-js-api-v3/-/GFGGn8c7yjEJ. To post

[Google Maps API v3] Resize ImageMarker

2012-02-09 Thread Gogi
Hello I've got a problem with resizing a ImageMarker. I use the following code: var image = new google.maps.MarkerImage(icon, null, null, null, new google.maps.Size(32, 32)); The variable icon stores the path to the icon and the marker is shown on the map, but instead of resizing the image to

[Google Maps API v3] Calculate if marker is inside poligon zone

2012-02-09 Thread Gonzalo Calandria
Hello, i have a question about the polygons and the markers. It is possible to set a polygon in a google map and then, know if a specified latitude and longitude is inside that zone? Thanks! Gonzalo. -- You received this message because you are subscribed to the Google Groups Google Maps

[Google Maps API v3] Custom marker icons get blurry Retina when using V.3.7

2012-02-09 Thread andkjaer
Hi, When adding custom marker icons to the map, they get blurry in version 3.7 - when showing on Retina. It work's in version 3.6 var image = new google.maps.MarkerImage(hat.png, null, null, null, new google.maps.Size(20,30)); var shadow = new google.maps.MarkerImage(shadow.png, null, null, null,

[Google Maps API v3] Itinéraire Multiple

2012-02-09 Thread Essohana Alayi
Salut, j'aimerais pouvoir tracer plusieurs itinéraire sur google map. Actuellement j'arrive à tracer un, mais j'aimerai savoir s'il est possible de pouvoir tracer plusieurs itinéraires en même avec google map? merci bien pour votre aide! -- You received this message because you are

[Google Maps API v3] Instantiate google.maps.DirectionsResult

2012-02-09 Thread Morwust
Hi, I want to do a request to google.maps.DirectionsService() with more than 8 waypoints. Because i can't i do my own javascript function that separate all the points to do some requests. Then I have a google.maps.DirectionsResult array. I want to iterate it and include each

[Google Maps API v3] MarkerClusterer and infowindow

2012-02-09 Thread Ross Ewing
Hello all, I'm having an issue getting a infowindow to open on a marker with the MarkerClusterer Google Map V3 API. Below is my code so far. Can anyone help? script type=text/javascript function initialize() { var center = new google.maps.LatLng(54.385756, -4.465256); var map = new

[Google Maps API v3] Itinéraire avec plusieurs adresses

2012-02-09 Thread Essohana Alayi
J'ai écris une fonction Javascrispt qui permet de tracer un itinéraire à partir d'un ensemble d'adresses mais je suis confronté à un problème. le problème c'est que je ne peux pas dépasser dix (10) adresses. Au secours! la fonction est la suivante: //string en tableau function stringSplit(ch)

[Google Maps API v3] Re: Instantiate google.maps.DirectionsResult

2012-02-09 Thread Marcelo
Note that DirectionsResult does not have a constructor: http://code.google.com/apis/maps/documentation/javascript/reference.html#DirectionsResult It is just a data structure that you get back from the server. You could simply build your own arbitrary object or array, like var myRoutes = []; ...

[Google Maps API v3] Re: Custom marker icons get blurry Retina when using V.3.7

2012-02-09 Thread Marcelo
E . was there a question? ...and what is Retina? -- Marcelo - http://maps.forum.nu -- On Feb 9, 6:54 am, andkjaer andkjaer@gmail.com wrote: Hi, When adding custom marker icons to the map, they get blurry in version 3.7 - when showing on Retina. It work's in version 3.6 var

Re: [Google Maps API v3] Re: Custom marker icons get blurry Retina when using V.3.7

2012-02-09 Thread Andrew Leach
On 9 February 2012 16:38, Marcelo marcelo...@hotmail.com wrote: ...and what is Retina? Probably http://www.apple.com/iphone/features/retina-display.html The issue is something to do with the double-resolution on iPhone 4S, I expect. -- You received this message because you are subscribed to

[Google Maps API v3] Re: Custom marker icons get blurry Retina when using V.3.7

2012-02-09 Thread Marcelo
On Feb 9, 9:02 am, Andrew Leach andrew.leac...@gmail.com wrote: Probablyhttp://www.apple.com/iphone/features/retina-display.html The issue is something to do with the double-resolution on iPhone 4S, I expect. Ah, I see. :-) Well, I am loyal to my Nexus One and Android, so I wouldn't know

[Google Maps API v3] Re: Multiple markers on map using PHP and XML

2012-02-09 Thread geocode...@gmail.com
On Feb 9, 5:26 am, Steve Shacklock steve.shackl...@gmail.com wrote: I'm trying to get a list of properties (that are brought in from an XML file) to be displayed on a map. I've had a search through and nothing has really helped. The problem I'm having is its going through the loop and just

[Google Maps API v3] Re: Calculate if marker is inside poligon zone

2012-02-09 Thread geocode...@gmail.com
On Feb 9, 7:06 am, Gonzalo Calandria gonz...@scincro.com wrote: Hello, i have a question about the polygons and the markers. It is possible to set a polygon in a google map and then, know if a specified latitude and longitude is inside that zone? Yes (point in polygon analysis) Examples:

[Google Maps API v3] Google Map Selection

2012-02-09 Thread pogue5
I have a generic question about google maps. I don't believe this question requires a link of any kind. Is there a keyboard shortcut which one can implement when on a google maps page so that you can select the map without clicking on it? I was searching for google maps keyboard shortcuts and

[Google Maps API v3] Re: MarkerClusterer and infowindow

2012-02-09 Thread pogue5
Are you trying to set up a click event for a single marker? If so I believe the click event you are setting up would be for the last marker object you created in the preceding for loop. -- You received this message because you are subscribed to the Google Groups Google Maps JavaScript API v3

[Google Maps API v3] Re: MarkerClusterer won't cluster!

2012-02-09 Thread pkh80
MarkerCluster still seems broken for newer gmaps. I took a copy of this test script and put it on the zoom level that's broken: http://www.nwkite.com/gmapstest.html Zoom in or out and clusters appear. I have had similar problems while using other datasets and conditions. -- You received this

[Google Maps API v3] Re: MarkerClusterer won't cluster!

2012-02-09 Thread Rossko
http://www.nwkite.com/gmapstest.html Zoom in or out and clusters appear. I don't get a map at all in IE, probably because you load the MarkerClusterer script before the API which it extends. Suprisingly, I see some blue, some yellow clusters under FF browser. -- You received this message

[Google Maps API v3] Re: MarkerClusterer won't cluster!

2012-02-09 Thread pkh80
Ok I changed the load order - I should have mentioned I am testing in Chrome and Firefox. They both exhibit the same result for me. I opened a ticket here: http://code.google.com/p/gmaps-api-issues/issues/detail?id=3914thanks=3914ts=1328816324 Please star the issue if you are having the same

[Google Maps API v3] Re: Google Map Selection

2012-02-09 Thread Rossko
Is there a keyboard shortcut which one can implement when on a google maps page so that you can select the map without clicking on it? That would be a function of the webpage - shift focus to some arbritary element on this page - and not of the map. You might look outside the maps arena. This

[Google Maps API v3] Re: MarkerClusterer won't cluster!

2012-02-09 Thread pogue5
if you set your LatLng to (i,i), how is this supposed generate all the latitudes and longitudes? Just curious... -- 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

[Google Maps API v3] Re: MarkerClusterer won't cluster!

2012-02-09 Thread geocode...@gmail.com
On Feb 9, 11:43 am, pkh80 pholm...@gmail.com wrote: Ok I changed the load order - I should have mentioned I am testing in Chrome and Firefox. They both exhibit the same result for me. I opened a ticket here: http://code.google.com/p/gmaps-api-issues/issues/detail?id=3914thank... That is too

[Google Maps API v3] Re: Resize ImageMarker

2012-02-09 Thread Rossko
var image = new google.maps.MarkerImage(icon, null, null, null, new google.maps.Size(32, 32)); The variable icon stores the path to the icon and the marker is shown on the map, but instead of resizing the image to 32x32 it takes the 32x32 pixels from the upper left corner of the original

[Google Maps API v3] Re: MarkerClusterer won't cluster!

2012-02-09 Thread Rossko
Please star the issue if you are having the same problem. The problem is that you are not using the clusterer correctly. Don't put your markers on the map yourself, as you want the clusterer to manage them for you. -- You received this message because you are subscribed to the Google Groups

Re: [Google Maps API v3] Re: Google Map Selection

2012-02-09 Thread Andrew Leach
On 9 February 2012 19:52, Rossko ros...@culzean.clara.co.uk wrote: This is about v2 API but should give you some ideas http://dev.opera.com/articles/view/keyboard-accessible-google-maps/ Hmm. Most of that article was written (in one form or another) by Pamela Fox. That particularly applies to

[Google Maps API v3] How to continuously auto rotate 360 degrees for street view

2012-02-09 Thread Eric
Is there a way to do this with API V3? -- 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 https://groups.google.com/d/msg/google-maps-js-api-v3/-/_TGUlQaxv6YJ. To post to this group, send

[Google Maps API v3] map feed data to form??

2012-02-09 Thread Dee A. Phipps
What I'm needing to do is have 5 markers on a map when one marker is clicked, have that information go into a form..so, if there is a marker on Miami, San Diego, and Kansas city a visitor clicks on Kansas City, the city/state information is filled into a form field.. I've seen a lot of

[Google Maps API v3] Hiding markers - marker object vs. array holding marker attributes

2012-02-09 Thread Ricktig
I'm having difficulty understanding the relationship between adding a marker to a map object and creating an array/object that holds the marker's attributes. I'm developing a JavaScript page that will allow users to toggle three types of markers. The data is obtained from a getjson jQuery

[Google Maps API v3] Panoramio, slideshow, iframe, KML layer.

2012-02-09 Thread Tord Nilsen
Hi everyone. My first post. I am trying to show a 'slideshow' from Panoramio in an infowindow. But I cant get the hold of it. There must be something I have missed. The infowindows comes from a KML layer, generated by Google Earth. In Google Earth, the Panoramio Slideshow works (add ex. iframe

[Google Maps API v3] Re: Geocoding question

2012-02-09 Thread Ben Hopkins
The thing is that the reporter puts Kennedy Center into the geocode tag, and he doesn't know lat/lng. -- 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

[Google Maps API v3] Re: Geocoding question

2012-02-09 Thread Rossko
The thing is that the reporter puts Kennedy Center into the geocode tag, and he doesn't know lat/lng. Given that there is more than one Kennedy Center in the whole world, can you give any further clues for the geocoder? Note that the geocoder is for converting addresses to lat/longs, it's not

[Google Maps API v3] Re: Panoramio, slideshow, iframe, KML layer.

2012-02-09 Thread Rossko
KmlLayer will sanitise description content http://code.google.com/apis/kml/documentation/kmlelementsinmaps.html I guess it is stripping out iframes as a possible hazard There are client-side KML parsers that don't do that. -- You received this message because you are subscribed to the Google

[Google Maps API v3] Iphone browser map zoom buttons not available

2012-02-09 Thread Adrian CDL
Is it possible to show the zoom buttons in an iphone safari website? The touch zoom is too sensitive and users prefer to see a zoom button. Google uses the zoom buttons on maps.google.com. -- You received this message because you are subscribed to the Google Groups Google Maps JavaScript API

Re: [Google Maps API v3] Accessing Map from other buttons

2012-02-09 Thread Barry Hunter
At the most basic level, make sure you store the created 'Map' object in a global variable - then your other functions can do things with it var map ; function initialize() { map = new google.maps.Map(document.getElementById(map_canvas), }

Re: [Google Maps API v3] Accessing Map from other buttons

2012-02-09 Thread Bradken Webmaster
You my good sir are a campion. That is exactly the starting point I needed. Thank you so much. -- 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

[Google Maps API v3] Re: Panoramio, slideshow, iframe, KML layer.

2012-02-09 Thread Tord Nilsen
Ok, thanks. Hmm, then there is back to Fusion tables. It is not as easy as I though this. All I want is a layer that I easy can change placemarker icons, show a link and show a slideshow from panoramio. Well, back to scratch. -- You received this message because you are subscribed to the Google