[Google Maps API v3] Re: Changing marker icon

2011-07-18 Thread geocode...@gmail.com
On Jul 18, 2:38 pm, gdp wrote: > Thanks for such friendly responses - this project is on a company > intranet, its not a profit making thing - just me messing about trying > to provide my co-workers with a tool That is against the terms of use unless you have a Premier license. > - it is impossi

Re: [Google Maps API v3] Re: Changing marker icon

2011-07-18 Thread Andrew Leach
On 18 July 2011 19:38, gdp wrote: > Thanks for such friendly responses - this project is on a company > intranet, One problem is that not many people want to assist with breaking the Terms of Use. They are restrictive enough already; we don't really want Google to make them even more so. The fre

[Google Maps API v3] Re: Changing marker icon

2011-07-18 Thread gdp
Thanks for such friendly responses - this project is on a company intranet, its not a profit making thing - just me messing about trying to provide my co-workers with a tool - it is impossible for me to make it public without setting up a duplicate site which would involve me having to make it all

Re: [Google Maps API v3] Re: Changing marker icon

2011-07-18 Thread Florian Behr
Then Read the Terms of Service. Gmaps API is for public use only. 2011/7/18 gdp > unfortunately hidden in a corporate internet :( > > > > On Jul 18, 1:22 pm, "geocode...@gmail.com" > wrote: > > On Jul 18, 7:55 am, gdp wrote: > > > > > Hi - the function below is called to create a set of marker

[Google Maps API v3] Re: Changing marker icon

2011-07-18 Thread geocode...@gmail.com
On Jul 18, 8:36 am, gdp wrote: > unfortunately hidden in a corporate internet :( You can fix that, I can't. http://groups.google.com/group/Google-Maps-API/web/why-including-a-link-is-critical -- Larry > > On Jul 18, 1:22 pm, "geocode...@gmail.com" > wrote: > > > > > > > > > On Jul 18, 7:55

[Google Maps API v3] Re: Changing marker icon

2011-07-18 Thread gdp
unfortunately hidden in a corporate internet :( On Jul 18, 1:22 pm, "geocode...@gmail.com" wrote: > On Jul 18, 7:55 am, gdp wrote: > > > Hi - the function below is called to create a set of markers on a map. > > My problem is that within themarkerclick listener I am trying to > > change theico

[Google Maps API v3] Re: Changing marker icon

2011-07-18 Thread geocode...@gmail.com
On Jul 18, 7:55 am, gdp wrote: > Hi - the function below is called to create a set of markers on a map. > My problem is that within the marker click listener I am trying to > change the icon image. What is in fact happening is that the last > marker to be added to the map ends up showing my 'speci

[Google Maps API v3] Re: changing marker icon from a button

2010-08-04 Thread ActivityPedia
thanks for your advices : it's working now. :-) On 30 juil, 10:21, Henning wrote: > The trigger Method needs an instance:Object as the first parameter to > trigger the event. > > google.maps.event.trigger( marker1 , 'click'); -- You received this message because you are subscribed to the Google

[Google Maps API v3] Re: changing marker icon from a button

2010-07-30 Thread Henning
google.maps.event.trigger needs an instance:Object to trigger the event. google.maps.event.trigger( marker1 , 'click' ); -- 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: changing marker icon from a button

2010-07-30 Thread Henning
The trigger Method needs an instance:Object as the first parameter to trigger the event. google.maps.event.trigger( marker1 , 'click'); -- 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

[Google Maps API v3] Re: changing marker icon from a button

2010-07-30 Thread Rossko
Both 'map' and 'marker1' are local in scope to your initialize() function. When that function has completed, they won't be accessible anymore. The button click runs afterwards. http://econym.org.uk/gmap/scope.htm -- You received this message because you are subscribed to the Google Groups "Go