[Google Maps API v3] Required Google Map API result on MAP as well as Text Search

2011-02-18 Thread nat
Is it possible to show search result on map as well as textual result below the map on the same page using Google Map API OR Suggest Any other Google API. -- You received this message because you are subscribed to the Google Groups Google Maps JavaScript API v3 group. To post to this group,

[Google Maps API v3] Re: wrong decimals in google.maps.LatLng ?

2011-02-18 Thread Nikolaj Pedersen
Agree. It is bad news to rely on position values to uniquely identify your records. Especially when they are manipulated and converted. Use an id instead. .nikolaj On Feb 18, 7:14 am, Chris Broadfoot c...@google.com wrote: You shouldn't do this. Attach an identifier to your Marker so you can

[Google Maps API v3] Re: wrong decimals in google.maps.LatLng ?

2011-02-18 Thread bgacias
It happens using the version 3.4 but not if you use the version 3.3 On 17 feb, 14:38, bgacias bgac...@gmail.com wrote: I'm loading  the Google Maps JavaScript V3 using:  script.src = http://maps.google.com/maps/api/js? v=3sensor=falseregion=ES; in my  javaScript I have these lines:    

[Google Maps API v3] Mapwindow coordinates?

2011-02-18 Thread Thoern
How is the best way to go about fetching the current mapwindows coordinates? (Xmin, Ymin Xmax, Ymax) -- 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

[Google Maps API v3] Re: Marker lat long from a search result

2011-02-18 Thread Thoern
I use the markers array values var locations= [ ['Some text','something else',57.6845, 11.9148,1], in this case to get the cords for the 1st one. alert(locations[1][2] locations[1][3])); -- You received this message because you are subscribed to the Google Groups Google Maps JavaScript API v3

[Google Maps API v3] Re: Required Google Map API result on MAP as well as Text Search

2011-02-18 Thread Thoern
yes, if you search markers for example you can use whatever in the markers array to be displayes wherever you want in a page using javascript. On 18 Feb, 08:59, nat nvhiw...@gmail.com wrote: Is it possible to show search result on map as well as textual result below the map on the same page

[Google Maps API v3] C# wrapper/library for V3

2011-02-18 Thread nav
Hi all, I am unable to find any C# wrapper/library for V3, and wondering if there is a project underway or have not been started yet? Thanks -- 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 API v3] Re: Required Google Map API result on MAP as well as Text Search

2011-02-18 Thread nat
Can i show as many result as i want Or is there any search result limit.Please suggest the suitable Google API name to achieve this requirement. On Feb 18, 2:27 pm, Thoern turbokil...@gmail.com wrote: yes, if you search markers for example you can use whatever in the markers array to be

[Google Maps API v3] Re: Required Google Map API result on MAP as well as Text Search

2011-02-18 Thread arun
Facing same problem.Can anyone recommend a search API for google maps which can be used in production environment and isn't deprecated.I need exactly this functionality http://code.google.com/apis/ajax/playground/#localsearch_with_markers -- You received this message because you are

Re: [Google Maps API v3] Re: How do I embed a google map in my google form so users can select a location and autofill a lat/long box?

2011-02-18 Thread Shreerang Patwardhan
You can check out examples here: http://shreerangpatwardhan.blogspot.com/2010/11/playing-with-markers-and-info-window.html http://shreerangpatwardhan.blogspot.com/2010/11/form-info-window.html http://shreerangpatwardhan.blogspot.com/2010/12/retriving-co-ordinates.html Hope these examples prove

[Google Maps API v3] Re: Google Map can't be dragged on Qt Webkit based browsers.

2011-02-18 Thread Simon
I am having the same problem. Suddenly my project has broken overnight because requesting 3.1 is giving me 3.2 now. Does anyone have any ideas? On Jan 29, 9:39 am, Thomas Mansencal thomas.mansen...@gmail.com wrote: Hello, I'm having an issue with Google Map and QtWebkit : Browsers using the Qt

[Google Maps API v3] Re: Required Google Map API result on MAP as well as Text Search

2011-02-18 Thread Thoern
simply use som javascript and use the zoom to location map.setCenter(loc); I did like this.: http://www.chalmersmotorklubb.se/google/MinGoogleKarta.htm -- You received this message because you are subscribed to the Google Groups Google Maps JavaScript API v3 group. To post to this group, send

[Google Maps API v3] Re: Required Google Map API result on MAP as well as Text Search

2011-02-18 Thread Thoern
aha, seems like you wanted Local Search not do search on local data.. sorry, no clues about this in V3... -- 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 API v3] Re: map overlays in custom streetview

2011-02-18 Thread archinform
Doesn't anybody have an idea? On 16 Feb., 10:16, archinform arch...@archinform.de wrote: Hi, is it possible to create a map and a streetview in separate div containers, with a streetview containing all the overlays from the map? In the docs I found, tthat is possible to use map overlays in

[Google Maps API v3] Re: Required Google Map API result on MAP as well as Text Search

2011-02-18 Thread nat
Hi Theron, Thanks for the reply.I have my requirement in following fashion. 1)Based on user IP location i will find the user zipcode then on google map i have to show the IT services company info comes under his zip code area 2)Same result i have to show without map on same page but as a

Re: [Google Maps API v3] Re: 2011/2/18 - New Release

2011-02-18 Thread gardnose
New IE6 javascript errors in API v3.1, v3.2, v3.3, v3.4 Hi, As of this morning (February 18th), I'm getting javascript errors in IE6 across all versions of API v3 (3.1, 3.2, 3.3 and 3.4). The error is: Line: 28 Error:Failed The map still loads, but there are no controls visible. Up until

Re: [Google Maps API v3] Re: 2011/2/18 - New Release

2011-02-18 Thread gardnose
Wow that was quick - it seems to have been fixed now. Thanks! Gavin -- 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,

[Google Maps API v3] Re: Center on clicked location

2011-02-18 Thread Esa
You should create the sidebar row in createMarker() function to avoid scope problems. You can trigger 'click' on marker by sidebar click. That opens the info window and takes care on map centering. If you don't like to open the info window you can center the map to marker position in click handler

[Google Maps API v3] Re: Required Google Map API result on MAP as well as Text Search

2011-02-18 Thread Rossko
1)Based on user IP location i will find the user zipcode Write some code to do that. The Maps API shows maps, it will not find the user's location from IP (which is a terribly unrleaible way to do it by the way) but there are examples of how to go about that in the documentation, if you look

[Google Maps API v3] Re: Mapwindow coordinates?

2011-02-18 Thread Esa
Latitudes and longitudes: var bounds = map.getBounds(); var SW = bounds.getSouthWest(); var NE = bounds.getNorthEast(); var Xmin = SW.lng(); var Ymin = SW.lat(); var Xmax = NE.lng(); var Ymax = NE.lat(); -- You received this message because you are subscribed to the Google Groups Google Maps

Re: [Google Maps API v3] Re: 2011/2/18 - New Release

2011-02-18 Thread gardnose
And it's back again. I guess I'm being served different code from different server clusters whilst the change is propagated around. I'll post this in the bug tracker for API v3. Regards, Gavin -- You received this message because you are subscribed to the Google Groups Google Maps JavaScript

[Google Maps API v3] Re: KMLLayer, Javascript, PHP and mySql

2011-02-18 Thread Samuel Grant
RTFM...always forget that rule! Got it working for the most part... Thanks for the help! On Feb 17, 4:43 pm, Rossko ros...@culzean.clara.co.uk wrote: Another question...the KML points to my custom icons, why don't those show up? Document container is a requirement for shared styles, you

[Google Maps API v3] Fwd: Posts not appearing

2011-02-18 Thread Kevin Healy
I submitted two posts to this group recently that failed to appear. Both were Map v3 appropriate issues (see below) I'm wondering what is the reason? Kevin H. == Distance Measurement Tool I would like to incorporate into my own Maps v3

[Google Maps API v3] Re: infoBoxes in StreetView? Or another way around this problem???

2011-02-18 Thread Gary Little
Tim I have been communicating directly about this. I will summarize the resolution here so that others may benefit. First of all, the InfoBox utility class ( see http://google-maps-utility-library-v3.googlecode.com/svn/trunk/infobox/ ) does work with Street View panoramas. In other words, you

[Google Maps API v3] Re: How do I embed a google map in my google form so users can select a location and autofill a lat/long box?

2011-02-18 Thread Sir Loin of Beef
Thank you, these examples are nicely done and very useful. However, can they be used in google-hosted forms? Google sites seems to strip out all script codes so that will cause a problem. -- You received this message because you are subscribed to the Google Groups Google Maps JavaScript API v3

[Google Maps API v3] Re: Change bounds, zoom with a dropdown

2011-02-18 Thread UK Libraries
Anyone? On Feb 18, 12:43 am, UK Libraries libraries@gmail.com wrote: Cheeky as it is to ask, example code is always welcome. The code I've used is 'found' — I've taken my lead from Duchamp — and then tweaked via trial and error (nods to Edison). On Feb 18, 12:14 am, UK Libraries

[Google Maps API v3] Re: Fwd: Posts not appearing

2011-02-18 Thread Rossko
I submitted two posts to this group recently that failed to appear. Yes, you said that before, and it still isn't true. Where are you looking? -- 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: Change bounds, zoom with a dropdown

2011-02-18 Thread UK Libraries
OK perhaps I should be a little more specific. How would I go about storing bounds? How, and where do I then call fitBounds? How do I get a selected index of the select to match up to a bounds (put figuratively, not in Javascript, I mean: selected index 0 = bounds0, selected index 1 = bounds1,

[Google Maps API v3] Re: infowindowclose

2011-02-18 Thread Esa
Update InfoWindow now has an undocumented getAnchor() method. That returns the object (marker) that was last used as the anchor for open() method. The method is undocumented but keep the documentation on eye. -- You received this message because you are subscribed to the Google Groups Google

[Google Maps API v3] Polyline not updating automatically when performing insert/remove on underlying MVCArray

2011-02-18 Thread mowellen
v3 Documentation for path property of PolyLineOptions states: The ordered sequence of coordinates of the Polyline. This path may be specified using either a simple array of LatLngs, or an MVCArray of LatLngs. Note that if you pass a simple array, it will be converted to an MVCArray Inserting or

[Google Maps API v3] Re: Google maps v3

2011-02-18 Thread deepu
its working fine when i use it in google maps. wen i use the code above n execute in ma system with the correpondin lat n long for karunya university it does nt show all the locations. all the places - i meant al departments n building names. If i execute the above code i can c the buildings bt

[Google Maps API v3] OverlayView with fixed postion

2011-02-18 Thread Joan
Hi, I'm trying to add an OverlayView using an html canvas tag. My onAdd method looks like: var canvas; canvas = this.canvas_= document.createElement('canvas'); canvas.style.position = 'fixed'; canvas.style.top = '100px';

[Google Maps API v3] Re: OverlayView with fixed postion

2011-02-18 Thread Esa
On Feb 18, 7:51 pm, Joan jangl...@gmail.com wrote:   this.getPanes().overlayLayer.appendChild(canvas); My problem is that when dragging the map, the canvas is not fixed relative to the browser's window. It is not fixed to browser window but fixed to the overlayLayer pane. The idea of

[Google Maps API v3] Re: Google maps v3

2011-02-18 Thread Rossko
its working fine when i use it in google maps. wen i use the code above n execute in ma system with the correpondin lat n long for karunya university it does nt show all the locations. all the places - i meant al departments n building names. If i execute the above code i can c the buildings

[Google Maps API v3] Re: overlayMapTypes interposing, from v2 to v3

2011-02-18 Thread Jonathan
In other words: Can I use http://mt1.googleapis.com/vt to generate MapType ? div style=position: relative; img src=http://mt1.myownserver.com/8/3/3.png; style=position: absolute; width=256 height=256 / img src=http://mt1.googleapis.com/vt?lyrs=hx=32y=22z=6; style=position: absolute;

[Google Maps API v3] Need help toggling KML overlay with checkbox

2011-02-18 Thread Francisco
I'm stuck. I can't get my checkbox functional. I would like to toggle a KML layer with a checkbox. The layer should be on when loaded (check box checked) and then turned off when unchecked. Simple, I know, but I can't get it functional despite looking at lots of working examples and checking

[Google Maps API v3] Re: DownloadUrl and Xml.parse

2011-02-18 Thread SJL
I don't understand why they don't care about us not having the tools to do things we could easily do before, like GXmlHttp. At worst it creates a significant barrier towards modernizing things. At best, having to create our own non-standard functions to replace previously included functions

[Google Maps API v3] Re: Need help toggling KML overlay with checkbox

2011-02-18 Thread Rossko
Site is located atwww.fhitestsite.com/mdctest Find out how to see the javascript errors in your browser, it will help development ; I get two On initial load, ctaLayer is not defined because you really don't have anything called ctaLayer when attempting

Re: [Google Maps API v3] Re: DownloadUrl and Xml.parse

2011-02-18 Thread Michael Geary
If you were talking about Earth view or user-editable polygons, I'd be the first to agree with you. But GXmlHttp? This has nothing to do with mapping. The only reason it was ever in the API is that the V2 API predated the popularity of libraries like jQuery, MooTools, Prototype, and you name it.

[Google Maps API v3] Re: Using Google StreetView Object

2011-02-18 Thread vb9
There's an issue filed against this (2792, see http://code.google.com/p/gmaps-api-issues/issues/detail?id=2792), but the issue is closed as won't fix. So thanks for adding some clarification to the issue. 1) Any ideas on which browsers would successfully project the panorama on a sphere? I've

[Google Maps API v3] Re: OverlayView with fixed postion

2011-02-18 Thread Martin™
You might have better luck with events reaching your map if you add it to the map as a custom control: http://code.google.com/apis/maps/documentation/javascript/controls.html#CustomControls Martin. On Feb 18, 5:51 pm, Joan jangl...@gmail.com wrote: Hi, I'm trying to add an OverlayView using

[Google Maps API v3] Re: Mapwindow coordinates?

2011-02-18 Thread Martin™
And a LatLngBounds object has a toUrlValue() method which is handy if you want to get the map bounds and submit the values to your server: http://code.google.com/apis/maps/documentation/javascript/reference.html#LatLngBounds Martin. On Feb 18, 1:34 pm, Esa esa.ilm...@gmail.com wrote: