[Google Maps API v3] Re: When will Google publish the next generation of Google Maps API ? It seems that the V3 hasn't been changed for a long time.

2011-10-24 Thread Pil
As I said also long time ago: Feature requests and bug reports are barely recognized. A few of them will be taken randomly and as they please - but never systematically. But don't worry, I would do the same if I were you. ;-) On Oct 25, 12:57 am, "Enoch Lau (Google Employee)" wrote: > If the

[Google Maps API v3] Google Map Route: Single origin with multiple destinations

2011-10-24 Thread Webista
Is there any way or functions in Google map that allows you to have a single origin with multiple directions? e.g. A --> B A --> C A --> D So far what I did was this, using waypoints: A --> B --> A --> C --> A --> D But the problem with that solution is that, every destination goes back to the o

[Google Maps API v3] Re: Why use XML when drawing markers from a database?

2011-10-24 Thread xelawho
some more explanation behind google's thinking here: http://code.google.com/apis/maps/articles/phpsqlajax_v3.html#outputxml -- 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-

[Google Maps API v3] Re: When will Google publish the next generation of Google Maps API ? It seems that the V3 hasn't been changed for a long time.

2011-10-24 Thread pbuckner
For example, Baidu has polyline style "solid" and "dashed"we've been asking for dashed polylines since at least 2009. (Yes, there's already a feature request for that.) -- You received this message because you are subscribed to the Google Groups "Google Maps JavaScript API v3" group. To post

[Google Maps API v3] Re: Waypoint overlays

2011-10-24 Thread geocode...@gmail.com
On Oct 24, 2:38 pm, Adriano Manocchia wrote: > I'm using Google Maps to provide walking directions with multiple stops, but > I can't seem to find any way to customize the popup overlay on each stop. It > just shows the address I've provided for each waypoint. Is there any way to > change that? Y

[Google Maps API v3] Re: Add Sidebar to v3

2011-10-24 Thread geocode...@gmail.com
On Oct 24, 2:22 pm, Am wrote: > Thank you for the advice. I believe I have everything defined, but came > across other issues. I'm still getting an undefined message on top of the > properties that do show up. If you search for San Fransisco, 3 properties > are listed in the sidebar, along with th

[Google Maps API v3] Re: Question from non-developer

2011-10-24 Thread Radina
var myOptions = { zoom: 9, center: myCenter, mapTypeControl: false, mapTypeId: G.MapTypeId.ROADMAP, useStaticMap: false, streetViewControl: false, styles: [ { stylers: [ { visibility: "simplified" }, { hue: "#00eeff" },

[Google Maps API v3] Re: When will Google publish the next generation of Google Maps API ? It seems that the V3 hasn't been changed for a long time.

2011-10-24 Thread Enoch Lau (Google Employee)
If there are features in the Baidu Maps API that you'd like to see in the Google Maps JavaScript API, please don't hesitate to file feature requests for them: http://code.google.com/p/gmaps-api-issues/issues/list Enoch -- You received this message because you are subscribed to the Google Group

[Google Maps API v3] Waypoint overlays

2011-10-24 Thread Adriano Manocchia
I'm using Google Maps to provide walking directions with multiple stops, but I can't seem to find any way to customize the popup overlay on each stop. It just shows the address I've provided for each waypoint. Is there any way to change that? -- You received this message because you are subscr

[Google Maps API v3] Question from non-developer

2011-10-24 Thread Tal Shuv
Hello, if anyone can help, I would really appreciate it. I'm trying to customize the colors of the map my WP plugin uses. function init_basic_map(lat,lng,marker_text) { store_wpress_map = new google.maps.Map(document.getElementById("map"), { center: new google.maps.LatLng(lat, lng), zoom: Store_w

[Google Maps API v3] Re: Add Sidebar to v3

2011-10-24 Thread Am
Thank you for the advice. I believe I have everything defined, but came across other issues. I'm still getting an undefined message on top of the properties that do show up. If you search for San Fransisco, 3 properties are listed in the sidebar, along with the undefined message. I am aware of t

[Google Maps API v3] Re: Add Sidebar to v3

2011-10-24 Thread geocode...@gmail.com
On Oct 24, 11:45 am, Rossko wrote: > > When I search for properties that are in my database, I get undefined in the > > sidebar, null(1.2) in the drop down, and the map doesn't move. I have > > attached my code. Any help is appreciated. > > Your phpsqlsearch_genxml.php returns an invalid XML file

[Google Maps API v3] When will Google publish the next generation of Google Maps API ? It seems that the V3 hasn't been changed for a long time.

2011-10-24 Thread 王晓明
I'm a deadly fan of Google Maps JavaScript API from China.However,Google has done nothing when Baidu publish its more powerful BMaps 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

[Google Maps API v3] Re: How to use google maps java script apiv3 in flash

2011-10-24 Thread Rossko
> I would like develop a offboard navigation solution to be used in cars See terms of use http://code.google.com/apis/maps/terms.html " 10.2(c) (c) No Navigation, Autonomous Vehicle Control, or Enterprise Applications... " -- You received this message because you are subscribed to the Google Gro

[Google Maps API v3] Re: Glitches in UI, grey lines and infowindow issues

2011-10-24 Thread Rossko
> Shrunk zoom control is showing white and blue line. This line in your CSS is the problem .entry-content img, .comment-content img, .widget img {max-width: 97.5%;} > I have read that adding a css > #map_canvas img { max-width: none; } > may fix it, but this hasn't done anything It's along the r

[Google Maps API v3] Re: Why use XML when drawing markers from a database?

2011-10-24 Thread Rossko
> Googles method: SQL query > XML > Markers (each step requires a loop) > > Simple method: SQL query > Markers (one less loop and no XML) If the user then goes on to search around another location, the AJAX method can be used to fetch and display new data without reloading the page. The webpage it

[Google Maps API v3] Re: Add Sidebar to v3

2011-10-24 Thread Rossko
> When I search for properties that are in my database, I get undefined in the > sidebar, null(1.2) in the drop down, and the map doesn't move. I have > attached my code. Any help is appreciated. Your phpsqlsearch_genxml.php returns an invalid XML file if it doesn't find any content for a given se

Re: [Google Maps API v3] Why use XML when drawing markers from a database?

2011-10-24 Thread Carlos Montelongo
My experience on this topic is: When you use a SQL Query to draw markers in a JSP or HTML or maybe PHP, you are using Client's resources to draw the map. When you use KML or XML to draw markers, GoogleMaps do the work. Maybe some technical stuff is ommited, but that's how it works. Regards, Carl

[Google Maps API v3] Re: Add Sidebar to v3

2011-10-24 Thread Am
My page is located here: http://www.rentalmatch101.com.php5-20.dfw1-1.websitetestlink.com/googlemap.php Thank you for your help -- 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://g

Re: [Google Maps API v3] Returning LatLang from a point.

2011-10-24 Thread Barry Hunter
var weather = getWeather(myRoute.steps[i].start_location.toUrlValue()); See http://code.google.com/apis/maps/documentation/javascript/reference.html#DirectionsStep (its start_location not start_point) And http://code.google.com/apis/maps/documentation/javascript/reference.html#LatLng star

[Google Maps API v3] Re: Any Replacement for GXml.parse method in V3

2011-10-24 Thread geocode...@gmail.com
On Oct 24, 7:44 am, prakash hari wrote: > Hi, > > I am moving my code from V2 to V3. But i am not finding any method > relavent to GXml.parse(data). Please find the following code and > Provide some Pointers how to replace this code for V3. Did you see this in the "Samples" in the documentation?

[Google Maps API v3] Re: Unable to access an unlisted Fusion Table in Fusion Layer

2011-10-24 Thread Jon Smith
Hi Guys, Thanks Rob and Larry for your replies. Yep, the map works for me now too. However it turns out that access to the table has been a bit erratic with red "could not fetch data. Try reloading the page" when I access it directly from Docs. Just my luck that my first FusionOverlay was accessin

[Google Maps API v3] Glitches in UI, grey lines and infowindow issues

2011-10-24 Thread thydzik
I have visual issues with my google maps v3 maps. Shrunk zoom control is showing white and blue line. Large grey lines over the map Info windows are malformed see it all here http://thydzik.info/ javascript here http://thydzik.info/wp-content/plugins/thydzikgooglemap/thydzik-google-map.js I hav

[Google Maps API v3] Returning LatLang from a point.

2011-10-24 Thread Kruug
I am trying to pull the latLang data out of the geocode from the Maps API result. I am currently unable to do this, and I'm not sure if it's because I don't know enough JavaScript, or if there's something in the Google API that I'm missing. Any assistance would be appreciated. Link: http://e

[Google Maps API v3] Any Replacement for GXml.parse method in V3

2011-10-24 Thread prakash hari
Hi, I am moving my code from V2 to V3. But i am not finding any method relavent to GXml.parse(data). Please find the following code and Provide some Pointers how to replace this code for V3. if (this.svgUrl_.substring(this.svgUrl_.length-3)=="svg") { // create new svg element and

[Google Maps API v3] Why use XML when drawing markers from a database?

2011-10-24 Thread AlB
I am trying to do the task described in the subject (plot markers on a map based upon an SQL database query) Why in all the examples does Google recommend using an XML intermediary? The example (http://code.google.com/apis/maps/articles/phpsqlsearch_v3.html) says that if Javascript/PHP is used

[Google Maps API v3] Adjust size of default marker

2011-10-24 Thread NA
Hi, I couldn't figure out how to adjust the size of the default marker. I see how to adjust the size of a customer marker, which requires a link to the image, but I wanted to use the default markers. Is there a way to do this? thanks, -- You received this message because you are subscribed

[Google Maps API v3] How to use google maps java script apiv3 in flash

2011-10-24 Thread srinivas choudary
Hi all, I would like develop a offboard navigation solution to be used in cars but their exsiting sysytem is built in flash cs3 so is there any chance i can use flash cs3 as front end but use javascript to render google maps and control map through flash front end. Thanks you, Regards, Srini

[Google Maps API v3] Re: Issues loading Maps JS API through firewall

2011-10-24 Thread wwwald
They're using the latest Chrome version, so that shouldn't be the problem. I'm pretty convinced by now that their firewall/proxy does some content filtering which messes up the Maps API when loaded. Unfortunately, their IT crew has researched the problem, noticed the issue and then decided to close

[Google Maps API v3] Re: Add Sidebar to v3

2011-10-24 Thread Rossko
> I have > attached my code. I can't debug that because your database is not available via http://google-maps-js-api-v3.googlegroups.com/ Post a link to your map for more help. -- You received this message because you are subscribed to the Google Groups "Google Maps JavaScript API v3" group. To

[Google Maps API v3] Re: Add Sidebar to v3

2011-10-24 Thread Am
I followed the advice here: http://groups.google.com/group/google-maps-js-api-v3/browse_thread/thread/8cbba324e113df53/e2be32527134110e?lnk=gst&q=store+locator+sidebar#e2be32527134110e When I search for properties that are in my database, I get undefined in the sidebar, null(1.2) in the drop down

[Google Maps API v3] Re: Unable to access an unlisted Fusion Table in Fusion Layer

2011-10-24 Thread geocode...@gmail.com
On Oct 24, 6:07 am, "geocode...@gmail.com" wrote: > On Oct 23, 9:12 am, Jon Smith wrote: > > > Hi, > > > I am trying to display an unlisted fusion table in a Javascript fusion table > > layer. If I set the fusion table to public then it works, but as soon as I > > set it back to unlisted it stops

[Google Maps API v3] Re: Unable to access an unlisted Fusion Table in Fusion Layer

2011-10-24 Thread geocode...@gmail.com
On Oct 23, 9:12 am, Jon Smith wrote: > Hi, > > I am trying to display an unlisted fusion table in a Javascript fusion table > layer. If I set the fusion table to public then it works, but as soon as I > set it back to unlisted it stops working. The docs say it should work, so > what am I doing it

[Google Maps API v3] Re: best way to get airports given a lat/long position given inaccurate Places API results

2011-10-24 Thread davie strachan
Hi If you are looking for airports in Japan Geonames has the location of 14736 (Feature Code AIRP). It would be advisable to create your own database rather than using geocoding Regards Davie On Oct 23, 4:13 am, mighty wrote: > I am experimenting with the Google Maps V3 api and I am a little >

[Google Maps API v3] Re: Unable to access an unlisted Fusion Table in Fusion Layer

2011-10-24 Thread Satpack Travel
Hi, There are 3 visibility settings. Public and unlisted should work, but private will not. This is a condition Google put on using FT / Maps API (that they are technically 'public'), I think. You need the Premium API maps package to show private data, I think. But are you saying it doesn't work

[Google Maps API v3] Re: Printing issue on Internet Explorer only

2011-10-24 Thread jarreweb
on print preview, it's always ok it's only on the printed paper there is the problem, even if i'm waiting for full loading On 21 oct, 16:18, Joseph Elfelt wrote: > Yes - looks like a timing issue > > I opened your page with IE8 (XP SP3) and cancelled the print dialog > popup. > After the map full