[Google Maps API v3] Re: GMapsV3 - lots of MarkerImages slow down everything

2011-10-14 Thread Martin™
I've replaced scaled size with null in my MarkerImage constructor and am now seeing canvas elements (using Firebug) instead of img elements. Marker click events all working fine too - touch wood. The map definitely seems smoother to pan and zoom. Martin. On Oct 14, 3:02 pm, "geocode...@gmail.c

[Google Maps API v3] Re: Add EventListner to marker, which are plotted by KML

2011-10-14 Thread Garthan
On Oct 14, 2:39 pm, "geocode...@gmail.com" wrote: > On Oct 13, 4:46 am, Chintan Shah wrote: > > > Can we add EventListner to the Marker, which are plotted by the kml ? > > If you are using KmlLayer you and you are listening for clicks you can > use a click event listener on the KmlLayer, which

[Google Maps API v3] Re: Determining and Using new marker positions

2011-10-14 Thread Radina
Glen: If you just want to see new coordinates, you can try: var infowindow = new google.maps.InfoWindow(); google.maps.event.addListener(marker1, 'click', function() { var latitude = marker1.position.lat(); infowindow.setContent("lat = " + latitude + "" +

[Google Maps API v3] Re: GMapsV3 - lots of MarkerImages slow down everything

2011-10-14 Thread Berry Ratliff
Please ignore my previous two posts. It can be done without an extra CANVAS element. I have revised the simple demo: -- 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-js-api-v3@go

[Google Maps API v3] Re: TOS question

2011-10-14 Thread Rossko
> If I implement google maps and one of the visitors to my site clicks on a > location/business can I store that choice for that visitor in my DB? Store what, exactly? What will be important is where the information that you intend to store is derived from. The lat/long of a user's click, some b

[Google Maps API v3] Re: Search always goes to Pacific Ocean

2011-10-14 Thread geocode...@gmail.com
On Oct 14, 3:07 pm, "geocode...@gmail.com" wrote: > On Oct 14, 2:15 pm, BruceB wrote: > > > There's something wrong with your PHP search app (phpsqlsearch_genxml.php), > > because it's returning an empty XML document.  So in your callback function > > the bounds object is initialized but never se

[Google Maps API v3] Re: infowindow behavior...

2011-10-14 Thread geocode...@gmail.com
On Oct 14, 8:21 am, "geocode...@gmail.com" wrote: > On Oct 14, 7:25 am, felixweb wrote: > > > No help? I'm getting disperate! > > your original message: > On Oct 13, 6:58 am, felixweb wrote: > > > Hello, > > > i'm trying to build a map for my website and i have a behavior i am not able > > to so

[Google Maps API v3] Re: GMapsV3 - lots of MarkerImages slow down everything

2011-10-14 Thread Berry Ratliff
I have built a simple demo: http://home.provide.net/~bratliff/rescale/ -- 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-js-api-v3@googlegroups.com. To unsubscribe from this gr

[Google Maps API v3] Re: Search always goes to Pacific Ocean

2011-10-14 Thread geocode...@gmail.com
On Oct 14, 2:15 pm, BruceB wrote: > There's something wrong with your PHP search app (phpsqlsearch_genxml.php), > because it's returning an empty XML document.  So in your callback function > the bounds object is initialized but never set with any other values, so > it's defaulting to the Pacific

[Google Maps API v3] Re: infowindow behavior...

2011-10-14 Thread alexandroid
Well you are using riga[2] and its value is the same at the time when all geocoder callbacks are called. I think you may want to try to add "var" to riga declaration, i.e. var riga = listah[i].split(';'); Use Firebug in Chrome or Firefox to set breakpoints in your javascript and you would be able

[Google Maps API v3] Re: Search always goes to Pacific Ocean

2011-10-14 Thread BruceB
There's something wrong with your PHP search app (phpsqlsearch_genxml.php), because it's returning an empty XML document. So in your callback function the bounds object is initialized but never set with any other values, so it's defaulting to the Pacific Ocean. For example, a search for "texas"

[Google Maps API v3] Search always goes to Pacific Ocean

2011-10-14 Thread Am
Hi, I'm having trouble getting the sample code from the store locator page to work. I copied the HTML code from this page: http://gmaps-samples-v3.googlecode.com/svn/trunk/articles/phpsqlsearch/phpsqlsearch_map.html, and uploaded it to my own page. Every search I try takes me to the middle of

[Google Maps API v3] Re: ArcGIS link dynamic layers misalignment in Firefox

2011-10-14 Thread Brook
Works great! Thanks for updating the library. It's nice to use ArcGIS server data from the google maps API! -- 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/m

[Google Maps API v3] How to change the font for the Directions display

2011-10-14 Thread ammu
Hi, I have implemented the directions in google maps v3. I would like to know if there is a way to change the font of the steps in the directions. Thanks in advance. -- You received this message because you are subscribed to the Google Groups "Google Maps JavaScript API v3" group. To post to t

[Google Maps API v3] Re: How-to Save Polygon Overlays to PNG or JPG format

2011-10-14 Thread Berry Ratliff
On Oct 14, 6:19 pm, 7heroes wrote: > oh I see, this is a great information, but in your case, 256 is half of > circumference, am I correct? Yes. It is done to shift the origin from the Greenwich Meridian to the International Date Line. The distance is half the circumference of the Earth in pixe

[Google Maps API v3] Re: Add EventListner to marker, which are plotted by KML

2011-10-14 Thread geocode...@gmail.com
On Oct 13, 4:46 am, Chintan Shah wrote: > Can we add EventListner to the Marker, which are plotted by the kml ? If you are using KmlLayer you and you are listening for clicks you can use a click event listener on the KmlLayer, which will give you a KmlMouseEvent: http://code.google.com/apis/maps

[Google Maps API v3] Re: Google Map Search

2011-10-14 Thread Esa
Of course I meant that: You can adjust the request and you can filter the _response_. -- 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-js-api-v3@googlegroups.com. To unsubscribe f

[Google Maps API v3] Re: Google Map Search

2011-10-14 Thread Esa
A very interesting problem. I been succesfully limiting geocoding for a single country, but multiple countries hmmm... You can adjust the request and you can filter the request. However your example of "Boston" returns the six first "Bostons" in the World, all of them in US. So you cannot get anyt

[Google Maps API v3] Re: How-to Save Polygon Overlays to PNG or JPG format

2011-10-14 Thread 7heroes
oh I see, this is a great information, but in your case, 256 is half of circumference, am I correct? -- 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/goog

[Google Maps API v3] Re: GMapsV3 - lots of MarkerImages slow down everything

2011-10-14 Thread Berry Ratliff
On Oct 14, 5:36 am, Ben Appleton wrote: > No, rather the marker scaling triggers the slower DOM markers. Why not use "drawImage" to rescale the icon into an off-screen CANVAS element which can be defined to be a fill pattern. It avoids the use of on-screen IMG elements which the browser has to r

[Google Maps API v3] Re: How-to Save Polygon Overlays to PNG or JPG format

2011-10-14 Thread Berry Ratliff
On Oct 14, 5:57 pm, 7heroes wrote: > Hi Berry, I'm very curious that why did you use the magic number :) 256 but > not other number such as 320 or 640? I assume number 20 is the max zoom > level from Google Map, please correct me if I'm wrong. > > Thanks, > > Sam. > > PS: I noticed that you update

[Google Maps API v3] Re: Problems with title of icons?

2011-10-14 Thread 3D-kreativ
OK, but there is no solution? On 14 Okt, 18:45, MymsMan wrote: > This has been discussed recently and acknowledged by > Googlehttps://groups.google.com/d/topic/google-maps-js-api-v3/RVDhzc43To0/d... -- You received this message because you are subscribed to the Google Groups "Google Maps

[Google Maps API v3] ie9 geolocation support

2011-10-14 Thread steve
It seems IE9 can not support geolocation. Anyone has any solution or suggestion? Thanks. Steve -- 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-js-api-v3@googlegroups.com. To uns

[Google Maps API v3] Re: How-to Save Polygon Overlays to PNG or JPG format

2011-10-14 Thread 7heroes
Hi Berry, I'm very curious that why did you use the magic number :) 256 but not other number such as 320 or 640? I assume number 20 is the max zoom level from Google Map, please correct me if I'm wrong. Thanks, Sam. PS: I noticed that you updated your demo, good job! -- You received this mes

[Google Maps API v3] Re: Problems with title of icons?

2011-10-14 Thread MymsMan
This has been discussed recently and acknowledged by Google https://groups.google.com/d/topic/google-maps-js-api-v3/RVDhzc43To0/discussion -- 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] Problems with title of icons?

2011-10-14 Thread 3D-kreativ
Hi, The title of icons doesn't work well i Firefox, but fine in Chrome an other!? When the mouse pointer is above the icon a small box with a name pops up. But not all in Firefox. But if I move the pointer away and point again at the same icon it works. It feels very random? Why this and could the

[Google Maps API v3] TOS question

2011-10-14 Thread justin savage
I looked over the TOS this morning but have a headache. I thought it would be easier to ask. If I implement google maps and one of the visitors to my site clicks on a location/business can I store that choice for that visitor in my DB? I'm not charging the visitor to access my site but could ev

[Google Maps API v3] Multiple Locations based on SmartInfoWindow by Pamela Fox

2011-10-14 Thread Tim Vaughan
Hi All, I am having a bit of an issue with the some code that is based on SmartInfoWindow by Pamela Fox. Hopefully someone will be able to help here? Code can be found here at http://www.frogboxmarketing.com/code/ I have data.js working in the background supplying the long/lat data. How do I

[Google Maps API v3] Choosing an autocomplete suggestion vs. submitting form

2011-10-14 Thread Jim Norris
Right now it appears that choosing a suggestion from the google.maps.places.Autocomplete popup by pressing the Enter key causes the input's form to be submitted. Is there a way to disable this behavior, or at least to distinguish between an Enter key press when the suggestion list is visible and wh

Re: [Google Maps API v3] Re: CSS font and line-height?

2011-10-14 Thread MymsMan
http://jsfiddle.net/qQJYW/ On Friday, 14 October 2011 10:57:03 UTC+1, THE_AI wrote: > > @MymsMan > > could you make another jsfiddle where the text is overflowing the bubble > size? > -- You received this message because you are subscribed to the Google Groups "Google Maps JavaScript API v3"

[Google Maps API v3] Re: infowindow behavior...

2011-10-14 Thread Rossko
> http://www.felixweb.it/italia2011f.html Your variable 'map' is undeclared, may give different results in different browsers (doesn't work at all in IE for me) Your code geocoder.geocode( { 'address': luogo}, function(results, status) { data = riga[2]; Your variabl

[Google Maps API v3] Re: infowindow behavior...

2011-10-14 Thread geocode...@gmail.com
On Oct 14, 7:25 am, felixweb wrote: > No help? I'm getting disperate! your original message: On Oct 13, 6:58 am, felixweb wrote: > Hello, > > i'm trying to build a map for my website and i have a behavior i am not able > to solve... I don't know if this is due to my limited knowledge of > javasc

[Google Maps API v3] Re: Display only certain KML features by attributes

2011-10-14 Thread Gareth Mann
Webrider, I am adapting and playing with your excellent code for parsing kmls with very large polygons. I have a couple of questions for you: 1) I have noticed that for large polygons (i.e. ones with over 700 co-ordinate pairs) Mozilla FF cannot plot them correctly using your code. It is as if

[Google Maps API v3] Re: infowindow behavior...

2011-10-14 Thread felixweb
No help? I'm getting disperate! -- 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/-/sWObP82vik0J. To post to this group, send email to

[Google Maps API v3] Re: sidebar highlighting issues

2011-10-14 Thread Green
Ahhh... (slap my forehead!) ... Thank you! -- 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-js-api-v3@googlegroups.com. To unsubscribe from this group, send email to google-maps

[Google Maps API v3] Re: GMapsV3 - lots of MarkerImages slow down everything

2011-10-14 Thread geocode...@gmail.com
On Oct 14, 1:12 am, Martin™ wrote: > I agree. > > I tend to use the full MarkerImage constructor and have been > specifying a scaled size equal to the original icon size. > This means i've unknowingingly been disabling any canvas optimisations > for my maps! > > Defintely worth a mention in the do

Re: [Google Maps API v3] Re: sidebar highlighting issues

2011-10-14 Thread Andrew Leach
On 14 October 2011 14:38, Green wrote: > Now I would like to have one of the marker's infowindow open on page > load. > > I have tried adding code without success: > infowindow.open(map,markers[4]); Why not just do what your click does? myclick(4); -- You received this message because you are

[Google Maps API v3] Re: sidebar highlighting issues

2011-10-14 Thread Green
Now I would like to have one of the marker's infowindow open on page load. I have tried adding code without success: infowindow.open(map,markers[4]); Please take a look at example: http://www.newton.ac.uk/tmp/stagre01/test/ Can you help me with the correct code please? -- You received this mes

[Google Maps API v3] Re: how to close InfoWindow when using FusionTableMouseEvent

2011-10-14 Thread Sandeep
I got it! Thank you, Sandeep -- 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/-/X8-QHY3anxIJ. To post to this group, send email to

Re: [Google Maps API v3] Re: Google Street View Update

2011-10-14 Thread Barry Hunter
Pretty sure jesar is referring to the VERY new WebGL streetview that Google Maps website itself can use http://google-latlong.blogspot.com/2011/10/step-inside-map-with-google-mapsgl.html (without webgl, google maps website uses a version most similar to the API v2 version - using flash) - so in

[Google Maps API v3] Re: charges for using v3 map on website

2011-10-14 Thread davie strachan
Hi I think that if your map page is generating over 25,000 hits it must be a commercial site and and Google is entitled to something. If you limit your map to a "Map" page i wouldn't think you would hit 25,000 I have seen sites with multiple maps on one page (I think it was mainly property or hotel

[Google Maps API v3] Re: Google Street View Update

2011-10-14 Thread en4ce
your wrong, you are using the most up to date version of street view available in the maps api v3, maps.google.com uses maps api v2 but highly customized On 14 Okt., 10:13, jesar james wrote: > I believe, I'm currently using the old version of Google Street View > since the features of it are sti

Re: [Google Maps API v3] Re: CSS font and line-height?

2011-10-14 Thread THE_AI
@MymsMan could you make another jsfiddle where the text is overflowing the bubble size? -- 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-

[Google Maps API v3] Re: Correct address format to get the most accurate results from google GeoCoding API

2011-10-14 Thread Rossko
> Is there any standard format to supply the address string to Google > GeoCoding API to get the most accurate results on map. No, there is no standard address format around the world You may able to narrow down results with viewport biasing -- You received this message because you are subscrib

[Google Maps API v3] Google Street View Update

2011-10-14 Thread jesar james
I believe, I'm currently using the old version of Google Street View since the features of it are still limited: http://dev.hotelsnearplace.com/singapore-flyer-41797.htm How can I turn it into the new, fully featured Google Street View? http://maps.google.com/maps?q=1.289487,103.862846&laye

[Google Maps API v3] Re: GMapsV3 - lots of MarkerImages slow down everything

2011-10-14 Thread Martin™
I agree. I tend to use the full MarkerImage constructor and have been specifying a scaled size equal to the original icon size. This means i've unknowingingly been disabling any canvas optimisations for my maps! Defintely worth a mention in the documentation i say. Can Ben confirm that passing n

[Google Maps API v3] Re: GMapsV3 - lots of MarkerImages slow down everything

2011-10-14 Thread Kristóf Kótai
This is unbelievable... I removed the scaling (which doesn't even happen because the original size is the same as the new size): http://www.viewranger.com/kristof/p3.html And it is really fast... This should definitely be mentioned in the documentation! This would help many people a lot! Thanks,

[Google Maps API v3] Re: DirectionsService not working on street view

2011-10-14 Thread Gianpiero Venditti
Anyone has any idea or suggestion about this? -- 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/-/546W3ZH74OwJ. To post to this group,

[Google Maps API v3] Re: Won't find the town "Orange" in France?

2011-10-14 Thread sgiddings
Heads up, its me again... I've done some further testing : For a geocode request like this - var Geocoder = new google.maps.Geocoder(); GeoCoder.geocode( {'address' : "Orange, France", 'region' : "FR"}, ProcessGeoCode); I get the following result list : France Service Rd, Bay Lake, Floride, États

[Google Maps API v3] Re: Won't find the town "Orange" in France?

2011-10-14 Thread sgiddings
Hi Chris, Posted this yesterday, don't know what happened but it disappeared. Can we have a link to the problem record so that we can track the resolution ? For those of us who do not use the Places Autocomplete, what can you suggest ? I find it strange that when geocode requests are region bias