Re: Returning driving directions without a map

2009-08-14 Thread Bart Van der Donck
Rob wrote: > I am trying to contact the Google server to return driving directions, > but I do not want a map returned (just the text). Is there a way to do > this? I think it's not possible directly, because you need to instantiate a GMap2()-object before you can use GDirections() on it. But yo

Re: Get X Y position of mouse when clicking on Gmarker

2009-08-14 Thread Marcelo
If you want event.X and event.Y relative to the document use GEvent.addDomListener on the map container instead of GEvent.addListener on the marker. http://code.google.com/apis/maps/documentation/reference.html#GEvent ...or see this example, which uses the event object to determine if CTRL was do

Re: Returning driving directions without a map

2009-08-14 Thread Marcelo
On Aug 14, 9:02 am, Bart Van der Donck wrote: > > I think it's not possible directly, because you need to instantiate a > GMap2()-object before you can use GDirections() on it. But you could > show the map outside the visible area of the screen: > The GDirections object is independent of the GMa

Re: Returning driving directions without a map

2009-08-14 Thread Bart Van der Donck
Marcelo wrote: > On Aug 14, 9:02 am, Bart Van der Donck wrote: > >> I think it's not possible directly, because you need to instantiate a >> GMap2()-object before you can use GDirections() on it. But you could >> show the map outside the visible area of the screen: > > The GDirections object is

Re: gdownloadurl twice in one script, doesnt work

2009-08-14 Thread Mike Williams
Your code crashes on this line: var sid = escape(document.getElementById("sid").value) because there is no element with id="sid". Perhaps you intended to store the contents of the Javascript "sid" variable in a hidden field in your createMarker() function. -- Mike Williams http://econym.or

map ONLY display correct in firefox, ie show nothing

2009-08-14 Thread stin.w...@gmail.com
www.tjxnw.com/map/index.htm it's really a very simple file, i just modify from google examples, i use to test it in firefox, but when i test it in ie today, it doesn't show any map at all . i check some suggest such as put script before /body, but nothing happen. can anyone help me --~--~--

Re: Returning driving directions without a map

2009-08-14 Thread Rossko
The GDirections terms issue aso gets discussed here - http://groups.google.com/group/Google-Maps-API/browse_thread/thread/671ac3ce71cf4f11/af735445df7988f4?lnk=gst&q=gdirections+map+optional#af735445df7988f4 --~--~-~--~~~---~--~~ You received this message because y

Re: map ONLY display correct in firefox, ie show nothing

2009-08-14 Thread Rossko
Your map div is sized in %, so you need to take special action. See- http://econym.org.uk/gmap/basic19.htm cheers, Ross K --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Google Maps API" group. To post to this grou

Re: Geocoding

2009-08-14 Thread Rossko
> Is there any way to get Geocodes for all countries. Or, is there any > application, that will generate longitudes and latitudes for any > country. To clarify, "geocoding" usually describes a process where some service looks up a placename or an address, and turns it into lat/long coordinates.

Re: GGeoXml title field escape settings

2009-08-14 Thread Rossko
Have you seen this thread ? http://groups.google.com/group/Google-Maps-API/browse_thread/thread/eadb50a3205f97a6# --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Google Maps API" group. To post to this group, send e

Re: Drag to change route in google map

2009-08-14 Thread Rossko
>    how to drag and change route ashttp://maps.google.com/ You could even search this group, in case anyone's thought of doing that before http://groups.google.com/group/Google-Maps-API/search?group=Google-Maps-API&q=draggable+directions&qt_g=Search+this+group --~--~-~--~~---

Re: 2 or more markers at the same place

2009-08-14 Thread Valentin
I thought about tabbed infoWindow already. What I don't know: Is there any way to get the Info "there is already a marker at that place". The reason I ask: I use a xml-file with all the points and the javascript places one point after another. On Aug 13, 5:47 pm, "geocode...@gmail.com" wrote: >

Re: Accuracy of Tele Atlas maps? Re: Small positioning error in overlays and tile overlays (EPSG:900913 web mercator question)

2009-08-14 Thread alapaa
Thanks to both Rossko and Andrew Leach for their input, interesting to note that there are in fact significant errors in the Google map data. This, combined with an even bigger error source I just found, explains the errors I see - when looking at Bornholm in ArcMap, the band of weaker TV signals

Re: 2 or more markers at the same place

2009-08-14 Thread Rossko
> I thought about tabbed infoWindow already. What I don't know: Is there > any way to get the Info "there is already a marker at that place". 'Same Place' is an inexact definition, and would vary with zoom level etc. MarkerClusterer already has to work that out, you just need to tap into its clus

Re: Accuracy of Tele Atlas maps? Re: Small positioning error in overlays and tile overlays (EPSG:900913 web mercator question)

2009-08-14 Thread Rossko
> in fact significant errors in the Google map data. In my opinion they're not significant errors for a "road map" :) The API rightly encourages use of mapping for all sorts of wonderful purposes, but we need to bear in mind the limited purpose of the underlying map! cheers, Ross K --~--~

Re: gdownloadurl twice in one script, doesnt work

2009-08-14 Thread Mike
fixed it thanks! On Aug 14, 10:00 am, Mike Williams wrote: > Your code crashes on this line: > >   var sid = escape(document.getElementById("sid").value) > > because there is no element with id="sid". > > Perhaps you intended to store the contents of the Javascript "sid" > variable in a hidden

GDownloadUrl returns object?

2009-08-14 Thread Mike
i use GDownloadUrl() to get the content of a php page but it some how only returns [object Object] it happens when you click on a marker to get the info of the clicked marker. you can check it here bij clicking on one of the markers http://borkus.kicks-ass.org/vr_script/display_spots.html it sh

Re: GDownloadUrl returns object?

2009-08-14 Thread Mike Williams
GDownloadUrl() is asynchronous. You're trying to use it synchronously. This line var catches = new getCatches(sid); uses getCatches() as a constructor, so catches becomes an object of the getCatches() Class. That's certainly not what you want. Because the getCatches() Class doesn't have a toSt

278 requests to display a simple map

2009-08-14 Thread jef
hi the first time sommeone come to my site www.agrio.com 278 requests are made; markerTransparent.png is requested about 100 times shadow50.png is requested about 50 times marker.png is requested about 50 times The page needs about 25 to be displayed; How to avoid this useless requests. thank

Re: Accuracy of Tele Atlas maps? Re: Small positioning error in overlays and tile overlays (EPSG:900913 web mercator question)

2009-08-14 Thread alapaa
One reflection: I read that TomTom uses TeleAtlas maps in their GPS:es. In the example above on Bornholm, the map was shifted about 200 m south of the real coastline as shown on the satellite image. Is such an error acceptable for e.g . a car GPS, or maybe TomTom are using another set of TeleAt

Re: GDownloadUrl returns object?

2009-08-14 Thread Mike
Oke i get that, but how do i fix this? i'm a bit new to this buisiness regards Mike On Aug 14, 11:45 am, Mike Williams wrote: > GDownloadUrl() is asynchronous. You're trying to use it synchronously. > > This line >   var catches = new getCatches(sid); > uses getCatches() as a constructor, so ca

Re: Accuracy of Tele Atlas maps? Re: Small positioning error in overlays and tile overlays (EPSG:900913 web mercator question)

2009-08-14 Thread Rossko
> One reflection: I read that TomTom uses TeleAtlas maps in their >  GPS:es. In the example above on Bornholm, the map was shifted >  about 200 m south of the real coastline as shown on the satellite > image. Is such an error acceptable for e.g . a car GPS, or maybe >  TomTom are using another set

Re: 278 requests to display a simple map

2009-08-14 Thread Rossko
> markerTransparent.png is requested about 100 times > shadow50.png is requested about 50 times > marker.png is requested about 50 times > > The page needs about 25 to be displayed; > > How to avoid this useless requests. Get your visitors not to use Microsoft IE browser, it is stupid enough to i

Changing custom maps dinamically

2009-08-14 Thread trez
Hi! I would change custom maps dinamically. I have my own custom map ( http://www.cavallabianca.it/culturalHeritage/components/com_artmanager/views/artmanager/tmpl/customMap.php?user=trez ) and now, when i click the button "change", i would change the map in another custom map. How can i do it? T

Re: Geocoding

2009-08-14 Thread mapperzUK
Vaibhav Goel, sounds like you need the geonames data http://www.geonames.org/export/ and import it into your own database. Will save you geocoding data as already has latitude and longitude. Mapperz http://mapperz.blogspot.com/ On Aug 14, 6:50 am, Vaibhav Goel wrote: > Hello, > > Is there any w

Storms In The Tropics Of Saturn's Moon Titan Discovered

2009-08-14 Thread cyber science
Storms In The Tropics Of Saturn's Moon Titan Discovered ScienceDaily (Aug. 13, 2009) — For all its similarities to Earth— clouds that pour rain (albeit liquid methane not liquid water) onto the surface producing lakes and rivers, vast dune fields in desert- like regions, plus a smoggy orange atm

Polygon overlays & click event order

2009-08-14 Thread jadedweasel
All, I'm having issues getting my head around multiple overlays & how their click events fire. Specifically, I have a GPolygon with a custom marker sat inside. The problem is, click events on the custom marker always trigger the GPolygon click, and its's always triggered *first*. I was under the

Blurring out/hiding everything except one area on the map

2009-08-14 Thread McLee
Hi! I'm trying to somehow blur out/white out the whole map except one small area, say, a country, and I'm unsure of what would be the best way to do that - hope you can help. I can imagine two alternatives: 1. Create a polygon (with white fill color and opacity=1) that covers the whole map, but

Preload image (?)

2009-08-14 Thread Jonas G
Hi group I have a map with some markers. Each marker has an overlay which includes an image (generated by phpThumb) and text. When I click the marker for the first time, the background (the white bubble) does not extend to cover my entire overlay. If I close the overlay and reclick the marker, ev

Re: Preload image (?)

2009-08-14 Thread Martin
A simple solution would be to add width and height attributes to the IMG tag in your infowindow HTML. Martin. On 14 Aug, 12:45, Jonas G wrote: > Hi group > > I have a map with some markers. Each marker has an overlay which > includes an image (generated by phpThumb) and text. When I click the >

Re: GDownloadUrl returns object?

2009-08-14 Thread Mike
Nobody who can help me please? On Aug 14, 11:53 am, Mike wrote: > Oke i get that, but how do i fix this? i'm a bit new to this buisiness > > regards Mike > > On Aug 14, 11:45 am, Mike Williams wrote: > > > GDownloadUrl() is asynchronous. You're trying to use it synchronously. > > > This line >

Re: Blurring out/hiding everything except one area on the map

2009-08-14 Thread Martin
Each tile layer on the map has it's own getTileUrl() method. See the documentation here: http://code.google.com/apis/maps/documentation/reference.html#GTileLayer.getTileUrl Maybe you could re-write that method for each tile layer used on your map to only retrieve tiles in the area that you want

Re: Changing custom maps dinamically

2009-08-14 Thread Martin
Look at your CustomGetTileUrl() function. The URL returned by that function determines what custom map tiles will be displayed. To swap from one set of custom map tiles to another you will need to modify that function to return the URL of the required tiles. I use that technique on my panoramas

Re: 2 or more markers at the same place

2009-08-14 Thread geocode...@gmail.com
On Aug 14, 2:00 am, Valentin wrote: > I thought about tabbed infoWindow already. What I don't know: Is there > any way to get the Info "there is already a marker at that place". The > reason I ask: I use a xml-file with all the points and the javascript > places one point after another. There ha

Re: Changing custom maps dinamically

2009-08-14 Thread trez
Ok, but how do you update the map when you click on a different panorama? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Google Maps API" group. To post to this group, send email to Google-Maps-API@googlegroups.com

Re: marker click listener stops working when map is resized

2009-08-14 Thread Ron Newman
On Aug 4, 11:46 am, Ron Newman wrote: > On Aug 4, 11:35 am, Andrew Leach > wrote: > > > It probably ought to be reported as an issue, > > then.http://code.google.com/p/gmaps-api-issues/issues/list > > I submitted the issue > ashttp://code.google.com/p/gmaps-api-issues/issues/detail?id=1556.

spam

2009-08-14 Thread Marcelo
Spam: http://groups.google.com/group/Google-Maps-API/browse_thread/thread/d888c8fff36f1ab6# ... even if the subject is an interesting one. On Aug 14, 12:09 pm, cyber science wrote: > Storms In The Tropics Of Saturn's Moon Titan Discovered > > ScienceDaily (Aug. 13, 2009) — For all its similari

Re: GDownloadUrl returns object?

2009-08-14 Thread Mike Williams
Wasn't it Mike who wrote: > >Oke i get that, but how do i fix this? i'm a bit new to this buisiness Wait for the callback, just like you do with the other GDownloadUrl calls. -- Mike Williams http://econym.org.uk/gmap --~--~-~--~~~---~--~~ You received this m

Re: Changing custom maps dinamically

2009-08-14 Thread Mike Williams
Wasn't it trez who wrote: > >Ok, but how do you update the map when you click on a different >panorama? To force the API to call the GetTile code again, you need to change the map type to a different map type and back again. [The setMapType code is optimised to do nothing if the requested map t

Re: GDownloadUrl returns object?

2009-08-14 Thread Mike
yes it was mee but i don't get how to fix it. van you have a look at http://borkus.kicks-ass.org/vr_script/display_spots.html and tell me what I have to change to get it working cause i'm all out of ideas On Aug 14, 3:38 pm, Mike Williams wrote: > Wasn't it Mike who wrote: > > > > >Oke i get th

Re: Preload image (?)

2009-08-14 Thread Jonas G
Easy, simple solution - love it! Thank you On Aug 14, 2:52 pm, Martin wrote: > A simple solution would be to add width and height attributes to the > IMG tag in your infowindow HTML. > > Martin. > > On 14 Aug, 12:45, Jonas G wrote: > > > Hi group > > > I have a map with some markers. Each mark

RE: GDownloadUrl returns object?

2009-08-14 Thread Ralph Ames
What are you trying to put in var catches? Ralph - www.easypagez.com/maps/map_index.html --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Google Maps API" group. To post to this group, send email to Google-Maps-A

Re: GDownloadUrl returns object?

2009-08-14 Thread Mike
the values that get_catches.php?sid=" + sid returns http://borkus.kicks-ass.org/vr_script/get_catches.php?sid=2 where "2" is the number of the marker (sid) On Aug 14, 4:17 pm, Ralph Ames wrote: > What are you trying to put in var catches? > > Ralph > -www.easypagez.com/maps/map_index.htm

Re: Google Is Not Defined

2009-08-14 Thread cimearth-...@ci.uchicago.edu
I had a pretty awful/obvious error. But everything works now. Thanks for your help. On Aug 11, 3:31 pm, Mike Williams wrote: > The map displays for me. It doesn't display any overlays, failing with a > failure to call autocomplete.xml. > > -- > Mike Williamshttp://econym.org.uk/gmap --~--~

Re: Get X Y position of mouse when clicking on Gmarker

2009-08-14 Thread Sandia_Man
> If you want event.X and event.Y relative to the document use > GEvent.addDomListener on the map container instead of That was so much help. But I couldn't make it work in all browsers... I'm using JQuery library to avoid fighting between the differences of each the browser... What I'm posting

Re: Get X Y position of mouse when clicking on Gmarker

2009-08-14 Thread Marcelo
On Aug 14, 5:08 pm, Sandia_Man wrote: > > GEvent.addDomListener(marcador,'click', Look at what I wrote earlier one more time: 1. GEvent.addDomListener on the map, not on the marker! 2. Check the example I posted a link to. That works in both IE6 and FF2. -- Marcelo - http://maps.forum.nu -- -

RE: GDownloadUrl returns object?

2009-08-14 Thread Ralph Ames
>where "2" is the number of the marker (sid) But you already have it? var sid = markers[i].getAttribute("id"); Ralph --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Google Maps API" group. To post to this group

Re: xml files

2009-08-14 Thread Gil
These 2 suggestions are exactly what I was looking for. I actually can understand what I can and need to do. Thanks, Gil On Aug 13, 10:58 pm, Mike Williams wrote: > You can either write  
 for inside normal XML, or you can > use CDATA (character data) to tell the XML to not attempt to try

Losing Markers and Strange Zoom with Circle

2009-08-14 Thread ilyons
The link to the map: http://www.citymarket.coop/images/lv/map_circletest.htm When trying to implement the "circle from a point" function, the map exhibits strange behavior with the setBounds (I believe) function in the beginning and then, after the input of a location into the geocoder, it appear

Re: Polygon overlays & click event order

2009-08-14 Thread Rossko
> I'm having issues getting my head around multiple overlays & how their > click events fire. Specifically, I have a GPolygon with a custom > marker sat inside. The problem is, click events on the custom marker > always trigger the GPolygon click, and its's always triggered *first*. Marker clicks

Re: Blurring out/hiding everything except one area on the map

2009-08-14 Thread Rossko
> I'm trying to somehow blur out/white out the whole map except one > small area, say, a country, and I'm unsure of what would be the best > way to do that - hope you can help. Here's a fancy example that may be adaptable - http://koti.mbnet.fi/ojalesa/exam/hole.html Polygons with holes http://g

Re: Get X Y position of mouse when clicking on Gmarker

2009-08-14 Thread Sandia_Man
> Look at what I wrote earlier one more time: > > 1. GEvent.addDomListener on the map, not on the marker! > 2. Check the example I posted a link to. That works in both IE6 and > FF2. I checked the example, works great, but i couldn't find the source, where is the source? Thanks again! I made

Re: Blurring out/hiding everything except one area on the map

2009-08-14 Thread Marcelo
I seem to be posting this example again every few days: http://maps.forum.nu/gm_texas.html Maybe it's useless! ;-) -- Marcelo - http://maps.forum.nu -- On Aug 14, 12:39 pm, McLee wrote: > Hi! > > I'm trying to somehow blur out/white out the whole map except one > small area, say, a country, a

RE: iPhone app

2009-08-14 Thread JMK
Hi - I'm building a native iPhone app that utilizes the Google Maps API and would like to be able to output the location data via a link (i.e., in Twitter) on maps.google.com similar to how MotionX does it (see link below) http://maps.google.com/?t=p&z=15&ll=43.583953857421875,-116.21684265136719

MarkerClusterer removeMarker() not working. Any ideas?

2009-08-14 Thread Chris
Hey Guys, I'm using MarkerClusterer and I'm tyring to remove a single marker from the map. I've been looking at their API guide but it's given me this error: clusters_[i].remove is not a function [Break on this error] if (clusters_[i].remove(marker)) { Here is how I am adding the marker: var m

No AdSense statistic or revenue from Advertising in the GoogleBar

2009-08-14 Thread Mattias
Hi, I saw that the GoogleBar now supports ads that you can get revenue from your adSense account. I've implemented that in my site as; googleBarOptions : { style : "new", adsOptions: { client: "partner-pub-XXX", channel

Best Way to Display Large Dataset on Google Maps API

2009-08-14 Thread Rissa
Hi, I have a large dataset of coordinates (roughly 5000 points) coming from the database and I want to plot/display them on the map. I already tried creating a KML file and load it by using GeoXML but it was not consistent. Sometimes it loads and sometimes it's not. I also believe that it doesn

Best Way to Display Large Dataset on Google Maps API

2009-08-14 Thread Rissa
Hi, I have a very large dataset of points (roughly 5000 plus points) coming from the database and I'm trying to figure out the best possible ways on how to display these points on the map. I tried creating a KML file and loads it using Geoxml to display all the 5000 points at once. The problem

Re: Losing Markers and Strange Zoom with Circle

2009-08-14 Thread ilyons
Never mind. I can't believe I couldn't figure it out. On Aug 14, 12:16 pm, ilyons wrote: > The link to the map:http://www.citymarket.coop/images/lv/map_circletest.htm > > When trying to implement the "circle from a point" function, the map > exhibits strange behavior with the setBounds (I believ

Re: Custom Map tiles do not show

2009-08-14 Thread Hassan Kadhim
Hi, I did refer myself to Mike Williams code on the Econym.org website. The GLatLng figures that I entered are based on the tiles that I created. Using the mentionned script on the Mapki site, I was able to make my tiles with Photoshop. The code in the script is: var OrgX = 31551; // the Googl

Re: Accuracy of Tele Atlas maps? Re: Small positioning error in overlays and tile overlays (EPSG:900913 web mercator question)

2009-08-14 Thread Andrew Leach
On Aug 14, 11:17 am, Rossko wrote: > > For the car application, the interest would be in the accuracy of road > placement, it doesn't matter at all if the coast is wrong. It may be worth noting that coastlines *can* be extremely accurate *if* that data exists. Have a look at http://www.achurchn

RE: Best Way to Display Large Dataset on Google Maps API

2009-08-14 Thread Ralph Ames
Try this link http://maps.forum.nu/server_side_clusterer/ Ralph - www.easypagez.com/maps/map_index.html --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Google Maps API" group. To post to this group, send email t

Re: iPhone app

2009-08-14 Thread Grok Lobster
http://econym.org.uk/gmap/linktothis.htm On Aug 14, 10:47 am, JMK wrote: > Hi - I'm building a native iPhone app that utilizes the Google Maps > API and would like to be able to output the location data via a link > (i.e., in Twitter) on maps.google.com similar to how MotionX does it > (see link

Re: MarkerClusterer removeMarker() not working. Any ideas?

2009-08-14 Thread Andrew Leach
On Aug 14, 2:24 pm, Chris wrote: > > Any ideas on why this isn't working? I don't mind guessing. I guess that u_marker is local and what you should be removing is markers[x] where x is the index of the marker in the array (however you're deciding which marker actually to remove). But there rea

Re: Accuracy of Tele Atlas maps? Re: Small positioning error in overlays and tile overlays (EPSG:900913 web mercator question)

2009-08-14 Thread Gregory Short
On Aug 14, 2009, at 1:58 PM, Andrew Leach wrote: > > On Aug 14, 11:17 am, Rossko wrote: >> >> For the car application, the interest would be in the accuracy of >> road >> placement, it doesn't matter at all if the coast is wrong. > > It may be worth noting that coastlines *can* be extremely acc

Route Optimization

2009-08-14 Thread JJ
I am looking for some feedback on route optimization in the API. Creating a GRoute using a maximum of 25 waypoints does not optimize obviously. Is there some way of passing in 100 or less stops and having the system determine the shortest possible route? A traveling salesman problem type. Also,

Re: Route Optimization

2009-08-14 Thread Andrew Leach
On Aug 14, 8:11 pm, JJ wrote: > > Also, if one of those stops has to be visited at a particular time in > the day regardless of the optimal path, is there anything that does > this sort of thing in the API? > > I realize the API will not do this for me automatically, but any ideas > on how this c

Re: Get X Y position of mouse when clicking on Gmarker

2009-08-14 Thread Rossko
> I checked the example, works great, but i couldn't find the source, > where is the source? In your browser, you'll have a menu selection labelled something like 'View' Under that, there's an option 'source' or 'page source' --~--~-~--~~~---~--~~ You received th

Re: Custom Map tiles do not show

2009-08-14 Thread Rossko
> The code in the script is: > var OrgX = 31551;   // the Google Maps X value of the tile at the top left > corner of your Photoshop document > var OrgY = 50899;   // the Google Maps Y value of the tile at the top left > corner of your Photoshop document > I figured this is latitude and longitude

Is there any easy way to reuse the pushpin icons from My Maps in a custom map?

2009-08-14 Thread bdukes
I'm developing a fairly simple map which displays some statistics pulled from a database as points on the map. We would like to use the pushpin icons which are available when creating maps with My Maps. We're basically trying to do what's been done in the My Map at http://maps.google.com/maps/ms

Re: Is there any easy way to reuse the pushpin icons from My Maps in a custom map?

2009-08-14 Thread Rossko
> I'm developing a fairly simple map which displays some statistics > pulled from a database as points on the map.  We would like to use the > pushpin icons which are available when creating maps with My Maps. This might be useful - http://mapki.com/wiki/Icon_Image_Sets > Firstly, does anyone kn

Translating lat/long points to driving directions and export it to CSV?

2009-08-14 Thread erdc
Hi all, I was wondering whether there is a way to convert a series of lat/long points (let's say a 100 of them) to driving directions between them, and then export the entire route in a form of another series of lat/ long points. Hopefully export it as CSV. To rephrase, what I'd like to do is: -

Re: Translating lat/long points to driving directions and export it to CSV?

2009-08-14 Thread Marcelo
Everything is possible! ... but not everything is legal. -- Marcelo - http://maps.forum.nu -- On Aug 14, 10:54 pm, erdc wrote: > Hi all, > > I was wondering whether there is a way to convert a series of lat/long > points (let's say a 100 of them) to driving directions between them, > and then

Re: For Mike mainly

2009-08-14 Thread Gil
I've gone through all of my past posts but can't find the one where you, Mike tell me how to move the dropdown selection box to the right side of the map and can't find any other source that explains how to do it. Need to know the code words and where to place them or a example page that I can us

Re: For Mike mainly

2009-08-14 Thread Rossko
> ... how to move the dropdown selection box to the right > side of the map and can't find any other source that explains how to > do it. This is not a maps thing, its a general webpage thing. There are enormous resources out there, starting with Google's search engine. http://www.google.co.uk/s

Refreshing KML data in embedded java map

2009-08-14 Thread Benjamin
Hope I'm posting in the right place- if not, please redirect me. For accessibility reasons I'd like to display the same map data I've developed for Google Earth in Google Maps on my website. Problem is, Google Maps loaded the kml file and generated the map once... but the kml has since been updat

Re: Is there any easy way to reuse the pushpin icons from My Maps in a custom map?

2009-08-14 Thread bdukes
Thanks, I hadn't found that set of images (from mymapsplus.com) in my searching. I was hoping there'd be somewhere I could also find the imageMap, various print images, etc, but maybe that's asking too much. Does anyone know how I might programatically (probably from Firebug) interrogate one of

Re: Translating lat/long points to driving directions and export it to CSV?

2009-08-14 Thread geocode...@gmail.com
On Aug 14, 1:54 pm, erdc wrote: > Hi all, > > I was wondering whether there is a way to convert a series of lat/long > points (let's say a 100 of them) to driving directions between them, > and then export the entire route in a form of another series of lat/ > long points. Hopefully export it as

Re: Is there any easy way to reuse the pushpin icons from My Maps in a custom map?

2009-08-14 Thread Rossko
> Does anyone know how I might programatically (probably from Firebug) > interrogate one of these icons to see what its settings are? Inspect the javascript object you make The documentation - http://code.google.com/apis/maps/documentation/reference.html#GIcon This offers some explanations - htt

Re: Refreshing KML data in embedded java map

2009-08-14 Thread Grok Lobster
It's been my experience that kml files update in less than 24 hours, probably closer to 12. On Aug 14, 2:41 pm, Benjamin wrote: > Hope I'm posting in the right place- if not, please redirect me. > > For accessibility reasons I'd like to display the same map data I've > developed for Google Earth

Re: iPhone app

2009-08-14 Thread Barry Hunter
MotionX write the data to a KML file on their server. And then load it on the Google Map. Visiting http://api.motionxlive.com/motionx-remote/api/gps/host/e37405cc-d8d9-4307-82cd-dfee469d1920 should show you the raw KML file. (I suppose technically that file might be dynamically generated by a s

Using Google Map API to Add Markers with Custom Information

2009-08-14 Thread T.N.T
Hello everyone, I'm just looking for a few pointers really. I'm quite a "beginner" when it comes to coding, I have messed about in Vbscript, PHP and SQL. I'm looking to add the Google Maps API to my site. I'm not looking for anyone to do the work for me but if you could give me a few pointers it

Using Info window with facebook Twitter......Etc.......

2009-08-14 Thread idxrea...@gmail.com
http://www.thebutlerchain.com/tbcmap.htm When this info comes up by clicking on one of the icons can that info be shared with all the possible social networks like FaceBook Twitter etc. etc or all if needed. If anyone is doing this please point me in the right direction. I am looking for people

Re: Is there any easy way to reuse the pushpin icons from My Maps in a custom map?

2009-08-14 Thread Martin
Open your map in Firefox then open Firebug console and enter this: var i=new GIcon(G_DEFAULT_ICON); alert(i.imageMap); You can see the image map as an array of numbers. It seems to work with other properties of GIcon too: alert(i.printImage); Martin. http://code.google.com/apis/maps/documenta

Re: Using Google Map API to Add Markers with Custom Information

2009-08-14 Thread Mike Williams
Does this help? http://econym.org.uk/gmap/store.htm -- Mike Williams http://econym.org.uk/gmap --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Google Maps API" group. To post to this group, send email to Google