Re: [Google Maps API v3] Firefox 4 : Markers Hidden Under Map Tile

2011-04-23 Thread Chris Broadfoot
Works fine for me in FF 4.0 - could you give some more details on how you can replicate this issue? On Tue, Apr 19, 2011 at 3:18 PM, williamka wrote: > Hi All, > > I have a a problem which is specific to Firefox 4 where the tile > overwrites the markers within, i have tried zIndex but the probl

Re: [Google Maps API v3] Jump to anchor on the page the map is shown from click on anchor

2011-04-23 Thread Chris Broadfoot
Don't you want: window.location.hash = marker.url ? It would help to link us to your *page*, because a code snippet is not useful for debugging. -- http://twitter.com/broady -- You received this message because you are subscribed to the Google Groups "Google Maps JavaScript API v3" group. To

Re: [Google Maps API v3] InfoWindow causes my map to not appear

2011-04-23 Thread Chris Broadfoot
Got a link? I'm guessing this line is the cause of your problems: var contentString = '; You're outputting some random PHP string into JavaScript. Is the string escaped for JS? What is the *output* of this PHP script? -- http://twitter.com/broady -- You received this message because you are s

[Google Maps API v3] Re: Jump to anchor on the page the map is shown from click on anchor

2011-04-23 Thread Esa
Not enough information to form a hypothesis. However I have a guess. The variable i inside click handler looks very suspicious. marker.url = '#'+i; Have you made sure that i has a good value at the moment when a click takes place. -- You received this message because you are subscribed to the

[Google Maps API v3] Re: Question about finding address

2011-04-23 Thread geocode...@gmail.com
On Apr 22, 11:06 pm, sadeq wrote: > I know that for each pair of latitude and longitude one point of map > is coordinated and one marker can be shown for it so every body can > find lat & long of each point in map, but I don't know reverse of this > feature is possible?! I mean that can I get the

[Google Maps API v3] Re: Firefox 4 : Markers Hidden Under Map Tile

2011-04-23 Thread williamka
I have managed to rectify this problem, although I am not happy with the solution as indicates a problem/bug/issue with api3.4 - This is a google maps api 3.4+ issue and causes maps to display incorrectly and also cuases fancybox to fail to open in firefox 4 so it looks to me that api 3.4 is a li

[Google Maps API v3] Question about finding address

2011-04-23 Thread sadeq
I know that for each pair of latitude and longitude one point of map is coordinated and one marker can be shown for it so every body can find lat & long of each point in map, but I don't know reverse of this feature is possible?! I mean that can I get the address of one place with knowing lat&long

[Google Maps API v3] Re: Returning Custom Shape Name Through Inquiry

2011-04-23 Thread Matthew Sanders
Nevermind, I found "TrashDays40.xml" :) -- 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-js-a

[Google Maps API v3] Re: Returning Custom Shape Name Through Inquiry

2011-04-23 Thread Matthew Sanders
Thank you geocode for the examples. The one for waste management has what I need, however when I ripped your html and its dependencies to my site the shapes did not show. I searched through your source to see where you are getting your KML, but did not find it. I assume that you have the shapes

[Google Maps API v3] Re: controlling the position of a marker with a textbox value

2011-04-23 Thread Jason
awesome! Works perfectly - thanks a million :) -- 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-ma

[Google Maps API v3] Re: Need help google maps api v3 with ajax?

2011-04-23 Thread Rossko
> I have a file in server, it shows latitude and longitude values only. > And i have a map file in another location. > I want to fetch latitude and longitude values from that file using ajax and > store it  and mark those values on google maps. Depending what kind of file it is, the techniques sho

[Google Maps API v3] Re: polyline loop

2011-04-23 Thread Rossko
> 1. need to somehow split "cords" into to variables or http://www.google.com/search?q=split+a+javascript+string+at+a+comma You'd probably also want to convert your string fragments to numbers http://www.google.com/search?q=javascript+parsefloat > 2. find a way for  "[new google.maps.LatLng()];

[Google Maps API v3] Re: Returning Custom Shape Name Through Inquiry

2011-04-23 Thread geocode...@gmail.com
On Apr 23, 9:41 am, Matthew Sanders wrote: > Hello community, >     I have very little experience with javascript, but would like to have > some Google Maps features in a website I am making for my boss. I was > wondering if any of you can show me how to do the following. > >     I can make a cust

[Google Maps API v3] Re: controlling the position of a marker with a textbox value

2011-04-23 Thread Rossko
>     var distancevar = document.getElementById('distancevar'); >     this.set('distance', distancevar); My guess was wrong ; you're supplying a complete HTML element instead of a number. Look into how to get the text value of an HTML element http://www.javascript-coder.com/javascript-form/getele

[Google Maps API v3] [Help] Returning Custom Shape Name Through Inquiry

2011-04-23 Thread Matthew Sanders
Hello community, I have very little experience with javascript, but would like to have some Google Maps features in a website I am making for my boss. I was wondering if any of you can show me how to do the following. I can make a custom shape on a map that I call from within my .php fil

[Google Maps API v3] Re: polyline loop

2011-04-23 Thread fireofhellx
i am still new to google maps and javascript, however all of my code is just to get the information from my xml and display the polyline, from what i can see my issues is that im passing a var called "cords"(on line 295) which contains a lat and lng value in this format (lat,lng) so when i do "a

Re: [Google Maps API v3] Can't add a new marker to my map?

2011-04-23 Thread pontusw
Brilliant - thanks! Thought it must be something really simple. Cheers -- 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: polyline loop

2011-04-23 Thread geocode...@gmail.com
On Apr 23, 8:28 am, fireofhellx wrote: > i know but ive had to use a lot of loops to get information out of a > massive xml file and ive found document.write is useful to debug > within loops. i think i have comment out all of them now sorry for the > inconvenience Suggestion for you. 1. Simplif

[Google Maps API v3] Re: polyline loop

2011-04-23 Thread fireofhellx
i know but ive had to use a lot of loops to get information out of a massive xml file and ive found document.write is useful to debug within loops. i think i have comment out all of them now sorry for the inconvenience Danny -- You received this message because you are subscribed to the Go

[Google Maps API v3] Re: polyline loop

2011-04-23 Thread geocode...@gmail.com
On Apr 23, 8:10 am, fireofhellx wrote: > oh sorry forgot to mention this going to be for mobile ill just sort > that now Using document.write for debugging is bad. It overwrites the page. -- Larry -- You received this message because you are subscribed to the Google Groups "Google Maps Java

[Google Maps API v3] Re: polyline loop

2011-04-23 Thread fireofhellx
ok ive hard coded the location. i have build the whole thing around the users location so you need to except the geolocation however it will centre the map in the location the polylines should appear hope that helps you help me -- You received this message because you are subscribed to the Goo

[Google Maps API v3] Re: Can't setCenter

2011-04-23 Thread geocode...@gmail.com
On Apr 23, 7:49 am, Bill wrote: > I'm trying to get my map to re-orient to a new center when a user > chooses a district within the main map from a dropdown menu. See the > map here:http://bilware.net/BullyMap/BullyMap.html > > I can get the zoom to change using map.setZoom (although it's > commen

[Google Maps API v3] Re: polyline loop

2011-04-23 Thread fireofhellx
oh sorry forgot to mention this going to be for mobile ill just sort that now -- 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

[Google Maps API v3] Re: polyline loop

2011-04-23 Thread geocode...@gmail.com
On Apr 23, 4:52 am, fireofhellx wrote: > ok so the issues im having it trying to get an array of latlng's to > plot as polly lines there are about 72 lines in this array i need > to plot but im having issues i know it needs to loop somewhere but > unsure where im still new to google maps and javas

[Google Maps API v3] Can't setCenter

2011-04-23 Thread Bill
I'm trying to get my map to re-orient to a new center when a user chooses a district within the main map from a dropdown menu. See the map here: http://bilware.net/BullyMap/BullyMap.html I can get the zoom to change using map.setZoom (although it's commented out below). But map.setCenter won't wor

[Google Maps API v3] Re: controlling the position of a marker with a textbox value

2011-04-23 Thread Jason
Apologies, the full radiuswidget code is included below. How the map and markers should behave: http://code.google.com/apis/maps/articles/mvcfun/step6.html How the map and markers behave when I change the small bit of code: http://test-psi-alpha.appspot.com/ *from * this.set('distance',10);

[Google Maps API v3] Re: sort a list by distance

2011-04-23 Thread geocode...@gmail.com
On Apr 22, 5:02 pm, Matthew Libhart wrote: > Hello, > > I'm making a website for a small club.  Using basic LAMP.  I've got > a list of everyone in the club in a table, and the table also > contains their lat/long.  There's a function our club provides and > I'd like visitors to be able to search

Re: [Google Maps API v3] Can't add a new marker to my map?

2011-04-23 Thread Andrew Leach
On 23 April 2011 15:18, pontusw wrote: > I've got 'Camden Superstore' and 'Railway Bridge' on there but 'Records' > just won't show up. > Grateful for any suggestions. I get an error: recordsInfobox is not defined That's because your section with the header //RECORDS// is all on one line, so eve

[Google Maps API v3] Can't add a new marker to my map?

2011-04-23 Thread pontusw
Hi all I'm having trouble adding another marker and infobox to my map. Really weird - I've already added two, but when I try to add a third one it won't show up. It must be something really simple that I'm missing. The map is here: http://layersoflondon.org/ I've got 'Camden Superstore' and 'R

[Google Maps API v3] Need help google maps api v3 with ajax?

2011-04-23 Thread Ravi
I have a file in server, it shows latitude and longitude values only. And i have a map file in another location. I want to fetch latitude and longitude values from that file using ajax and store it and mark those values on google maps. Can you help me in this one? -- You received this messag

[Google Maps API v3] polyline loop

2011-04-23 Thread fireofhellx
ok so the issues im having it trying to get an array of latlng's to plot as polly lines there are about 72 lines in this array i need to plot but im having issues i know it needs to loop somewhere but unsure where im still new to google maps and javascript so any help would be amazing so here