[Google Maps API v3] Re: Unchecking Checkbox on load

2011-08-31 Thread Satpack Travel
Esa. That fixed it! Thanks so much. To be honest my knowledge of coding is quite limited so I do a lot of copy & pasting and trial & erroring to get what I want! Fine, until I need to fix bugs because I don't actually 'understand' it! Really appreciated... Rob On Aug 31, 9:50 pm, Esa wrote: >

[Google Maps API v3] Re: Remove hotels from overlay

2011-08-31 Thread Pil
On Aug 31, 11:30 pm, Barry Hunter wrote: > But even better is just to add it your already existing mapOptions > > http://www.nearby.org.uk/google/temp/no-hotels2.php Just to clarify: This example code turns off poi.business but it doesn't turn off the labels. The prolongation of my previous exa

[Google Maps API v3] Re: I can see my map on local, but not in my server

2011-08-31 Thread David Arenzana
thanks!! On Aug 31, 9:59 pm, Esa wrote: > I can see a map on the page. > > Your CSS: > >     >         #map{ >         width: 450px; >         height: 350px; >         > > The trailing curly bracket is missing. I think it depends on browser > how it parses that. -- You received this message b

[Google Maps API v3] Disabling Google Places Details Window

2011-08-31 Thread EWPeters
Is it possible to disable the default behavior when a user clicks on a google place (like a park)? I tried 'disableDefaultUI' but it doesn't affect it. -- You received this message because you are subscribed to the Google Groups "Google Maps JavaScript API v3" group. To post to this group, sen

[Google Maps API v3] google maps v3 visual distortion in chrome on mac

2011-08-31 Thread Bill Williams
using Google maps v3 with custom icons in chrome browser on mac laptop a blue color is washing out all visual div elements prior to the div that contains the map div.. when mousing over the marker icons. http://www.zodiacinsight.com/main_page.html any thoughts -- You received this message be

[Google Maps API v3] Re: "Zoom here" link resulting in "ReferenceError: Can't find variable" JavaScript error

2011-08-31 Thread geocode...@gmail.com
On Aug 31, 2:31 pm, Michæl wrote: > rehttp://mvjantzen.com/flickr/problem.html > > This page was generated by a PHP program I'm writing. I copied the > output to a separate static HTML file to make it easier to debug. > > When you click on a red icon, the InfoWindow includes a Flickr image > and a

Re: [Google Maps API v3] Remove hotels from overlay

2011-08-31 Thread bigfoot1
Thanks Barry, a clear, simple answer and a demo! awesome :) -- 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/-/4tK9w33T5ukJ. To post

[Google Maps API v3] "Zoom here" link resulting in "ReferenceError: Can't find variable" JavaScript error

2011-08-31 Thread Michæl
re http://mvjantzen.com/flickr/problem.html This page was generated by a PHP program I'm writing. I copied the output to a separate static HTML file to make it easier to debug. When you click on a red icon, the InfoWindow includes a Flickr image and a "zoom here" link. That HREF goes to: javascr

[Google Maps API v3] Re: Recording Geocoding Results

2011-08-31 Thread Rossko
> After I created a store locator map for a client we were wondering if it is > in violation of the google maps API terms to record the lat/lng of the > returned geocoding results for analytical purposes, Seems clear enough: " 8.1 Definitions. ... (b) "Content" means any content provided through

Re: [Google Maps API v3] Remove hotels from overlay

2011-08-31 Thread Barry Hunter
But even better is just to add it your already existing mapOptions http://www.nearby.org.uk/google/temp/no-hotels2.php On Wed, Aug 31, 2011 at 10:24 PM, Barry Hunter wrote: > You close, just need to give it the proper variable names like in the docs. > >  map.setOptions({styles: [ >    { >

Re: [Google Maps API v3] Remove hotels from overlay

2011-08-31 Thread Barry Hunter
You close, just need to give it the proper variable names like in the docs. map.setOptions({styles: [   {     featureType: "poi.business",     elementType: "labels",     stylers: [   { visibility: "off" }     ]   } ]}); Also you need to put it after you create the map. The link you

[Google Maps API v3] Recording Geocoding Results

2011-08-31 Thread Drock
After I created a store locator map for a client we were wondering if it is in violation of the google maps API terms to record the lat/lng of the returned geocoding results for analytical purposes, no personal data would be recorded only the search locations so my client could see where their

[Google Maps API v3] Display InfoWindow (really, 'InfoBubble' subclass) beyond map container div

2011-08-31 Thread Lloyd Force
All, (Using v3) As designed, I'm sure, nothing under the control of the map, such as an InfoWindow or marker, can display outside of the map canvas, which is what one would normally want. However, in my case, I'm displaying a popup when polygons are 'moused over'. Everything works great except at

[Google Maps API v3] Re: I can see my map on local, but not in my server

2011-08-31 Thread Esa
I can see a map on the page. Your CSS: #map{ width: 450px; height: 350px; The trailing curly bracket is missing. I think it depends on browser how it parses that. -- You received this message because you are subscribed to the Google Groups "Google Maps Ja

[Google Maps API v3] Re: Unchecking Checkbox on load

2011-08-31 Thread Esa
You have a nice function filterData() that reads the checkboxes and shows/hides the layers. That function is called only by onclick events of checkboxes. You should call that function on page load too. The last lines in your initialize() function: layer_1.setMap(map); layer_2.setMap(map); sh

Re: [Google Maps API v3] Re: Problem with marker becoming visible when mouse is hovered over it

2011-08-31 Thread Andrew Leach
On 31 August 2011 20:29, Rohit Bhat wrote: > K, I'll tell you what I'm trying to do. Along the path from say, A to B, I > have points at specific locations where I would like to give information > like the speed of the bus, the time it was there, etc. I've markers at these > points. Initially I wa

[Google Maps API v3] Re: Problem with marker becoming visible when mouse is hovered over it

2011-08-31 Thread Rohit Bhat
K, I'll tell you what I'm trying to do. Along the path from say, A to B, I have points at specific locations where I would like to give information like the speed of the bus, the time it was there, etc. I've markers at these points. Initially I want only the path to be shown. Then as and when th

[Google Maps API v3] Re: What is the best way to determine the current (pixel) position of the InfoWindow on the web page?

2011-08-31 Thread Esa
On Aug 31, 9:01 am, Pil wrote: > http://www.wolfpil.de/v3/drag-from-infowindow.html Great work Pil. That's a cool page with many neat tricks. -- 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: Problem with marker becoming visible when mouse is hovered over it

2011-08-31 Thread Rossko
> But when I hover my mouse over any point in the polyline, the marker isn't > appearing. Any insight on this? None. Cannot see what you are doing, though I do wonder what 'marker' might be. See "READ THIS FIRST" http://groups.google.com/group/google-maps-js-api-v3/t/2b3f101fd509919e -- You re

[Google Maps API v3] Re: Remove hotels from overlay

2011-08-31 Thread Pil
Yes, it's a bit cumbersome, not very sophisticated and has many bugs. It seems that you cannot compound featureType and elementType in this way. It seems that every type needs it's own stylers property. Have a look at this example how you can do it: http://www.wolfpil.de/v3/labels.html On Aug

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

2011-08-31 Thread Robert Aspinall
http://tidesandcurrents.noaa.gov/tsunami, although it's been changed to set optimized to false, because of the marker rendering error. -- 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 ht

[Google Maps API v3] Re: Problem with marker becoming visible when mouse is hovered over it

2011-08-31 Thread Rohit Bhat
Thanks Rossko. I converted the direction to a polyline and added this google.maps.event.addListener(polyline, 'mouseover', function() { marker.setVisible(true); }); But when I hover my mouse over any point in the polyline, the marker isn't appearing. Any insight on this? -- You received thi

Re: [Google Maps API v3] Re: KML in Fusion Table is displayed as point in Google Map

2011-08-31 Thread Barry Hunter
I dont think there is any control over this as a developer as such. Could add it as a feature request Or maybe could have two fusion tables. One with greatly simplified polygons, and then switch between the two tables as zoom level changes ... Or just limit the zoom levels on the map. So cant zo

Re: [Google Maps API v3] Remove hotels from overlay

2011-08-31 Thread bigfoot1
Thanks, but I'm still learning, I tried this but it still didn't work: map.setOptions { featureType: "poi.business", elementType: "labels", stylers: [ { visibility: "off" } ] } -- You received this message because you are subscribed to the Google Groups "Google Maps Ja

[Google Maps API v3] Re: KML in Fusion Table is displayed as point in Google Map

2011-08-31 Thread Robin Bijlani
I am having the same problem. This occurs if you zoom out far enough in the examples in the Google Maps API Reference as well: http://code.google.com/apis/maps/documentation/javascript/examples/layer-fusiontables-styling.html Any way around this? -- You received this message because you are su

Re: [Google Maps API v3] Remove hotels from overlay

2011-08-31 Thread Barry Hunter
On Tue, Aug 30, 2011 at 3:09 AM, bigfoot1 wrote: > thanks I found thatm but am not sure to write I need. http://code.google.com/apis/maps/documentation/javascript/styling.html#styling_the_default_map Add "styles" to the myOptions array, or use setOptions to set it seperately. -- You received t

[Google Maps API v3] Re: I can see my map in local conexion, but not in my server.

2011-08-31 Thread David Arenzana
Thank you very much!! Its works ;) On Aug 31, 4:29 pm, Pil wrote: > On Aug 31, 12:55 pm, David Arenzana wrote: > > > But when i up my web on a > > server, the map dissapear.  Sorry for my english, and > > thanks.www.pedranaturalgarcia.com/contact.php > > Try to define units for your inline

[Google Maps API v3] Re: KML sidebar and info window

2011-08-31 Thread JFrancis
That's looking real good, Luke. Keep in mind you can also wrap everything in the description node in one or more tags and style the contents with CSS, so if you want to pin the image to one side or the other of the text, change the font face, point size, color, and so on, you can do that as well.

[Google Maps API v3] Unchecking Checkbox on load

2011-08-31 Thread Satpack Travel
Hi. I've got checkboxes on my map (API v3 referring to Fusion Tables). They work fine when code tells them to all be checked as default on start up. My coding knowledge is limited (so apologies in advance) so I could be doing it wrong but by deleting the checked="checked" for input type in body t

[Google Maps API v3] Re: I can see my map in local conexion, but not in my server.

2011-08-31 Thread Pil
On Aug 31, 12:55 pm, David Arenzana wrote: > But when i up my web on a > server, the map dissapear.  Sorry for my english, and > thanks.www.pedranaturalgarcia.com/contact.php Try to define units for your inline map style. These are normally pixels, abbreviated: px > code: No code desired. -

[Google Maps API v3] Re: Change the style markeroption icon for my fusion table layer

2011-08-31 Thread JKurtock
http://code.google.com/intl/en/apis/maps/documentation/javascript/overlays.html#FusionTables var layerOptions = { query: { select: 'Location', from: 'rubbishTable, where: 'colName=starCondition' }, styles: [{ markerOptions: {iconName: "star"} } ], suppressInfoWindo

Re: [Google Maps API v3] Searching throught custom markers

2011-08-31 Thread Barry Hunter
At the most fundermental level is is just a question of javascript coding. Not really anything specific to the API. Its about how to 'search' data you have in javascript. Basically you serach you the data you have stored (storing the details of each marker in an array for example) - then using ja

RE: [Google Maps API v3] Re: KML sidebar and info window

2011-08-31 Thread Whitworth, Luke
Gents you are all stars. Got to pretty much where I want now here: http://www.som.cranfield.ac.uk/som/map/luke6.aspx Just don't look at the code, it's a bit of a mess ;) Cheers, Luke -Original Message- From: google-maps-js-api-v3@googlegroups.com [mailto:google-maps-js-api-v3@google

[Google Maps API v3] Searching throught custom markers

2011-08-31 Thread mmm
Hi, How do I search through markers which have I have placed on the map? The markers placed are not at places such as restaurants etc, so i cannot use the Places api I have not been able find any sample code online. -- You received this message because you are subscribed to the Google Groups "G

[Google Maps API v3] Polyline over marker

2011-08-31 Thread Martin Volek
Hi, is it possible to show a polyline over markers on a map? I'm using Google Maps JavaScript API V3. I tried to set zIndex but in doesn't change anything. Thanks -- You received this message because you are subscribed to the Google Groups "Google Maps JavaScript API v3" group. To view this d

[Google Maps API v3] R: Re: StreetView Initial bearing

2011-08-31 Thread prontoGugs
works well thanks Best Regards -- 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/-/mPk8smyEvI0J. To post to this group, send email to

[Google Maps API v3] Re: Change the style markeroption icon for my fusion table layer

2011-08-31 Thread geocode...@gmail.com
On Aug 31, 3:30 am, Esa wrote: > You can set the icon style in Fusion Tables, not in your maps > JavaScript. > > Visualize > Map > Configure styles > Marker icon There is now the ability to style markers in the v3 map API. It is described in the documentation with examples, and searching the gro

[Google Maps API v3] Re: Custom Controls flickering problem

2011-08-31 Thread en4ce
i didnt test my idea but you guys make it way to difficult... i would try to use onmouseover and onmouseout on the map div it self, and a function that set the controls on and of... that might work... On 31 Aug., 11:07, Martin™ wrote: > Hi. > > I think i'd look at adding a DOM event listener to t

[Google Maps API v3] Re: I can't access Korea detail basemap on android and iphone

2011-08-31 Thread Rossko
> What if I'm pulling data from someone else's table? I think you meant to reply to your own thread? http://groups.google.com/group/google-maps-js-api-v3/browse_thread/thread/a1a5dd1e18fb9a84# For the Korea maps, there is an open issue http://code.google.com/p/gmaps-api-issues/issues/detail?id=34

[Google Maps API v3] Re: Problem with marker becoming visible when mouse is hovered over it

2011-08-31 Thread Rossko
> Hence, instead of a polyline, the direction > service would be better for me. The Directions service returns a polyline that you can use. http://groups.google.com/group/google-maps-js-api-v3/browse_thread/thread/5b0ae4a42c44e5fc/272f48e16d790576 However a Directions route A-B won't necessarily b

Re: [Google Maps API v3] I can't access Korea detail basemap on android and iphone

2011-08-31 Thread derbaha.dh...@gmail.com
What if I'm pulling data from someone else's table? I need to utilize the following objects below in my code. google.maps.FusionTablesStyle object google.maps.FusionTablesMarkerOptions Inserted into here Sent from my Verizon Wireless 4GLTE smartphone - Reply message - From: "Anthony

[Google Maps API v3] Re: Change the style markeroption icon for my fusion table layer

2011-08-31 Thread Esa
You can set the icon style in Fusion Tables, not in your maps JavaScript. Visualize > Map > Configure styles > Marker icon -- 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: Problem with marker becoming visible when mouse is hovered over it

2011-08-31 Thread Rohit Bhat
Thanks Martin, that was helpful. But what I would like to know is the reason why the marker isn't visible with the mouseover event of the marker? (The code which I had originally specified) I'm plotting the route of say, a bus. At points on its journey, if anyone wants to see the speed etc of

[Google Maps API v3] Re: Infowindow tabs

2011-08-31 Thread Rossko
> I wish to do a proof of concept where tabs are required in a infowindow. Search this group http://groups.google.com/group/google-maps-js-api-v3/search?group=google-maps-js-api-v3&q=infowindow+tabs -- You received this message because you are subscribed to the Google Groups "Google Maps JavaSc

[Google Maps API v3] Re: Custom Controls flickering problem

2011-08-31 Thread Martin™
Hi. I think i'd look at adding a DOM event listener to the DOM element that contains the map instead of using any API events. The Map getDiv() method will give your code a reference to the DOM element. http://code.google.com/apis/maps/documentation/javascript/reference.html#Map The DOM events '

[Google Maps API v3] Re: Problem with marker becoming visible when mouse is hovered over it

2011-08-31 Thread Martin™
Hi. Look at the Polyline mouseover and mouseout events: http://code.google.com/apis/maps/documentation/javascript/reference.html#Polyline You can add an event listener for both events and each event listener is passed a MouseEvent parameter: http://code.google.com/apis/maps/documentation/javasc

[Google Maps API v3] Re: Problem with marker becoming visible when mouse is hovered over it

2011-08-31 Thread Rohit Bhat
My basic aim is to plot a route between two points and the starting and end marker would be shown. On the path, i want the other markers to become visible only when the mouse is hovered over a point in the route, otherwise it will become too cluttered. Could you please tell me how to do that? -

Re: [Google Maps API v3] I can't access Korea detail basemap on android and iphone

2011-08-31 Thread Anthony Derbah
Google map Api v3 (javascript) version http://fire.yarvolgar.com/fireOperationTest.php On Aug 30, 2011 11:12 PM, "Andres Ferrate" wrote: > Hyojoon, > > You did not include a link to your web site, only the sample map on code > site. > > Also, which version are your specifying? > > http://code.goo

[Google Maps API v3] Change the style markeroption icon for my fusion table layer

2011-08-31 Thread Anthony D
Good Evening What would I need to insert into the code below to change the icon symbol in my fusion table layer to 'wht_stars'? / Rubbish ***/ var rubbishTable = 1380834; layerRubbishFire = new google.maps.FusionTablesLayer(rubbishTable);