[Google Maps API v3] Re: PHP Won't output XML at least I think that's the problem....

2011-08-19 Thread Martin™
Open the URL to your XML in a browser: http://www.courtsofsorts.com/phpsqlajax_genxml.php Now use the browser's View Source option and you'll see your XML - the XML also validates so you have no problem there. But the XML is being served with a Content-Type of 'text/html'. I think your problem

[Google Maps API v3] Re: Need examples/assistance with Zoom to Selected from Drop Down Menu (Fusion Tables)

2011-08-19 Thread geocode...@gmail.com
On Aug 18, 8:25 pm, geocode...@gmail.com geocode...@gmail.com wrote: On Aug 18, 11:16 am, Amelia Griza-Padilla ameliagpadi...@gmail.com wrote: Hello, I am a beginner to Google Maps Javascript API (about 2 weeks now) and I need some assistance.  I have created two drop down menus linked to

[Google Maps API v3] Re: The behavior of Google Maps is different from last week regarding target-densitydpi

2011-08-19 Thread en4ce
did you try to use an older version like 3.5? if not try it On 19 Aug., 07:26, Chris C 1952m...@gmail.com wrote: I have the same question.  This week I cannot read my maps on the iPhone 4. But all versions of Google Maps seem to behave this way now, not just V3.6 -- You received this message

[Google Maps API v3] Re: How to add terrain to custom gmap

2011-08-19 Thread en4ce
this map type is called Relief not terrain, take a look at my page youspots.com, we have such a layer and you can create it like this: var reliefMap = new google.maps.ImageMapType({ getTileUrl: function(a, b) { return http://maps-for-free.com/layer/relief/z; + b + /row + a.y + / + b +

[Google Maps API v3] Re: The behavior of Google Maps is different from last week regarding target-densitydpi

2011-08-19 Thread William Denniss
I'm see this issue, exactly as you describe. I'm seeing it even on my Mac OS X browsers (Chrome and Firefox), as well as iOS. On both MacOSX+Crome, and Mobile Safari, the google map will load initially showing the normal view. After a second or two the tiles reload, and are replaced ones that

[Google Maps API v3] Weather now at maps.google.com

2011-08-19 Thread en4ce
Google released a weather layer today to maps.google.com, i wonder if there is any chance to get it to work for the maps api? some one ? bests! -- 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: Adding Sliding panel.

2011-08-19 Thread GMapHelp
Hello EveryOne, How can i change scalecontrol position in V3 (i.e., i want to change its x and y position). As in API V2 we can set function GScaleControl1(){}; GScaleControl1.prototype = new GScaleControl(); GScaleControl1.prototype.getDefaultPosition = function() { return new

[Google Maps API v3] Re: Introducing Glide Panel

2011-08-19 Thread en4ce
really nice but the script is so huge :/ On 11 Aug., 14:27, Pil wolf...@gmail.com wrote: Just finished a glide panel that mimics the panel of Google Maps somewhat. But it's really cooler. Should be compatible with all supported browsers. And the most important: It's pure Javascript without

[Google Maps API v3] Re: Adding Sliding panel.

2011-08-19 Thread en4ce
yup, we want ! On 12 Aug., 23:08, Kesuke nick_dai...@hotmail.com wrote: If enough people are interested I will do a guide on how to replicate the maps.google.com side panel witj JQuery. It isn't as complicated as it seems, but it does have to be done in quite a precise way. Is this something

Re: [Google Maps API v3] Re: Info in website content instead of an infowindow, possible?

2011-08-19 Thread Antonio Bulgheroni
thanks! it perfectly fits my needs! cheers, - Antonio Bulgheroni http://www.google.com/profiles/antonio.bulgheroni, PhD * http://feeds.feedburner.com/%7Er/unicolabrss/%7E6/2 * On Fri, Aug 19, 2011 at 12:58 AM, geocode...@gmail.com

Re: [Google Maps API v3] Re: Re : Re: How to calculate distance between two point in google map

2011-08-19 Thread Natxo Vergara
Thanks a lot ! (though you have made me feel a little dumb ;) ) bests 2011/8/18 geocode...@gmail.com geocode...@gmail.com On Aug 18, 9:25 am, Natxo Vergara natxo.verg...@gmail.com wrote: Hi Larry! I have the same issue as Shaheryar Ali: I'm new here in the neibourhood, and I'm playing

[Google Maps API v3] KML Update via NetworkLink and NetworkLinkControl?

2011-08-19 Thread mick...@ijet.com
Following the KML update example, I have 4 KML files as follows: 1 - KML file that contains a NetworkLink pointing to a KML data content file. 2 - KML file containing the data (including id tags for items that I wish to update). 3 - KML file that contains a second NetworkLink pointing to a KML

Re: [Google Maps API v3] Re: The behavior of Google Maps is different from last week regarding target-densitydpi

2011-08-19 Thread Andrew Leach
On 19 August 2011 10:47, William Denniss william.denn...@gmail.com wrote: I'm see this issue, exactly as you describe. I'm seeing it even on my Mac OS X browsers (Chrome and Firefox), as well as iOS. On both MacOSX+Crome, and Mobile Safari, the google map will load initially showing the

[Google Maps API v3] Re: Introducing Glide Panel

2011-08-19 Thread Pil
On Aug 19, 1:32 pm, en4ce djen...@googlemail.com wrote: really nice but the script is so huge :/ Yes, unfortunately it's a bit large, although I've done everything to make it as small as possible. I think the real size problems are the parts where two booleans are necessary. In every 'normal'

[Google Maps API v3] No custom markers (KML) and some not showing

2011-08-19 Thread Miguel Domínguez Matos
Hi, We have a map working fine for some time but since a few weeks we are having some problems. The map get the markers from a KML, wich have custom markers using different colors. Now, the custom markers are not working anymore and all the markers are the same ( the default blue one ). Moreover,

[Google Maps API v3] Move a marker on mouse move event of map

2011-08-19 Thread shah
I want to move a maker on mouse move event of map. I am using the code below, but while moving the mouse , i can still notice a delay between mouse moved and update of maker's position. any idea about other alternatives? marker = g.Marker({position:null,map:_mapInstance}); _mouseMoveListner =

[Google Maps API v3] Re: Re : Re: How to calculate distance between two point in google map

2011-08-19 Thread shah
google.maps.LatLng.prototype.distanceFrom = function (newLatLng) { //var R = 6371; // km (change this constant to get miles) var R = 6378100; // meters var lat1 = this.lat(); var lon1 = this.lng(); var lat2 = newLatLng.lat(); var lon2 =

[Google Maps API v3] Re: No custom markers (KML) and some not showing

2011-08-19 Thread geocode...@gmail.com
On Aug 19, 5:55 am, Miguel Domínguez Matos i...@netfactory.es wrote: Hi, We have a map working fine for some time but since a few weeks we are having some problems. The map get the markers from a KML, wich have custom markers using different colors. Now, the custom markers are not working

[Google Maps API v3] Re: Re : Re: How to calculate distance between two point in google map

2011-08-19 Thread geocode...@gmail.com
On Aug 19, 7:02 am, shah prima131...@gmail.com wrote: google.maps.LatLng.prototype.distanceFrom = function (newLatLng) {         //var R = 6371; // km (change this constant to get miles)         var R = 6378100; // meters         var lat1 = this.lat();         var lon1 = this.lng();    

[Google Maps API v3] Re: 2011/8/17 - New Release (3.6)

2011-08-19 Thread Gary Little
What are the criteria for determining which clickable business icons are shown on the base map? In the downtown core of my town, only two businesses are shown (both are pharmacies); there are no restaurants, banks, grocery stories, coffee shops, etc. Not very useful. Gary On Aug 16, 6:53 pm,

[Google Maps API v3] Re: No custom markers (KML) and some not showing

2011-08-19 Thread Miguel Domínguez Matos
There was a mistake and I related both problems. Exactly, as you reported, the markers directory was missing. When the API tried to get the icons it showed the blue ones instead. But the blue icons were showing incorrectly as reported. Now, with custom markers alive again, everything works fine.

[Google Maps API v3] Re: Weather now at maps.google.com

2011-08-19 Thread Esa
Please file an issue request. http://code.google.com/p/gmaps-api-issues/issues/entry?template=Maps%20API%20v3%20-%20Feature%20Request I will vote for it. On Aug 19, 1:46 pm, en4ce djen...@googlemail.com wrote: Google released a weather layer today to maps.google.com, i wonder if there is any

[Google Maps API v3] Re: No custom markers (KML) and some not showing

2011-08-19 Thread geocode...@gmail.com
On Aug 19, 7:44 am, Miguel Domínguez Matos i...@netfactory.es wrote: There was a mistake and I related both problems. Exactly, as you reported, the markers directory was missing. When the API tried to get the icons it showed the blue ones instead. But the blue icons were showing incorrectly as

[Google Maps API v3] Re: 2011/8/17 - New Release (3.6)

2011-08-19 Thread Gary Little
... after some experimentation I've found that even after setting the visibility of poi.business labels to off I am seeing some clickable business icons. Setting it to on or simplified gives the more or less expected results. So perhaps the poi.business labels are still off by default in 3.6 and

[Google Maps API v3] Re: No custom markers (KML) and some not showing

2011-08-19 Thread Miguel Domínguez Matos
I don't avoid caching but it takes some time to load and some times markers don't load ( at all or at certain zoom levels ). I found a very interesting link where you can compare load times of each method, and KML is the slower one with difference. The first time it takes a few seconds to load,

[Google Maps API v3] Re: Move a marker on mouse move event of map

2011-08-19 Thread Esa
I would try {optimized: false} in Marker options. http://code.google.com/apis/maps/documentation/javascript/reference.html#MarkerOptions That makes the marker an independent DOM object. Not rendered by canvas layer. This is just a wild quess but please report. -- You received this message

[Google Maps API v3] Re: Move a marker on mouse move event of map

2011-08-19 Thread shah
Tried but no success. The problem is I can see the racing condition while the mouse is being moved on map, the action has to be similar to what we get while we are dragging a draggable marker. On Aug 19, 4:04 pm, Esa esa.ilm...@gmail.com wrote: I would try {optimized: false} in Marker

[Google Maps API v3] Re: Adding Sliding panel.

2011-08-19 Thread Esa
I was writing earlier: You can either adjust the map size or you can float the side panel on map and move the control elements. Both ways have many pitfalls. There is a third way to do it. You can have two maps. One displayed with sidebar and one full width displayed when the sidebar is hidden.

[Google Maps API v3] Re: Checkbox in IE 9

2011-08-19 Thread Esa
You should first fix your HTML. http://validator.w3.org/check?verbose=1uri=http%3A%2F%2Fgbnrtc.services.officelive.com%2Fdefault.html You have two BODY-tags and you have some P-tags inside a table. -- You received this message because you are subscribed to the Google Groups Google Maps

[Google Maps API v3] Re: Multiple origins multiple destinations

2011-08-19 Thread Esa
Have you studied Distance Matrix Service http://code.google.com/apis/maps/documentation/javascript/reference.html#DistanceMatrixService -- 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: Adding Sliding panel.

2011-08-19 Thread Pil
Hmm, it seems that Google Maps doesn't change the center of the map when hiding and showing the left panel. The map only seems to be expanded or decreased on the left side. Isn't this a good approach? On Aug 19, 5:17 pm, Esa esa.ilm...@gmail.com wrote: I was writing earlier: You can either

[Google Maps API v3] Re: Hide/show infoboxes?

2011-08-19 Thread Esa
I would recommend creating just a single instance of InfoBox. Use the setContent() method in the click handler. -- 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: Weather now at maps.google.com

2011-08-19 Thread Winchester
I would vote for it as well On Aug 19, 4:46 am, en4ce djen...@googlemail.com wrote: Google released a weather layer today to maps.google.com, i wonder if there is any chance to get it to work for the maps api? some one ? bests! -- You received this message because you are subscribed to

[Google Maps API v3] Link custom marker from a column in fusion table to display on map?

2011-08-19 Thread Christopher Watson
the fusion table visualize lets you attach custom marker from a column in the fusion table, but you can only see these if you embed the map with its outputted iframe code. cant we tell a maps api v3 to link to a column stating the coloured marker to displat when fusion table displays the

[Google Maps API v3] Re: Link custom marker from a column in fusion table to display on map?

2011-08-19 Thread geocode...@gmail.com
On Aug 19, 9:43 am, Christopher Watson chris.watso...@googlemail.com wrote: the fusion table visualize lets you attach custom marker from a column in the fusion table, but you can only see these if you embed the map with its outputted iframe code. cant we tell a maps api v3 to link to a

[Google Maps API v3] Re: No custom markers (KML) and some not showing

2011-08-19 Thread Miguel Domínguez Matos
I've made a test using MarkerCluster and the speed has increased a lot! The only item working is alojamientos http://grancanaria.com/patronato_turismo/fileadmin/mapaGlobal/mapa_v5.php regards, Miguel On Aug 19, 4:03 pm, Miguel Domínguez Matos i...@netfactory.es wrote: I don't avoid caching but

[Google Maps API v3] Re: The behavior of Google Maps is different from last week regarding target-densitydpi

2011-08-19 Thread Chris C
Yes as I pointed out in my post it does this on all versions of 3 for me. -- 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] Gmap v3 problem scripts and IE 9

2011-08-19 Thread Clem106
I set up a geolocation systemhttp://www.hexa-moto.com/geolocalisation-membres Gmap with V3 on one of my sites. The problem is that the map does not appear if the version of IE is below 9 which is quite annoying as there are still a lot (too) many people with IE8 and IE7. This problem also

Re: [Google Maps API v3] Re: The behavior of Google Maps is different from last week regarding target-densitydpi

2011-08-19 Thread Chris C
I tried the scale=2 on the js load for google maps api and did not have any effect. Not surprising since its not documented. I guess we will have to wait for Google to update their tile engine to remove this 'feature' -- You received this message because you are subscribed to the Google

[Google Maps API v3] Re: Re : Re: How to calculate distance between two point in google map

2011-08-19 Thread JKurtock
As importantly, Shah's method assumes the world is round. Which it is not. And changing the prototype of any google function is really asking for trouble (because of the way the way Google functions iterate over their own properties.) - Jeff On Aug 19, 7:23 am, geocode...@gmail.com

Re: [Google Maps API v3] Gmap v3 problem scripts and IE 9

2011-08-19 Thread Andrew Leach
On 19 August 2011 18:02, Clem106 clement.bir...@gmail.com wrote: I set up a geolocation system Gmap with V3 on one of my sites. The problem is that the map does not appear if the version of IE is below 9 which is quite annoying as there are still a lot (too) many people with IE8 and IE7. It

[Google Maps API v3] Re: Multiple origins multiple destinations

2011-08-19 Thread kypriakos
Hi Esa - yes I did thanks. But I was running into trouble when I was using arrays of origins. I think though I resolved it, first with callbacks and iterating over the service calls and second by finding that the array I was using was globally defined elsewhere ;) Either way i appreciate the

[Google Maps API v3] Query Limit Problem/Question

2011-08-19 Thread See The Light
Migrated discussion from AppEngine group: Over the past couple of weeks I have noticed an increase in the number of OVER_QUERY_LIMIT responses we have been receiving. Currently whenever we make a call to be geocoded we keep track of that call and decrease a counter on our end. I have historical

[Google Maps API v3] Re: Hide/show infoboxes?

2011-08-19 Thread 3D-kreativ
Hi, Could you be so kind and explain a little bit more how I should do to get this to work. How do I change the code to just create a single instance and do I have to change something else to get setContent() to work? Just some lines of code so that I can continue my work!? On 19 Aug, 17:42, Esa

[Google Maps API v3] Re: Hide/show infoboxes?

2011-08-19 Thread 3D-kreativ
Thanks, but this didn't work! Could it be done in some oterh way? On 18 Aug, 22:07, JFrancis jfran...@mge.com wrote: In my case, it is within my geocode code. The address is searched, the marker appears, and an infoWindow opens. I did it this way because I also have markers on the map which

[Google Maps API v3] Re: Hide/show infoboxes?

2011-08-19 Thread 3D-kreativ
Sounds interresting, could you please explain a little bit more how I can change my code to just create a single instance of the InfoBox? And what else do I have to do with the code to get the setContent() to work? Preciate som helping lines of code? I wrote this messages a second time because the

[Google Maps API v3] Speedy for Large, Many Polygons

2011-08-19 Thread Mike Dolbow
Well, after watching Sue and Dave's talk on Speedy Mapshttp://www.google.com/events/io/2011/sessions/speedy-maps.htmlfrom this year/s I/O, one question at the end was about speeding up complex polygons. Sue mentioned that a member of their team might be willing to look at solutions for folks,

[Google Maps API v3] Re: Hide/show infoboxes?

2011-08-19 Thread Esa
The last two lines inside your createMarkers() function are: var ib = new InfoBox(myOptions); ib.open(theMap, marker); You can change them to ib.setContent(boxText); ib.open(theMap, marker); if you first declare in global scope (outside that function) var ib = new

[Google Maps API v3] Re: Query Limit Problem/Question

2011-08-19 Thread Rossko
Is there a call that can be made to get your current query limit? Nope. If not, does the 2500 calls allowed happen in a sliding window? Are there hourly limits to prevent flooding? Not an hourly limit exactly, but there are rate limits to prevent abuse. Exactly what they are isn't

[Google Maps API v3] Re: Hide/show infoboxes?

2011-08-19 Thread 3D-kreativ
Thanks for the help and your patience, but despite your instruction, it isn't working! There is no markers on the map? What could be wrong? On 19 Aug, 21:12, Esa esa.ilm...@gmail.com wrote: The last two lines inside your createMarkers() function are:     var ib = new InfoBox(myOptions);    

[Google Maps API v3] Re: PHP Won't output XML at least I think that's the problem....

2011-08-19 Thread Radina
It appears to me that there is an extra (special) char at the file beginining ??xml version=1.0? markersmarker name=Pan Africa Market address=1521 1st Ave, Seattle, WA lat=47.608940... Note that extra ? at the first line. You can't see that in Page View Source. Copy and paste source into

[Google Maps API v3] LatLngBounds extend bug?

2011-08-19 Thread DiTieM
Just got this simple test case: var bounds = new google.maps.LatLngBounds( ) ; bounds.extend( new google.maps.LatLng( -34, -56 ) ) ; bounds.extend( new google.maps.LatLng( 34, -118 ) ) ; bounds.extend( new google.maps.LatLng( 25, 121 ) ) ; console.log( [

Re: [Google Maps API v3] LatLngBounds extend bug?

2011-08-19 Thread DiTieM
Thanks a lot! It makes sense now. Pity I had to learn this in the painful way. Regards, David -- 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 fetch data from google spreadsheets to google maps?

2011-08-19 Thread geocode...@gmail.com
On Aug 18, 4:51 am, shooter123 priit.kullerk...@gmail.com wrote: Hi, Currently my website is reading data for google map markers from a javascript array but I wonder whether it's possible to get the data from google spreadheets instead using a sql query. It's possible to query google

[Google Maps API v3] Re: Trouble converting coordinates to address using reverse geocoding

2011-08-19 Thread geocode...@gmail.com
On Aug 16, 9:48 am, gmoney dmurphy...@gmail.com wrote: Here is a link to the working code:http://punchupproductions.com/external/hotel/ I;m having trouble getting the Start field to show the address location instead of the coordinates. I know I have to use reverse geocoding but I'm not sure

Re: [Google Maps API v3] Listing for streetview and modifying streetview controls

2011-08-19 Thread Marc Ridey
See http://code.google.com/apis/maps/documentation/javascript/reference.html#StreetViewAddressControlOptions try streetView.set('navigationControl', false); streetView.setOptions({ 'addressControlOptions': { 'position': google.maps.ControlPosition.BOTTOM_RIGHT } }); -- You

[Google Maps API v3] Limit map panning from moving beyond the poles

2011-08-19 Thread Jeremy
I'm trying to figure out how to make my map unable to pan beyond the north or south poles. I don't know if there is an existing script, but I couldn't find anything and tried my hand at something. Unfortunately its flawed because it doesn't seem like there is a 90 or -90 latitude in the maps

Re: [Google Maps API v3] Limit map panning from moving beyond the poles

2011-08-19 Thread Ben Appleton
That's right: the default map types use the Mercator projection, in which the poles are rendered infinitely far up/down the map. So as you pan up/down you approach the poles but cannot reach them. Have you tried limiting latitude to 85 instead? Android brevity On Aug 20, 2011 11:59 AM, Jeremy