[Google Maps API v3] Re: HTML, KML, and the Noob

2011-11-21 Thread Rossko
> https://sites.google.com/site/duffyfileskml/westchesterfiles Won't do; if I open that in a browser, I get a menu system. Google's servers won't know what to do with that, they expect KML directly In this case the url to supply to KmlLayer would be https://sites.google.com/site/duffyfileskml/wes

[Google Maps API v3] Re: Latitude / Longitude border values for shown map

2011-11-19 Thread Rossko
> I' looking for a possibility to get the borders of the currently SHOWN > map."LatLngBounds" returns the general borders but I want to get e.g. > the latitude value at the top and the bottom of the map. Wjy wouldn't you just extract those values from the bounds? var top = mymap.getBounds().get

[Google Maps API v3] Re: SideBar Not Working

2011-11-19 Thread Rossko
> I'm sure it's something quite simple, but could you possibly please show me > what I 've done wrong. Now you've rearranged the code, I would suggest going through and methodically indenting it, so you can see whats inside functions, loops etc., and make your code easier to read. I rather think y

[Google Maps API v3] Re: Possible to Determine if Point is within Shape?

2011-11-19 Thread Rossko
> Given a latitude-longitude point, is there an easy code that I can use to > determine whether or not that point is within the bounds of the > user-defined geometrical shape? Search for 'point in polygon' useful examples http://alienryderflex.com/polygon/ http://groups.google.com/group/google-map

[Google Maps API v3] Re: Directions in Infowindow not lat/lng

2011-11-19 Thread Rossko
> When I make a KML file and then point Google Maps to it, like: For questions about maps.google.com, use http://groups.google.com/group/Google-Maps > Is there > any way to make that box say, "737 Prior Street", There are ways to do it with the Maps API on your own webpages, but you may not want

[Google Maps API v3] Re: Finding driving routes

2011-11-18 Thread Rossko
>  I have tryed to change the value of start so it uses geolocation but > i can`t figure out how to do it right. What did you try? Bear in mind the original code was written for string values var start = document.getElementById("start").value; var end = document.getElementById("end").valu

[Google Maps API v3] Re: KML layer sometimes displaying; sometimes not

2011-11-18 Thread Rossko
> It sort of appears that Google is caching the KML That's what KmlLayer does, there are ways around that if you search this group. > and won't display > until it has actually cached the KML. If you mean it takes some time for your KML to be read, because it is slow to generate or the uplink is

[Google Maps API v3] Re: Google Maps online editing or drawing tools

2011-11-18 Thread Rossko
> Any reference sample, API for this, desperate need it. >From a very quick search http://groups.google.com/group/google-maps-js-api-v3/browse_thread/thread/3d5072c41f4f502c http://groups.google.com/group/google-maps-js-api-v3/browse_thread/thread/ad48099728b10a67 -- You received this message be

[Google Maps API v3] Re: Problem with calls to places

2011-11-18 Thread Rossko
> I read the documentation you suggested, and I think I am ok.  I only need > to retreive the place locations on a month or so.  I am guessing that there > is no more than 200 places in total. So you just want to scrape and save Google's data for a given area? -- You received this message becaus

[Google Maps API v3] Re: Problem with calls to places

2011-11-17 Thread Rossko
> Do you have any suggestions about how to retrieve more than 20 results. Not really. They set the limit to prevent abuse. > I was thinking of creating an arry of lat/lng boxes and then loop through > them as a way around the limit of 20. You'll need to read this part of the docs too http://cod

[Google Maps API v3] Re: Problem with calls to places

2011-11-17 Thread Rossko
> Does the places api have a maximum number of entries that can be returned > in one call. You could try the documentation I suppose http://code.google.com/apis/maps/documentation/places/#PlaceSearchResponses " The Places API returns up to 20 establishment results. Additionally, political results

[Google Maps API v3] Re: Infobubble 'jumping' out of view

2011-11-17 Thread Rossko
> Well thats what I'm trying to fix; the info window is supposed to be > created after the marker so that it scrolls into view Works for me in IE. Nearly works in FF, but not so neatly as the width of the infowindow doesn't fit the small map(allowing for controls) so the scroll stops short, and th

[Google Maps API v3] Re: Finding driving routes

2011-11-17 Thread Rossko
> I find my position on the map automatically via geolocation, but can`t > figure how i can get the "end" dropdownlist to work propperly. >     // Retrieve the start and end locations and create >     // a DirectionsRequest using DRIVING directions. >     var start = document.getElementById("star

[Google Maps API v3] Re: Mileage By State

2011-11-17 Thread Rossko
> You would think that a Stateline would constitute some type of object, at > least as a Point of Interest or a flag that would be available as a > breakpoint. Directions service provides directions, its not purposed to provide points of interest. You could make an enhancement request, and see if

[Google Maps API v3] Re: Infobubble 'jumping' out of view

2011-11-17 Thread Rossko
> http://www.zoponline.com/googlemap/ Seems to work reasonably to me ; the infowindow is a little too big to fit comfortably on the 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 googl

[Google Maps API v3] Re: Distance Travelled?

2011-11-17 Thread Rossko
> Thanks again, next question is there a snap to road function? No but you can use Directions for that purpose http://groups.google.com/group/google-maps-js-api-v3/search?group=google-maps-js-api-v3&q=snap+to+road -- You received this message because you are subscribed to the Google Groups "Goo

[Google Maps API v3] Re: Distance Travelled?

2011-11-17 Thread Rossko
> have used GIS libraries before, could I log the position and snap to a > road, log the roads that have been travelled on then from the start > co-ordinate calculate the cumulative distance travelled to the end point > using the length of each road? Yes, if you know the roads that have been trave

[Google Maps API v3] Re: Distance Travelled?

2011-11-17 Thread Rossko
> Is there any built in routines in the API to calculate distance > travelled from a known start point. No. The API cannot know what route you have taken to arrive 'here'. What actual information do you have about the journey? -- You received this message because you are subscribed to the Googl

[Google Maps API v3] Re: Creating a Google Maps embed to distribute your application to other sites (API Terms)

2011-11-17 Thread Rossko
> ... to have a handler on my server which gets the API code from > google, generates code for the client, puts them together and serves > it as a single script file (this would be easier for the client). That isn't allowed, apart from I don't think it'd work anyway. The client must load the API

[Google Maps API v3] Re: Creating a Google Maps embed to distribute your application to other sites (API Terms)

2011-11-17 Thread Rossko
> So, practically I am distributing the API That wouldn't be allowed, but I expect it's not really what you are doing. Will the "other page" be loading the API from google? -- You received this message because you are subscribed to the Google Groups "Google Maps JavaScript API v3" group. To po

[Google Maps API v3] Re: How to capture events with a GWT element?

2011-11-17 Thread Rossko
> Is it possible to capture an event generated inside a control (GWT > DropDox) with some kind of listener/handler?? I think this is a question for GWT group http://groups.google.com/group/gwt-google-apis -- You received this message because you are subscribed to the Google Groups "Google Maps

[Google Maps API v3] Re: Mutipage- Display Google Map

2011-11-17 Thread Rossko
> I'm constructing a Mutipage app using viewmanager function while adding the > map into one of my page it cant work! Help needed for this part on how do i > write the map in and disply as of the "print screen". I don't understand this. Share a link to your map so we can see what you are trying t

[Google Maps API v3] Re: Geocoding a street addresses returns locations off the road

2011-11-17 Thread Rossko
> The resulting lat/lng pair, when used to place a marker, puts it in > the empty space next to the road. It's not indicating empty space - have you looked at satellite imagery? - the marker is on a building. The geocoding results have location_type : "ROOFTOP" http://code.google.com/apis/maps/do

[Google Maps API v3] Re: iPad app paints Google maps with getCurrentPosition but not without

2011-11-15 Thread Rossko
> Tweaked standard Google tutorial > code to go to photo GPS location, which happens to be a street in > Stavelot, Belgium. Seems an odd example to start from for this purpose, simpler marker placement example http://code.google.com/apis/maps/documentation/javascript/overlays.html#Markers > var s

[Google Maps API v3] Re: Geocoding TOS issues

2011-11-15 Thread Rossko
> When a user makes a query, we use > this stored data to determine what locations are near the address the user > entered. Only if you then use that data on a Google Map The v3 'Articles' pages contains examples and how-to guides for doing just this written by Google employees, just as v2 did, s

[Google Maps API v3] Re: The need of Google Maps Premium?

2011-11-15 Thread Rossko
> The map will contain some basic free > information related to the competition, however I will make more > information (basically an overlaid KML-file) visible for those who pay > a small fee. Have a look at what Thor says in this thread http://groups.google.com/group/google-maps-js-api-v3/browse

[Google Maps API v3] Re: map api v2 : GDirections() object

2011-11-15 Thread Rossko
> about v2. Interpretation problem! You can access the code > athttp://web.iiit.ac.in/~vishal.gargug08/test/index.php It's not a v3 map, post in the v2 group -- You received this message because you are subscribed to the Google Groups "Google Maps JavaScript API v3" group. To post to this grou

[Google Maps API v3] Re: map api v2 : GDirections() object

2011-11-15 Thread Rossko
> some v3 user like me using some parts > of v2 ... You can't use parts of v2 in v3, maybe that is your problem. -- 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@googleg

[Google Maps API v3] Re: Google Maps javascript loop problem

2011-11-14 Thread Rossko
> When I click on any of the markers the final infowindow in the loop always > opens. I don't see any loop in your code. You re-use the same variable 'infowindow' twice, so its content gets left at the last value for whatever may get clicked later. There are in fact a lot of similar posts in the

[Google Maps API v3] Re: maps causing firewall to block me , DOS

2011-11-14 Thread Rossko
> code at :http://www.photofields.co.uk Looks sensible enough. What should we see? I just get grey watermarked tiles, but that suggests I'm not blocked out (yet) -- You received this message because you are subscribed to the Google Groups "Google Maps JavaScript API v3" group. To post to this

[Google Maps API v3] Re: Event fired after map finished rendering

2011-11-13 Thread Rossko
> Is there an event which is fired automatically after the map finished > rendering? 'tilesloaded' should be close http://code.google.com/apis/maps/documentation/javascript/reference.html#Map -- You received this message because you are subscribed to the Google Groups "Google Maps JavaScript AP

[Google Maps API v3] Re: Marker Data from MySQL

2011-11-13 Thread Rossko
> *is there a way to download this data separatly or use marker geocode? That's a question to ask the authors/users of the Gmap3 jquery plugin you are using. Maybe here? http://www.jsclasses.org/discuss/package/71/ -- You received this message because you are subscribed to the Google Groups "Go

[Google Maps API v3] Re: could someone have a quick look at my code - map not showing up at all

2011-11-13 Thread Rossko
> map not showing on this > page $(function() { $("#map").goMap({ etc You don't seem to have any Here's an example of using gomap http://www.pittss.lv/jquery/gomap/ -- You received this message because you

[Google Maps API v3] Re: GroundOverlay with full earth coverage

2011-11-12 Thread Rossko
> Yes, my top row of pixels all represent the same geographical position > (90 deg north on earth), but as you mention, on a Mercator projection > it is ignored, so it shouldn't hurt I didn't say it was ignored, I said the projection breaks down. We don't know what internal algorithms the API use

[Google Maps API v3] Re: maps causing firewall to block me , DOS

2011-11-12 Thread Rossko
> now is there something i am doing wrong ? How could we tell? -- 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 em

[Google Maps API v3] Re: crazy announcement

2011-11-12 Thread Rossko
> Every time I open Google a message appears which says I'm not a client > an  cannot use maps. We can't see how you are attempting to "open Google" so can't say much about that. Are you using a client ID? > I am referred > tohttp://code.google.com/apis/maps/documentation/premier/quide.html. >

[Google Maps API v3] Re: GroundOverlay with full earth coverage

2011-11-10 Thread Rossko
> Naturally We only know what you tell us. > I've tried to split the texture in two: [(-60, -180) (90, > 0)] and [(-60, 0) (90, 180)]. It kinda works, but not consistently. I'd be wary of latitude 90 too; (90,-180) (90,0) and (90,+180) all represent just one point. Your overlays still have zero

[Google Maps API v3] Re: Why is my KML not loading?

2011-11-10 Thread Rossko
> There are multiple occurrences of ID value 'blue'. That's what Pil told you. Have you seen http://code.google.com/apis/kml/documentation/kml_tut.html > Please let me know if you can add or comment to how I should resolve my > problem here. While you are making changes to your generated KML, y

[Google Maps API v3] Re: Geocoder oddity

2011-11-10 Thread Rossko
> Does anyone care to comment before I post to the issue tracker? Post what? If you geocode a postal address, you get a result. If you geocode a business/establishment name, you may or may not get some result from the address geocoder (in your case you do). In both cases the geocoder provides a

[Google Maps API v3] Re: Loading Google Maps initialize() script from a seperate file

2011-11-10 Thread Rossko
If you want someone to actually look at your problem, instead of guessing, you could let them have a look at the patient. Link to your problem page? -- You received this message because you are subscribed to the Google Groups "Google Maps JavaScript API v3" group. To post to this group, send em

[Google Maps API v3] Re: How to display google map in the specified range

2011-11-10 Thread Rossko
> How to display google map in the specified > range?Likehttp://www.thruway.ny.gov/webcams/index.html That's a v2 API map. Guessing you wanted to know how for v3 instead... Guessing you want to limit the range of user's map pan and zoom ... see for an example http://groups.google.com/group/googl

[Google Maps API v3] Re: GroundOverlay with full earth coverage

2011-11-10 Thread Rossko
> Is there a limit to the west/east bounds of a ground overlay ? -180 and +180 are exactly the same place. Logically, your overlay has zero width and cannot be seen. Perhaps you could break it into two hemispheres. -- You received this message because you are subscribed to the Google Groups "

[Google Maps API v3] Re: Why is my KML not loading?

2011-11-10 Thread Rossko
> What has happened? Perhaps its a security thing at your server, are you logged in or something? I too see a a valid KML file with no placemarks at http://www.koolbusiness.com/list.kml -- You received this message because you are subscribed to the Google Groups "Google Maps JavaScript API v3"

[Google Maps API v3] Re: Loading Google Maps initialize() script from a seperate file

2011-11-08 Thread Rossko
> Is there anything that I'm doing wrong? There must be. Difficult to guess what though. Perhaps when you use window.onload = load you don't have a load() function? (You did mention initialize() in your post title) Perhaps some other script comes along and overwrites your window.onload? -- Y

[Google Maps API v3] Re: Custom overlay disappears at certain zoom level

2011-11-08 Thread Rossko
> i have the very same problem, any suggestions? Where is your demo, perhaps it will offer more insight? Only going wrong on mac/safari too? -- 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 g

[Google Maps API v3] Re: I cannot use any function implemented within MarkerClusterer object

2011-11-08 Thread Rossko
> I found that I declared MarkerClusterer variable as a global one at the > 21st line of my codes, which is >          var markerCluster = null; Yes, but function initialize(){ ... var markerCluster = new MarkerClusterer(map,markers); creates another 'markerCluster' local to i

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

2011-11-08 Thread Rossko
> Do I perhaps have to use setPosition(new google.maps.LatLng(51.6063,4.7265)); > ? Having tried the other things, why don't you try that? Or search this group for 'setPosition' and see how other people use it? -- You received this message because you are subscribed to the Google Groups "Googl

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

2011-11-07 Thread Rossko
>   function dasherize(title) { >     return title.replace(/\s+/g,'-').replace(/'/g, ''); > google.maps.event.addListener(marker, "click", marker.openInfoWindow); >   } Investigate what happens when javascript encounters a 'return' inside a function. This is not a maps issue. Example javascript

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

2011-11-07 Thread Rossko
> Perhaps you can see something that is wrong? Referring to the documentation, infowindow4.setContent({ content: 'Wow, no bail, hij draait ' }); is wrong, try infowindow4.setContent('Wow, no bail, hij draait '); -- You received this message because you are subscribed to the Google

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

2011-11-07 Thread Rossko
> I find that documentation so hard to find the required information in, that > I prefer asking it on the forum. It's even possible to search and see if it has ever come up before http://groups.google.com/group/google-maps-js-api-v3/search?group=google-maps-js-api-v3&q=change+the+InfoWindow+conten

[Google Maps API v3] Re: Map Newbie - which map for multiple points? SO CONFUSED!

2011-11-07 Thread Rossko
> For example, if > you go to Home Depot's website and type in your desired zip code, the map > displays the points of all locations within the given radius. Have you seen http://code.google.com/apis/maps/articles/phpsqlsearch_v3.html -- You received this message because you are subscribed to th

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

2011-11-07 Thread Rossko
> The position can be changed by .setPosition, but for example, is there a > similar function to change the InfoWindow content? You could have a look at the documentation, see if there wasa 'setContent' method? http://code.google.com/apis/maps/documentation/javascript/reference.html#InfoWindow --

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

2011-11-07 Thread Rossko
> Hope you can come up with something realistic... Clearly Google think they already have, and it is already in place. One way to encourage re-think is to provide a concrete alternative. We don't have access to the numbers (users, hits, etc.) to see how a suggestion pans out, but if a suggestion

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

2011-11-06 Thread Rossko
> http://creativemaps.vism.ag/1c.htm > > still no success. it might be general javascripting but i cant work out > what its missing or why its not swapping the spaces for hyphens. I think that must be because you're not grasping the flow of the script. You have a tilesloaded listener that when tri

[Google Maps API v3] Re: Find LatLng for many address database entrys?

2011-11-06 Thread Rossko
> I have a database with many addresses and I want to find the location > to store it in the database. I like to display them in a map later. See http://code.google.com/apis/maps/articles/geocodestrat.html and http://code.google.com/apis/maps/articles/phpsqlgeocode.html and http://code.google.com/

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

2011-11-06 Thread Rossko
> i have tried to adapt it into my page, but its not putting - (hyphen) into > the space. not sure what i'm doing wrong, > http://creativemaps.vism.ag/1c.htm You've added your code so that it will process any parameters passed in via the URL. You haven't added any code that will do anything to you

[Google Maps API v3] Re: Route planning with multiple addresses

2011-11-06 Thread Rossko
> I was wondering if it was possible for the google maps api to plot a route > using multiple locations. You could try the documentation http://code.google.com/apis/maps/documentation/javascript/services.html#Waypoints -- You received this message because you are subscribed to the Google Groups

[Google Maps API v3] Re: problem with getBounds()

2011-11-06 Thread Rossko
> what do i need to do in order that the function will work correctly? For general advice, you could search this group for similar threads, like this one http://groups.google.com/group/google-maps-js-api-v3/browse_thread/thread/563ed63c2bd60749/ee6d047bc060c46c For specific advice, you'd have to

[Google Maps API v3] Re: add Link button

2011-11-05 Thread Rossko
> The information is useful, but I want to create a link button on the > top of my Google map which is embedded on my site, and I want a > behaviour of that button (LINK) should be similar to maps.google.com > (like Google and yahoo LINK button provide), meaning when I click on > link button, it wi

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

2011-11-05 Thread Rossko
> the javascript of data url and data count i > think just doesnt work inside the head. I'm not sure what you were expecting those attributes to do. Guessing, you have some utility script that processes HTML tags with those attributes. That kind of script doesn't work with infowindow content easi

[Google Maps API v3] Re: Distance Matrix - how to

2011-11-04 Thread Rossko
> incidentally what browser did you use to debug.. It was horribly old Firefox 2 -- 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 t

[Google Maps API v3] Re: Synchronous reverse geocoding

2011-11-04 Thread Rossko
> I have a map where I drop a number of markers. That would be the time to do reverse gecoding? >  I need to save the > location of the markers to a database, along with the city and country > that the marker was placed in. Beware the terms of use for storing Google's data > Any way I can do th

[Google Maps API v3] Re: Distance Matrix - how to

2011-11-04 Thread Rossko
> lol doh!.. I changed it while trying out different things... I fixed > the array issue.. but still no result. I get a straightforward error message "deleteOverlays is not defined", look inside your callback() function. It would be worth finding out how to see your browser's javascript error mes

[Google Maps API v3] Re: Distance Matrix - how to

2011-11-04 Thread Rossko
> Thankshttp://megasolarwatt.com/ When poking your Calculate Distances button, I get a straightforward error message ; "error in property 'origins' - value is not an array" Even if you only want to use the Matrix service for one result, you must provide an array for the origins and destinations,

[Google Maps API v3] Re: Distance Matrix - how to

2011-11-04 Thread Rossko
> Hi I've been trying to get the distance matrix to work.. but can't.. > please could you take a look at this code and see where I'm going > wrong.. thank you Link to your (debuggable) webpage? -- You received this message because you are subscribed to the Google Groups "Google Maps JavaScript

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

2011-11-03 Thread Rossko
> it puts the link there, but isn't pulling in the unique url made for that > pin. See your listener code contentString + "" + "http://twitter.com/share' , there is nothing in your code to change that. I don't know what the variable data-url attribute is used for? You probably want a ? charac

[Google Maps API v3] Re: how to calculate distances between multiple points (1 origin to different destinations) in one goal?

2011-11-03 Thread Rossko
> Is there a possibility that I > can calculate the distances between one 1 origin and multiple destinations > when I click the submit button? Distance matrix service http://code.google.com/apis/maps/documentation/javascript/services.html#distance_matrix -- You received this message because you

[Google Maps API v3] Re: How to create an offline map about google map

2011-11-03 Thread Rossko
> How to create an offline map about google map ?I have no idea, Who can > help me? Thanks. You can't, the map tiles are an online resource. Look into Google Earth. -- You received this message because you are subscribed to the Google Groups "Google Maps JavaScript API v3" group. To post to thi

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

2011-11-03 Thread Rossko
> I have a map with hundreds of markers and I want to show only a subset of > them without having to loop through an array of markers to hide the ones I > don't want to be seen. I don't see a problem doing that on one map. In order to show a subset somebody, somewhere will be iterating through th

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

2011-11-03 Thread Rossko
> When I alert(position) it says undefined :S > Weird... In your code, 'position' is only defined within a conditional. If the conditional is never satisfied (it isn't), then 'position' remains undefined -- You received this message because you are subscribed to the Google Groups "Google Maps

[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: 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: 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: Access "home view" -v- street view

2011-11-01 Thread Rossko
> If I click on the thumbnail of the house, the map changes to a > streetview but looking directly at the house.  In other words, the > pan, angle, tilt etc is known and the system can deliver a straight-on > view of the home. Relevant previous threads http://groups.google.com/group/google-maps-js

[Google Maps API v3] Re: Marker Mouseover

2011-11-01 Thread 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 JavaScript API v3" group. To post to this group, send email t

[Google Maps API v3] Re: How to change the color of map markers based on circle radius

2011-11-01 Thread Rossko
> However, I'd like to take it a step further.  I'd like the map markers > on my map within the circle to be blue and the ones outside of the > circle to be black.  Can anyone offer a suggestion on how to do this? Iterate through all your markers, check each one to see if it is inside or outside t

[Google Maps API v3] Re: Maps API V3: GeoCoding call failing for Mozilla and IE9

2011-11-01 Thread Rossko
> Any idea if geoCoding service has issues with new browsers ? It works fine for everybody else. Perhaps there is something wrong with your code, can't tell from here. -- You received this message because you are subscribed to the Google Groups "Google Maps JavaScript API v3" group. To post to

[Google Maps API v3] Re: Newbie needs help .....

2011-11-01 Thread Rossko
>  Google's newbie > info is remiss in not stressing this point. What newbie info? To be fair, that isn't a Maps issue. There's a hundred other good-practice areas Google could touch on in the Maps docs as well, if they wanted to repurpose them as general web authoring tutorials. The developers

[Google Maps API v3] Re: Adjust size of default marker

2011-10-31 Thread Rossko
> Any suggestions?  Can this be done? Sure. Construct a 'custom' marker using the default marker image. -- 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.co

[Google Maps API v3] Re: Custom markers from My Maps KML file replaced with default.

2011-10-31 Thread Rossko
> Fiddle with gmap3http://jsfiddle.net/dLqbw/3/ Seems to be a variation of this thread http://groups.google.com/group/google-maps-js-api-v3/browse_thread/thread/1aa01e863c32d4e4# I got to see your map with a half red / half blue marker i.e. the icon was different where it was split on a tile boun

[Google Maps API v3] Re: google maps directions based on custom network layer

2011-10-31 Thread Rossko
> is it possible to use my custom street network layer as a base layer > for google direction service ? No. You'll have to use your own routing engine. -- 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] Re: Listing zoom

2011-10-31 Thread Rossko
> How do I set the zoom if I don't > have a url? You already have this line in your code map.setZoom(6); you might guess that is the way to do it. The task is really to set that zoom level in the circumstance(s) where you don't like the automatic zoom, as outlined by Martin -- You received t

[Google Maps API v3] Re: Geocode status ERROR

2011-10-31 Thread Rossko
> The google geocoder failed due to ERROR eveytime I run it. This > happens for my page and also the google exmpales online. It may be that the IP address you are using has been blacked. That could be because you've made lots of requests, perhaps during testing. Or someone else sharing your IP has

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

2011-10-31 Thread Rossko
> 1) the 99,65% of the sites don't consider the maps as an important > feature for their core business. We might rephrase that as "99,65% of the sites don't consider the _Free_ maps as an important feature for their core business _or_ are not expecting 25,000 users per day" Many businesses with ma

[Google Maps API v3] Re: API question

2011-10-30 Thread Rossko
>  I have been reading an instruction manual that teaches you how to > build a custom mapping application in Google Maps. I the section that > tells you how to obtain a API Key, It may be an old manual, v3 of the Maps API (the topic of this group) no longer requires a key > it states that, "the w

[Google Maps API v3] Re: Problems with polyline overlay.

2011-10-28 Thread Rossko
Actually there is an intermediate way as well, requiring less of a re- think: You could have your php write variable assignments - not function calls - into the page body. Easiest way to manage that is probably as elements of an array. Then add javascript to run after map initialization that will

[Google Maps API v3] Re: Problems with polyline overlay.

2011-10-28 Thread Rossko
> the error console keeps telling me that var poly is undefined. As in your thread in the other group, your inline code calls your addRuta() function while the webpage is loading. That fails, because no map or poly objects are yet intialized. That initializing takes place later, triggered by the

[Google Maps API v3] Re: custom markers stopped working

2011-10-28 Thread Rossko
There's a bit of insight into how KML tile-based display works here: http://groups.google.com/group/google-maps-js-api-v3/browse_thread/thread/d7a3e542c09200aa/51ae45bfed902d36 we might guess that different browsers on differently loaded PCs could construct different URLs for the same tile image, t

[Google Maps API v3] Re: Storing geocoding results

2011-10-28 Thread Rossko
> > In the FAQs received by this person from Google, it says: "Bulk geocoding > > and caching is allowed, with the understanding that the geocodes are for > > use with a Google Map at some time." Yes, see terms 10.1.3(b), that's why I said the purpose was relevant. > > In my case, the points will

[Google Maps API v3] Re: Storing geocoding results

2011-10-28 Thread Rossko
> If the user then moves the marker to a new position the coordinates > is not Google generated data.Otherwise Google has the copyright to all > lat lng coordinates in the world??? But there is an argument that any coordinate taken from a Google map is 'derived data'. If you went out and surveyed

[Google Maps API v3] Re: Linking sidebar to map

2011-10-28 Thread Rossko
>       google.maps.event.addListener(marker, 'click', function() { >         infoWindow.setContent(bubble); Here 'bubble' is referenced >          var bubble = "" + street + Here 'bubble' is defined. It would be good practice to define 'bubble' _before_ referencing it. It's only a case of chan

[Google Maps API v3] Re: Linking sidebar to map

2011-10-28 Thread Rossko
> I had to change infoWindow.setContent(html); to > infoWindow.setContent(bubble);, and duplicate my variable with the name > bubble instead of html, and remove the link from it. Okaydokey, you found where the link was added and altered what happens. I would recommend that you define 'bubble' _be

[Google Maps API v3] Re: Storing geocoding results

2011-10-28 Thread Rossko
> 1) Add or subtract 1.0E-10 from the long or lat so that it is not > technically the result from the geocode. But it is still directly derived from Google data, "derived work", not good enough? (no lawyer) You could display the geocode with offset to the user, so forcing/ encouraging them to dra

[Google Maps API v3] Re: Maps API V3 Usage Limit Questions

2011-10-28 Thread Rossko
I'm not at all sure if/how subdomains come into play with all this. -- 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, sen

[Google Maps API v3] Re: Working out if an address is in the channel islands

2011-10-28 Thread Rossko
> I've got to determnine if an address is in the channel islands, ireland or > UK so that I can convert the geolocation into an NGR. I think your bounding-box idea should work more reliably than analysing returned results text. Did they forget to mention Isle of Man too? -- You received this me

[Google Maps API v3] Re: Linking sidebar to map

2011-10-28 Thread Rossko
> How do I remove the link from the bubble? Can I even remove it? One way would be to examine your own code, and discover how it gets put there. You could then opt not to put it there. -- You received this message because you are subscribed to the Google Groups "Google Maps JavaScript API v3"

[Google Maps API v3] Re: custom markers stopped working

2011-10-28 Thread Rossko
> http://climatehotmap.org/ I can confirm I'm looking at this right now in the UK with mostly blue default markers. Google use distributed servers, your view may vary around the world. KmlLayer caches imagery at Google's servers for a time, a 'broken' view may appear/disappear after a few hours.

[Google Maps API v3] Re: Maps API V3 Usage Limit Questions

2011-10-27 Thread Rossko
> I have several websites that use the Google Maps V3 API.  My question is, > is the 25K API limit per website or is it tracked across all websites? See http://groups.google.com/group/google-maps-js-api-v3/browse_thread/thread/6c923a75713a70c2/b2a767d0faf97872 "per domain" > Another question is i

<    1   2   3   4   5   6   7   8   9   10   >