[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:
> 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);
>
> should be replaced by a line:
>
>   filterData();

-- 
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-api-v3+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-maps-js-api-v3?hl=en.



[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 example is not just for fun.

-- 
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-api-v3+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-maps-js-api-v3?hl=en.



[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 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-api-v3+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-maps-js-api-v3?hl=en.



[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, send email to google-maps-js-api-v3@googlegroups.com.
To unsubscribe from this group, send email to 
google-maps-js-api-v3+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-maps-js-api-v3?hl=en.



[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 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/-/EudAPeKv550J.
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-api-v3+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-maps-js-api-v3?hl=en.



[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 "zoom here" link. That HREF goes to:
>
> javascript:map.setCenter(point3)
>
> -which results in the JavaScript error "ReferenceError: Can't find
> variable: map". Map was defined as
>
> var map = new google.maps.Map(document.getElementById("map_canvas"),
> myOptions);
>
> -and references to it else work. So, the problem seems to be one of
> context and scope.
>
> How do I fix that javascript call so the browser can find the "map"
> object and call setCenter?

Make it global (for more details see Mike Williams' explanation of
javascript variable scope in his v2 tutorial).

Currently it is local to your initialize function.

Change:
function initialize() {
...
  var map = new google.maps.Map(document.getElementById("map_canvas"),
myOptions);

To:
var map = null;
function initialize() {
...
  map = new google.maps.Map(document.getElementById("map_canvas"),
myOptions);

  -- Larry

-- 
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-api-v3+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-maps-js-api-v3?hl=en.



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 to this group, send email to google-maps-js-api-v3@googlegroups.com.
To unsubscribe from this group, send email to 
google-maps-js-api-v3+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-maps-js-api-v3?hl=en.



[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:

javascript:map.setCenter(point3)

-which results in the JavaScript error "ReferenceError: Can't find
variable: map". Map was defined as

var map = new google.maps.Map(document.getElementById("map_canvas"),
myOptions);

-and references to it else work. So, the problem seems to be one of
context and scope.

How do I fix that javascript call so the browser can find the "map"
object and call setCenter?

-- 
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-api-v3+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-maps-js-api-v3?hl=en.



[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 the Service ...
including ... places data"

and

" 10.1.1. General Restrictions.
...
(g) No Use of Content without a Google Map. You must not use or
display the Content without a corresponding Google map, unless you are
explicitly permitted to do so in the Maps APIs Documentation, or
through written permission from Google. For example, you must not use
geocodes obtained through the Service except in conjunction with a
Google map"

You'd have to ask your own lawyer, but I don't think that can be
interpreted as "show it on a map, and then you can do what you like
with it afterwards"

And as you say, 10.1.3 reinforces the prohibition further

Of course that's all about use for free, as you are talking about
using Google's data for commercial advantage it's probably worth
looking at commercial licensing
http://www.google.com/support/enterprise/bin/request.py?contact_type=gme&utm_campaign=en-us-codeterms

-- 
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-api-v3+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-maps-js-api-v3?hl=en.



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: [
>    {
>  featureType: "poi.business",
>  elementType: "labels",
>  stylers: [
>    { visibility: "off" }
>  ]
>    }
>  ]});
>
>
> Also you need to put it after you create the map. The link you showed
> had it after.
>
> There is absolutly no need for the complicated(ish) function that Pil showed
>
> http://www.nearby.org.uk/google/temp/no-hotels1.php
>
>
> On Wed, Aug 31, 2011 at 5:48 PM, bigfoot1  wrote:
>> 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 JavaScript API v3" group.
>> To view this discussion on the web visit
>> https://groups.google.com/d/msg/google-maps-js-api-v3/-/Yk6ak13VsAsJ.
>> 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-api-v3+unsubscr...@googlegroups.com.
>> For more options, visit this group at
>> http://groups.google.com/group/google-maps-js-api-v3?hl=en.
>>
>

-- 
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-api-v3+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-maps-js-api-v3?hl=en.



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 showed
had it after.

There is absolutly no need for the complicated(ish) function that Pil showed

http://www.nearby.org.uk/google/temp/no-hotels1.php


On Wed, Aug 31, 2011 at 5:48 PM, bigfoot1  wrote:
> 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 JavaScript API v3" group.
> To view this discussion on the web visit
> https://groups.google.com/d/msg/google-maps-js-api-v3/-/Yk6ak13VsAsJ.
> 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-api-v3+unsubscr...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/google-maps-js-api-v3?hl=en.
>

-- 
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-api-v3+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-maps-js-api-v3?hl=en.



[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 
customers were searching for products but I'm unsure if that would be a 
violation of 10.1.3 (b) or maybe other parts of the Terms of Service.  

-- 
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/-/_tVzuatyyOEJ.
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-api-v3+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-maps-js-api-v3?hl=en.



[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 the edges of the map. At the edge, the InfoBubble will be cut off.
'autoPan: true' makes the map feel sluggish so I can't use it
(basically, the user can fly the mouse over the map and when they stop
for a moment the popup will be displayed giving facts about the
polygon).

Is there any way around this? A nasty CSS hack, perhaps?

I'm trying to avoid having to switch the orientation of the InfoBubble
according to whether the edge is? If someone has implemented this
algorithm could she or he point me in the right direction? Perhaps
there is a flag in InfoBubble itself that will enable this behavior?
(I'm going through the source now myself to see if this will work).

Finally, I want to say thanks to all of the people that participate in
this group. I've been lurking on the forum for a few months, and it
has been really helpful to me. And a huge "thank you" to the
developers of geoxml3 (polys branch) and InfoBubble, as these projects
have been life-savers!

Regards,
Lloyd

-- 
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-api-v3+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-maps-js-api-v3?hl=en.



[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 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-api-v3+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-maps-js-api-v3?hl=en.



[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);

should be replaced by a line:

  filterData();

-- 
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-api-v3+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-maps-js-api-v3?hl=en.



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 want only the path to be shown. Then as and when the
> mouse is hovered over the path, the marker should be visible and the related
> information should also be visible.
> That's why I made the marker visible with the polyline mouseover. But it
> doesn't seem to work

We know what you're trying to do. It would make things SO much easier
if you followed the posting guidelines and posted a link.

However: from your earlier listing, you are adding five markers and
calling them all "marker", so only the last one will actually exist in
a referenceable state. In addition to that, the "marker" variable is
local to a function, so you can't reference that variable in another
function.

If you want to use all five markers in another function, you need to
assign them all to a global array and use a createMarker function or
something similar to get closure on each and tie all its properties,
listeners and the like together. Search for "helper function" or look
at Mike's (v2) or Larry's (v3) examples.

-- 
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-api-v3+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-maps-js-api-v3?hl=en.



[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 the 
mouse is hovered over the path, the marker should be visible and the related 
information should also be visible.

That's why I made the marker visible with the polyline mouseover. But it 
doesn't seem to work

-- 
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/-/vaLZgY29jkgJ.
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-api-v3+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-maps-js-api-v3?hl=en.



[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 to google-maps-js-api-v3@googlegroups.com.
To unsubscribe from this group, send email to 
google-maps-js-api-v3+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-maps-js-api-v3?hl=en.



[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 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-api-v3+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-maps-js-api-v3?hl=en.



[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 31, 6:48 pm, bigfoot1  wrote:
> 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 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-api-v3+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-maps-js-api-v3?hl=en.



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 
https://groups.google.com/d/msg/google-maps-js-api-v3/-/90tV3oY9KbIJ.
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-api-v3+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-maps-js-api-v3?hl=en.



[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 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/-/0om6hgbMrY0J.
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-api-v3+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-maps-js-api-v3?hl=en.



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 zoom out too far :)

On Wed, Aug 31, 2011 at 5:42 PM, Robin Bijlani  wrote:
> 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 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/-/8Il70biGaKEJ.
> 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-api-v3+unsubscr...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/google-maps-js-api-v3?hl=en.
>

-- 
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-api-v3+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-maps-js-api-v3?hl=en.



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 JavaScript API v3" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-maps-js-api-v3/-/Yk6ak13VsAsJ.
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-api-v3+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-maps-js-api-v3?hl=en.



[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 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/-/8Il70biGaKEJ.
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-api-v3+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-maps-js-api-v3?hl=en.



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 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-api-v3+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-maps-js-api-v3?hl=en.



[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 map style.
> These are normally pixels, abbreviated: px
>
> > code:
>
> No code desired.

-- 
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-api-v3+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-maps-js-api-v3?hl=en.



[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.

JF

-- 
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-api-v3+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-maps-js-api-v3?hl=en.



[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 this seems to stop the checkbox being checked at launch. But all
the data that refers to shows on the map. It only goes when I check it
and then uncheck it again.

[It's important because people access our maps from phones and I don't
want them to have to wait for all data to load at start (only to load
when they check a box).]

Here is the page:
http://www.satpacktravel.com/API/api_13bad.html

Any help much appreciated (again).

-- 
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-api-v3+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-maps-js-api-v3?hl=en.



[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.

-- 
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-api-v3+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-maps-js-api-v3?hl=en.



[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"}
  }
   ],
  suppressInfoWindows: true
};

layerRubbishFire = new google.maps.FusionTablesLayer(layerOptions);
  layer1.setMap(map);
}

You can use different icons for different data ("starCondition"
above).

- Jeff

On Aug 31, 5:31 am, "geocode...@gmail.com" 
wrote:
> 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 group
> (either this one or the Fusion Tables group) should yield a couple as
> well.
>
>   -- Larry

-- 
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-api-v3+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-maps-js-api-v3?hl=en.



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 javascript to
code a search "engine" on that array.

You can make it as simplistic, or as advanced as required for your
application. At the most basic level it could just use string.indexOf
to check each result in a loop. and if matches show the marker on the
map. (perhaps hiding any non-matching results)

On Wed, Aug 31, 2011 at 11:24 AM, mmm  wrote:
> 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 
> "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-api-v3+unsubscr...@googlegroups.com.
> For more options, visit this group at 
> http://groups.google.com/group/google-maps-js-api-v3?hl=en.
>
>

-- 
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-api-v3+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-maps-js-api-v3?hl=en.



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@googlegroups.com] On Behalf Of JFrancis
Sent: 30 August 2011 19:01
To: Google Maps JavaScript API v3
Subject: [Google Maps API v3] Re: KML sidebar and info window

Since you have the  node declared and populated with
, have you tried adding the
information to the node as HTML, like this?



JF

-- 
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-api-v3+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-maps-js-api-v3?hl=en.

-- 
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-api-v3+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-maps-js-api-v3?hl=en.



[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 
"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-api-v3+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-maps-js-api-v3?hl=en.



[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 discussion on the web visit 
https://groups.google.com/d/msg/google-maps-js-api-v3/-/AHXJMb3IqMYJ.
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-api-v3+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-maps-js-api-v3?hl=en.



[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-js-api-v3@googlegroups.com.
To unsubscribe from this group, send email to 
google-maps-js-api-v3+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-maps-js-api-v3?hl=en.



[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 group
(either this one or the Fusion Tables group) should yield a couple as
well.

  -- Larry

-- 
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-api-v3+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-maps-js-api-v3?hl=en.



[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 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.h...
>
> The DOM events 'onmouseover' and 'onmouseout' will tell you if the
> mouse is within the map bounds or not.
>
> Martin.
>
> On Aug 31, 7:47 am, Shreerang Patwardhan
>
>
>
>
>
>
>
>  wrote:
> > Hello Pil,
>
> > I am the author of that example code and that is my blog only. And well, you
> > have got the problem right. Now how can we find a solution for the
> > flickering problem?
>
> > --
> > *Shreerang Patwardhan*
>
> > ***Personal website:* Spatial
> > Unlimited
>
> > On Wed, Aug 31, 2011 at 12:12 PM, Pil  wrote:
> > > Yes, that's why the author didn't provide an example but instead was
> > > using pictures. I'm always sceptical when there is no example
> > > available.
>
> > > This code is all too simple to work properly, because as soon as the
> > > cursor hovers over an object inside the map the mouseout listener
> > > fires and tries to execute disableDefaultUI: true. And because the
> > > cursor is still on the map the mousemove listener fires immediately
> > > afterwards and tries to execute  disableDefaultUI: false. The
> > > presumable result is that the controls are flickering as long as the
> > > cursor tries to execute conflicting statements.
>
> > > The solution is not as easy as it sounds, because you have to avoid
> > > that a mouseout event will be fired when the cursor moves over a child
> > > element.
>
> > > On Aug 31, 8:12 am, Shreerang Patwardhan
> > >  wrote:
> > > > Hello Group,
>
> > > > I put up an example to switch on and off the map controls on the mouse
> > > over
> > > > and mouse out event. Which means, if your mouse if over the map, the map
> > > > controls will be enabled and once the mouse is outside the map, the
> > > controls
> > > > will disappear.
>
> > > > You can find the code athttp://
> > > shreerangpatwardhan.blogspot.com/2011/07/playing-with-map-cont...
>
> > > > Now, the problem is that when the mouse pointer is over the controls, 
> > > > the
> > > > map controls become invisible and the mouse pointer keeps flickering
> > > along
> > > > with the street view control. How do I get around this problem?
>
> > > > Any help is greatly appriciated
>
> > > > -- *
> > > > Shreerang Patwardhan
>
> > > > **Personal website:* Spatial Unlimited<
> > >http://shreerangpatwardhan.blogspot.com/>
>
> > > --
> > > 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-api-v3+unsubscr...@googlegroups.com.
> > > For more options, visit this group at
> > >http://groups.google.com/group/google-maps-js-api-v3?hl=en.

-- 
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-api-v3+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-maps-js-api-v3?hl=en.



[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=3413
Two people have 'starred' it so far

-- 
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-api-v3+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-maps-js-api-v3?hl=en.



[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 be the same as a bus
route.

-- 
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-api-v3+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-maps-js-api-v3?hl=en.



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 Derbah" 
To: 
Subject: [Google Maps API v3] I can't access Korea detail basemap on 
android and iphone
Date: Wed, Aug 31, 2011 12:06 am
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.google.com/apis/maps/documentation/javascript/basics.html#Versioning

> 
> -Andres
> 
> 
> On Tue, Aug 30, 2011 at 6:30 PM, hyojoon cha  wrote:
> 
>> Hi Andres. Thank you for your reponse.

>>
>> Here is my map address. You have to access this page on android or iphone 4
>> mobile phone.
>>
>> If you access this page on your desktop, you can see detail road map of

>> South Korea, but If you do this page on your mobile phone, you can see only
>> grey color map not include detail road map.
>>
>> and you also see this situation on
>> http://code.google.com/intl/ko-KR/apis/maps/documentation/javascript/

>>
>> This page is Goolge map API V3 homepage. You can see mobile map page at
>> center of this page. If you pan to South Korea and chagne map optioin(turn
>> off check box, territory), you can see only grey color map not include

>> detail road map.
>>
>> Thank you. I hope your fast response. I am very hurry.
>>
>> 2011/8/31 Andres Ferrate 

>>
>>> Hyojoon,
>>>
>>> Can you provide a link to your map page?
>>>
>>> Thanks,
>>>
>>> Andres
>>>
>>>

>>> On Mon, Aug 29, 2011 at 9:16 PM, hyojoon cha wrote:
>>>
 Hi. I am mobile map develper on android and iphone.


 My test phone version is below
  - Android version 2.2
  - IOS 4.3

 I made "traffic information map" using google map API v3. but I can't

 see Korea detail base map on my test phone.

 If I access my page on desktop or ipad, I can see Korea detail basemap
 but I can't on my smart phone.


 How can I do? My page could access Korea detail map using ver 3.0 last
 month. but now my page can't access Korea detail map

 Thank you.


 --
 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-api-v3+unsubscr...@googlegroups.com.

 For more options, visit this group at
 http://groups.google.com/group/google-maps-js-api-v3?hl=en.



>>> --
>>> 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-api-v3+unsubscr...@googlegroups.com.

>>> For more options, visit this group at
>>> http://groups.google.com/group/google-maps-js-api-v3?hl=en.
>>>
>>

>>
>>
>> --
>>
>> =
>>
>> (주)에스엘솔루션 대표이사 차 효 준
>> justeen@gmail.com

>> 070-4354-4900
>> 010-9479-1269
>>
>>  --
>> 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-api-v3+unsubscr...@googlegroups.com.

>> For more options, visit this group at
>> http://groups.google.com/group/google-maps-js-api-v3?hl=en.
>>
> 
> -- 

> 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-api-v3+unsubscr...@googlegroups.com.
> For more options, visit this group at 
> http://groups.google.com/group/google-maps-js-api-v3?hl=en.

>

-- 
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-api-v3+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-maps-js-api-v3?hl=en.



[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-v3@googlegroups.com.
To unsubscribe from this group, send email to 
google-maps-js-api-v3+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-maps-js-api-v3?hl=en.



[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 the bus, then a marker with the required 
information should be visible. Hence, instead of a polyline, the direction 
service would be better for me. But the direction service doesn't have event 
handlers with mouseover. Any alternative to this?

-- 
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/-/3_j9_-PJdrYJ.
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-api-v3+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-maps-js-api-v3?hl=en.



[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 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-api-v3+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-maps-js-api-v3?hl=en.



[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 'onmouseover' and 'onmouseout' will tell you if the
mouse is within the map bounds or not.

Martin.


On Aug 31, 7:47 am, Shreerang Patwardhan
 wrote:
> Hello Pil,
>
> I am the author of that example code and that is my blog only. And well, you
> have got the problem right. Now how can we find a solution for the
> flickering problem?
>
> --
> *Shreerang Patwardhan*
>
> ***Personal website:* Spatial
> Unlimited
>
>
>
>
>
>
>
> On Wed, Aug 31, 2011 at 12:12 PM, Pil  wrote:
> > Yes, that's why the author didn't provide an example but instead was
> > using pictures. I'm always sceptical when there is no example
> > available.
>
> > This code is all too simple to work properly, because as soon as the
> > cursor hovers over an object inside the map the mouseout listener
> > fires and tries to execute disableDefaultUI: true. And because the
> > cursor is still on the map the mousemove listener fires immediately
> > afterwards and tries to execute  disableDefaultUI: false. The
> > presumable result is that the controls are flickering as long as the
> > cursor tries to execute conflicting statements.
>
> > The solution is not as easy as it sounds, because you have to avoid
> > that a mouseout event will be fired when the cursor moves over a child
> > element.
>
> > On Aug 31, 8:12 am, Shreerang Patwardhan
> >  wrote:
> > > Hello Group,
>
> > > I put up an example to switch on and off the map controls on the mouse
> > over
> > > and mouse out event. Which means, if your mouse if over the map, the map
> > > controls will be enabled and once the mouse is outside the map, the
> > controls
> > > will disappear.
>
> > > You can find the code athttp://
> > shreerangpatwardhan.blogspot.com/2011/07/playing-with-map-cont...
>
> > > Now, the problem is that when the mouse pointer is over the controls, the
> > > map controls become invisible and the mouse pointer keeps flickering
> > along
> > > with the street view control. How do I get around this problem?
>
> > > Any help is greatly appriciated
>
> > > -- *
> > > Shreerang Patwardhan
>
> > > **Personal website:* Spatial Unlimited<
> >http://shreerangpatwardhan.blogspot.com/>
>
> > --
> > 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-api-v3+unsubscr...@googlegroups.com.
> > For more options, visit this group at
> >http://groups.google.com/group/google-maps-js-api-v3?hl=en.

-- 
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-api-v3+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-maps-js-api-v3?hl=en.



[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/javascript/reference.html#MouseEvent

So when a user hovers the mouse over any part of a Polyline your
mouseover event listener is passed a MouseEvent and that MouseEvent
contains the LatLng of the point on the Polyline that has been hovered
over.

You could add a Marker to the Map at that LatLng etc.

The mouseout event listener could remove that same Marker from the
Map.

Martin.


On Aug 31, 9:41 am, Rohit Bhat  wrote:
> 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?

-- 
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-api-v3+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-maps-js-api-v3?hl=en.



[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?

-- 
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/-/hepMegxHaR8J.
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-api-v3+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-maps-js-api-v3?hl=en.



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.google.com/apis/maps/documentation/javascript/basics.html#Versioning
>
> -Andres
>
>
> On Tue, Aug 30, 2011 at 6:30 PM, hyojoon cha 
wrote:
>
>> Hi Andres. Thank you for your reponse.
>>
>> Here is my map address. You have to access this page on android or iphone
4
>> mobile phone.
>>
>> If you access this page on your desktop, you can see detail road map of
>> South Korea, but If you do this page on your mobile phone, you can see
only
>> grey color map not include detail road map.
>>
>> and you also see this situation on
>> http://code.google.com/intl/ko-KR/apis/maps/documentation/javascript/
>>
>> This page is Goolge map API V3 homepage. You can see mobile map page at
>> center of this page. If you pan to South Korea and chagne map
optioin(turn
>> off check box, territory), you can see only grey color map not include
>> detail road map.
>>
>> Thank you. I hope your fast response. I am very hurry.
>>
>> 2011/8/31 Andres Ferrate 
>>
>>> Hyojoon,
>>>
>>> Can you provide a link to your map page?
>>>
>>> Thanks,
>>>
>>> Andres
>>>
>>>
>>> On Mon, Aug 29, 2011 at 9:16 PM, hyojoon cha wrote:
>>>
 Hi. I am mobile map develper on android and iphone.

 My test phone version is below
 - Android version 2.2
 - IOS 4.3

 I made "traffic information map" using google map API v3. but I can't
 see Korea detail base map on my test phone.

 If I access my page on desktop or ipad, I can see Korea detail basemap
 but I can't on my smart phone.

 How can I do? My page could access Korea detail map using ver 3.0 last
 month. but now my page can't access Korea detail map

 Thank you.

 --
 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-api-v3+unsubscr...@googlegroups.com.
 For more options, visit this group at
 http://groups.google.com/group/google-maps-js-api-v3?hl=en.


>>> --
>>> 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-api-v3+unsubscr...@googlegroups.com.
>>> For more options, visit this group at
>>> http://groups.google.com/group/google-maps-js-api-v3?hl=en.
>>>
>>
>>
>>
>> --
>>
>> =
>>
>> (주)에스엘솔루션 대표이사 차 효 준
>> justeen@gmail.com
>> 070-4354-4900
>> 010-9479-1269
>>
>> --
>> 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-api-v3+unsubscr...@googlegroups.com.
>> For more options, visit this group at
>> http://groups.google.com/group/google-maps-js-api-v3?hl=en.
>>
>
> --
> 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-api-v3+unsubscr...@googlegroups.com.
> For more options, visit this group at
http://groups.google.com/group/google-maps-js-api-v3?hl=en.
>

-- 
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-api-v3+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-maps-js-api-v3?hl=en.



[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);

 layerRubbishFire.setQuery("SELECT 'LATITUDE' FROM " + rubbishTable);

 layerRubbishFire.setMap(map);


-- 
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-api-v3+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-maps-js-api-v3?hl=en.