[Google Maps API v3] Re: V3 - Places Library - var request's "types" attribute is not accepting variable containing string

2011-11-02 Thread Sandeep
Thanks! Sandeep -- 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/-/B57BXhvRqGsJ. To post to this group, send email to google-maps-js

Re: [Google Maps API v3] Re: Moving map to another div

2011-11-02 Thread 吴晓军
hi, I just want to display some area with different color or something like that ,for example ,the china with red.I don't know how to do ,do you know how to do that? > > -- You received this message because you are subscribed to the Google Groups "Google Maps JavaScript API v3" group. To post t

[Google Maps API v3] Re: zoom and fov values

2011-11-02 Thread Masashi.K
How about this page? http://homepage.ntlworld.com/keir.clarke/web/streetviewwizard.htm On 11月1日, 午後3:42, JD Gauchat wrote: > Hi. This is the second time I post this message, don't know what happened > with the previous one. > When I get the information from a street view, the variable I receive i

[Google Maps API v3] Re: Moving map to another div

2011-11-02 Thread Rossko
> I am trying to do something similar.  I want to be able to make multiple > map objects, place markers and change which one map is displayed in the map > div. Why would you do that, rather than just update the map already there to show something else? -- You received this message because you ar

[Google Maps API v3] Re: Adding click event to markers

2011-11-02 Thread Rossko
> But now I would like to activate an javascript event when the marker is > clicked for example: Add event listeners to yoiur markers, and have them run whatever code you want Example http://code.google.com/apis/maps/documentation/javascript/events.html#EventClosures -- You received this message

[Google Maps API v3] Re: Struggling to set up sharing Infowindow link with a unique url inside its own infowindow?

2011-11-02 Thread Rossko
> on this line: class='twitter-share-button' data-url='" The problem code is + "http://groups.google.com/group/google-maps-js-api-v3?hl=en.

[Google Maps API v3] Re: Transaction limits and associated costs

2011-11-02 Thread gleff
Actually, it's not crystal clear but clearer nonetheless. Can you clarify though. "A single map load occurs when: a.the Maps JavaScript API (V2 or V3) is loaded by a web page or application;" I assume this means when the entire API is loaded eg. at initialization only (when the page first loads

Re: [Google Maps API v3] Re: Transaction limits and associated costs

2011-11-02 Thread Jeremy Geerdes
If you check out http://code.google.com/apis/maps/faq.html#tos_mapload you will find what constitutes a transaction listed fairly clearly. Jeremy R. Geerdes Generally Cool Guy Des Moines, IA For more information or a project quote: jrgeer...@gmail.com If you're in the Des Moines, IA, area, chec

[Google Maps API v3] Re: Transaction limits and associated costs

2011-11-02 Thread gleff
Can I just clarify something. If I have a single map loaded, but every 10 seconds I clear all markers/overlays, and re-add new markers/ overlays at different locations. Is that considered one transaction or multiple? Also what about if someone pans the map to a different location, changes the

[Google Maps API v3] Re: Modify Map (add data) after initialization

2011-11-02 Thread geocode...@gmail.com
On Nov 2, 3:23 pm, Kasper wrote: > I have a map on my webpage, which works fine, but I want to add data to it > after it has been initialized. > The map that is showing, is a normal map, with about *20-30 custom* (static) > * markers* on it. > > I would then like to add (*after 1 second*) a *marke

[Google Maps API v3] Re: Adding click event to markers

2011-11-02 Thread Masashi.K
Hi. Do you want to change clickable attribute of marker, don't you? If so, you can change via Marker.setClickable() method. Here is an example. http://googlemaps.googlermania.com/google_maps_api_v3/map_example_click_change.html On 11月2日, 午前7:48, Autive bedrijf wrote: > Hi there, > > Im pretty n

Re: [Google Maps API v3] Style Custom Markers with CSS?

2011-11-02 Thread Luke Mahé
Hey Brian, You're best approach is a custom overlay by using the OverlayView. You can find out more info in the docs - http://code.google.com/apis/maps/documentation/javascript/overlays.html#CustomOverlays -- Luke On Thu, Nov 3, 2011 at 9:22 AM, BrianMB wrote: > We are using user-submitted ph

[Google Maps API v3] Style Custom Markers with CSS?

2011-11-02 Thread BrianMB
We are using user-submitted photos as markers, but we want to scale those images down and give them a border with CSS. Because many browsers render with , this isn't possible. What is the recommended course of action? Thank you! -- You received this message because you are subscribed to the Go

[Google Maps API v3] Modify Map (add data) after initialization

2011-11-02 Thread Kasper
I have a map on my webpage, which works fine, but I want to add data to it after it has been initialized. The map that is showing, is a normal map, with about *20-30 custom* (static) * markers* on it. I would then like to add (*after 1 second*) a *marker* and a *polyline* to the map. But then,

[Google Maps API v3] Re: Struggling to set up sharing Infowindow link with a unique url inside its own infowindow?

2011-11-02 Thread Radina
Chris: Have you checked Firebug errors? Yoo can try following - google.maps.event.addListener(marker, 'click', function() { infowindow.setContent( contentString + "" + "Tweet" ); infowindow.open(map,m

[Google Maps API v3] Re: V3 - Places Library - var request's "types" attribute is not accepting variable containing string

2011-11-02 Thread geocode...@gmail.com
On Nov 2, 2:30 pm, Sandeep wrote: > If I code as below it works: > var request = { > location : initialLocation, > radius : '5000', > types : This is an array of strings: > ['electrician','painter','plumber','roofing_contractor','locksmith','general_contractor']}; > > service = new google.maps.pl

[Google Maps API v3] Re: Moving map to another div

2011-11-02 Thread Ricky Manwell
I am trying to do something similar. I want to be able to make multiple map objects, place markers and change which one map is displayed in the map div. Hoping this post will bump this topic. -- You received this message because you are subscribed to the Google Groups "Google Maps JavaScript

[Google Maps API v3] V3 - Places Library - var request's "types" attribute is not accepting variable containing string

2011-11-02 Thread Sandeep
If I code as below it works: var request = { location : initialLocation, radius : '5000', types : ['electrician','painter','plumber','roofing_contractor','locksmith','general_contractor'] }; service = new google.maps.places.PlacesService(map); service.search(request, callback); ... if I code lik

[Google Maps API v3] Are there valid KML tags that will cause the API to refuse to display a KML file?

2011-11-02 Thread Joseph Elfelt
We know that the API will refuse to display a KML file if: 1. It exceeds 3 MB 2. It exceeds 50,000 (!) features 3. It takes over 4 seconds to load (?to start loading?) I suspect there might be a 4th reason. I think there might be valid KML tags that mean something in Google Earth but which wi

[Google Maps API v3] Re: KML files over https

2011-11-02 Thread Joseph Elfelt
KML/KMZ files can be accessed over https with no problem. For example: http://www.mappingsupport.com/p/gmap4.php?q=https://sites.google.com/site/robbinssite/Home/San_Francisco_Matt_Davis_Loop.kml&t=t2 -- You received this message because you are subscribed to the Google Groups "Google Maps Java

[Google Maps API v3] Re: Listing zoom

2011-11-02 Thread Rossko
In your code you have map.fitBounds(zoom); You can't fitBounds to an integer number. You perhaps meant map.setZoom(zoom), but this would be a poor place to do that unconditionaly as it would mess up any previous fitBounds, if there happened to be one. -- You received this message because yo

[Google Maps API v3] Re: KML files over https

2011-11-02 Thread geocode...@gmail.com
On Nov 2, 12:26 pm, olefevre wrote: > > Did you see this?http://code.google.com/apis/maps/faq.html#ssl > > Yes but that does not seem relevant. My question is not about you can > call Google > over https but whether Google can call you back (to fetch the KML > file) over https. > > > In general, g

[Google Maps API v3] Re: Listing zoom

2011-11-02 Thread Am
Thank you for helping me. I changed the code like you suggested. When I search (arvada, co; 10mi) the marker displays on the map, but the map zoom doesn't change. It stays at the full US zoom. I tried changing the zoom level in the code zoom =8; and nothing happened. I can zoom in manually, but

[Google Maps API v3] Re: Closing a marker info window outside of the map?

2011-11-02 Thread JAaronG
Ahh yes, I am using a jquery google map plugin. I'll try the forum there. -- 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/-/D2pHj

[Google Maps API v3] Re: KML files over https

2011-11-02 Thread olefevre
> Did you see this?http://code.google.com/apis/maps/faq.html#ssl Yes but that does not seem relevant. My question is not about you can call Google over https but whether Google can call you back (to fetch the KML file) over https. > In general, google maps API implementations have to be generally

[Google Maps API v3] Re: Closing a marker info window outside of the map?

2011-11-02 Thread Rossko
> $('#map_canvas').gmap('openInfoWindow', { 'content': 'text goes here'}, You're using some jquery plugin? Best to ask in the support forum for that plugin. In conventional javascript you'd keep a reference to the infowindow so that you could close it later -- You received this message because

[Google Maps API v3] Re: Chrome 15 seems slow

2011-11-02 Thread DannyC
Any update on this? I'm still seeing the issue. (Chrome 15.0.874.106) On Nov 1, 10:00 pm, "Enoch Lau (Google Employee)" wrote: > Thanks for sharing the link - I can see the problem. > > Enoch -- You received this message because you are subscribed to the Google Groups "Google Maps JavaScript

[Google Maps API v3] Closing a marker info window outside of the map?

2011-11-02 Thread JAaronG
Despite my lack of javascript experience, I've successfully got a map that will also give directions to the user. My current problem is that once the directions are given, the infoWindow opened by the marker stays open. Can I close any open infoWindows outside of the main map function somehow?

Re: [Google Maps API v3] Re: Marker Mouseover

2011-11-02 Thread Martin Möbius
thanks that works! Martin 2011/11/1 Rossko > > How I can solve that Markers are not activate his event if there below > > an visible Infowindow. > > Try with marker option optimized set to false > > -- > You received this message because you are subscribed to the Google Groups > "Google Maps Ja

[Google Maps API v3] Adding click event to markers

2011-11-02 Thread Autive bedrijf
Hi there, Im pretty new to the maps api, but after finding out to get my markers just as i want them i came to an problem i cant fix. I for the following code for my markers: function initialize() { > var latlng = new google.maps.LatLng(53.033117,5.639752); > var lating

[Google Maps API v3] track event google maps

2011-11-02 Thread אירנה ארונוב
Hello my google map code is: function initialize(mapdata){var LatLng=new google.maps.LatLng(mapdata[0],mapdata[1]); var myOptions={zoom:16,scaleControl:true,streetViewControl:false,panControl:true,mapTypeControl:true,center:new google.maps.LatLng(mapdata[0],mapdata[1]),mapTypeId:google.maps

[Google Maps API v3] Jsp page where you can specify a route with several points on the route / write to the database / hints

2011-11-02 Thread zerdo
Hi, First of all sorry for my poor English. I am new to Google Maps API. I need to quickly write a simple jsp page where you can specify a route with several points on the route. When entering a point on the route must be prompt. questions: 1) Do you know any tutorial or example of how to add a r

[Google Maps API v3] Re: moving the mouse over the custom marker creates mouseover and mouseout events

2011-11-02 Thread rlk27
sorry and thanks rename the file custommarker.copytohtml to .html. place the html file and image file on a folder and open with a browser view the html file to see my comment on working and nonworking version thanks Rlk27 -- You received this message because you are subscribed to the Goog

[Google Maps API v3] Re: moving the mouse over the custom marker creates mouseover and mouseout events

2011-11-02 Thread geocode...@gmail.com
On Nov 2, 11:31 am, rlk27 wrote: > files attached. I am talking to IT for making this available on the public > server and provide the link.. > >  custommarker.copytohtml > 5KViewDownload > >  BusWithBump_N_48x64.png > < 1KViewDownload You really only have to say the same thing once in a thread..

Re: [Google Maps API v3] Re: moving the mouse over the custom marker creates mouseover and mouseout events

2011-11-02 Thread rlk27
I have renamed the html. image file is attached. I also copy pased the html -- 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/-/T

[Google Maps API v3] Re: moving the mouse over the custom marker creates mouseover and mouseout events

2011-11-02 Thread rlk27
files attached. I am talking to IT for making this available on the public server and provide the link.. -- 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/

Re: [Google Maps API v3] Re: moving the mouse over the custom marker creates mouseover and mouseout events

2011-11-02 Thread rlk27
I have renamed the html file this time. I am talking to my IT to have it posted on a public server,, -- 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/g

[Google Maps API v3] Re: moving the mouse over the custom marker creates mouseover and mouseout events

2011-11-02 Thread rlk27
*Google* Maps JavaScript API v3: Custom Marker Demo http://maps.googleapis.com/maps/api/js?v=3.5&sensor=true"*> * function* CustomMarker(latlng, map) { google.maps.OverlayView.call(*this*); * this*.latlng_ = latlng; // Once the LatLng and text are set, add the overlay t

[Google Maps API v3] Re: moving the mouse over the custom marker creates mouseover and mouseout events

2011-11-02 Thread geocode...@gmail.com
On Nov 2, 9:39 am, rlk27 wrote: > please see if this works > > http://192.168.10.162:8080/custommarker.html 192.168.10.162 is a private network. We won't be able to get to it. > > if not , I will send my html and img. A publicly available link would be more useful. -- Larry > > if you cir

Re: [Google Maps API v3] Re: moving the mouse over the custom marker creates mouseover and mouseout events

2011-11-02 Thread rlk27
Sending attachments again. Pl check. until then, I will figure out a place to host these files.. -- 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-

Re: [Google Maps API v3] Re: moving the mouse over the custom marker creates mouseover and mouseout events

2011-11-02 Thread Andrew C Leach
On 2 November 2011 16:39, rlk27 wrote: > please see if this works > > http://192.168.10.162:8080/custommarker.html That won't work on anyone's network but yours. > Html file and image files attached The HTML has no Javascript included at all. Please host the application in a location which any

[Google Maps API v3] Re: moving the mouse over the custom marker creates mouseover and mouseout events

2011-11-02 Thread rlk27
Html file and image files attached -- 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/-/vYBgXn8al_kJ. To post to this group, send emai

[Google Maps API v3] Re: moving the mouse over the custom marker creates mouseover and mouseout events

2011-11-02 Thread rlk27
please see if this works http://192.168.10.162:8080/custommarker.html if not , I will send my html and img. if you circle on the image you will see infowindow flicker and count incresing. it works perfect if remove my custom image html for the custom marker. We create the custom image h

[Google Maps API v3] map generator for measurements

2011-11-02 Thread Arjan
I want to generate an animation of a set of events at different locations over time using GoogleMaps as background for my data. An example: rain-intensity in mm per hour in a given month for all sampling stations in my country. I would like to make a script that "eats" my data (200 stations with fo

[Google Maps API v3] Re: Markers randomly appear behind Polylines

2011-11-02 Thread Tiby Ionescu
Your welcome. I posted the issue in the Google Maps API bug tracker ( http://code.google.com/p/gmaps-api-issues/issues/detail?id=3711 ), but I'll try to gather some more information from the Chrome debugger before posting to it's own list (I suppose it's the chromium bug tracker). Maybe someone c

[Google Maps API v3] Re: Strange behaviuor with kmz markers

2011-11-02 Thread az az
> > They look OK to me (I don't see any blue markers on your map).  There > have been a couple of similar threads recently: > > http://groups.google.com/group/google-maps-js-api-v3/search?group=goo... > >   -- Larry Larry they have a problem still. Try zooming in and out and you should see it. In