Google Maps website KML track display issue - google-maps

I'm converting recorded GPS tracks to KML/KMZ files and they show up correctly in Google Earth. However, opening the same KML file in the Google Maps website I get weird straight lines that are a few thousand km long.
KML download:
http://www.indunet.it/stackexchange/test.kml
Direct link to Google Maps website:
https://maps.google.com/maps?q=http:%2F%2Fwww.indunet.it%2Fstackexchange%2Ftest.kml&hl=de&sll=37.230328,-95.712891&sspn=52.421131,114.169922&t=h&z=4
This is what the KML file looks like on my computer:
I get identical results with FF, Chrome and IE, so I guess it's somethign related to the generated KML file, but I have no clue what's wrong..
Oddly, zooming in to the correct area (upper-left end of the line, i.e. northern Italy) shows some outline that's similar to the original track:
Correct display in Google Earth (same KML file):
Any ideas?
PS: I get similar results with all tracks I export. However, markers always show up correctly.

Your kml has the coordinates specified:
11.30968602,46.35330003,
If I add a third coordinate it works:
11.30968602,46.35330003,0 [on google maps]
or if I remove the comma at the end it works:
11.30968602,46.35330003 [on google maps]

Related

Extra horizontal lines in google maps

Suddenly I have some strange horizontal lines in Google Maps. Please see: http://hippo.ornl.gov/10secdownload/. It was working fine and appeared about a couple of weeks ago. I drew those layers using kml files and I checked them in Google Earth and Google My Maps where they work fine. I can provide kml files if needed.

Placemark not all displaying using google map api

First time asking a question so sorry if it's not well worded. I'm trying to display a placemark over every country with a custom icon for each (their flag), using a KML file. If i look at the file using google earth everything works fine but when its loaded on google map it only displays a small number of them (around 20). Does anyone know if there is a limit for custom icons on placemark? https://developers.google.com/kml/documentation/mapsSupport according to this i don't think so but im kinda lost.
All the links to the png imgs works.

KML overlays with tiled images in incorrect positions

I have made a map with a series of overlays of old maps that I created using MapTiler and the coordinates were definitely correct when I plotted them in Google Earth, but when I load the KML files in Google Maps they are roughly in the correct area but are far from accurate.
As the same error is replicated in all the layers can someone suggest what it is that I am doing wrong?
http://www.southdevonaonb.org.uk/cordialemapping/kmzdata/withtiledoverlays/19x/doc.kml
http://www.southdevonaonb.org.uk/cordialemapping/kmzdata/withtiledoverlays/20x/doc.kml
The other KML files can be found by changing the URL to 21x, 22, 23x, 25x, 26x, 27x (I am unable to post more than two links).

Marker info erratic in KML layer

I am working on loading KML files into a map using Google Maps API v3. The KML loads fine and the markers are seen. But the marker info (pop-up when the marker is clicked) never shows up in a consistent manner. A few work some times, some others don't. This is really peculiar. To see the page, check-
http://www.sobitabraham.com/teawap/NEW_kml.html
The KML file is here-
https://sites.google.com/site/teawapdata/home/kml-files/TEAWAP.kml
The KML file is 990 KB in size, so it is not some file size ceiling problem. It could have something to with the caching of KML, I am not sure. The KML file was exported from Google Earth.
The frustrating thing is that this marker behavior is erratic, the error is not consistent. This problem is seen even when I paste the URL of the KML file into maps.google.com. Any help in sorting this out will be appreciated.
Thanks.

Route thru points

How i can get kml file from Google Maps that contains route thru several points. Now i use this link http://maps.google.com/maps?f=d&hl=en&saddr=51.591016,-0.107382&daddr=51.359619,-0.147695&ie=UTF8&0&om=0&output=kml It work, but only for two points.
First, you should know that Google Maps and Google earth have different capabilities for displaying kml files. Google Earth has almost no limitations, you can author full mxd's to google earth with legends and everything, google maps, however, does not have nearly the same capability.
In google maps you are restricted to displaying 200 kml points on one page, this is because this application is server based and created using javascript, for performance purposes, you are limited to only 200 kml points per page. You might notice that the rest of your points are on different pages, unfortunatly you cannot view them all at the same time. One thing that you can do, Is serve up a url to your kml file (you can do this easily if you have an ftp account or with google my pages), then just enter the url into the search box, presto! all of your points will show up, only, you will not be able to route directions or edit any attributes, you can merely save to my maps and share the display of the points (again people will not be able to get directions from the points)
Serving up your kml to a url address is good practise, it will save you time, also you can use your own symbology, if you enter the url address in the upload area (as opposed to the search box) you will be able to keep your symbology, edit the attributes and get directions and all of that other fun stuff. You will however have the limitation of only being able to display 200 points per page.
Thus if you need to be able to have the user search for directions from your points, you can only have 200 points at a time :(
enter the url in the search box and all of your points will appear......but no directions..
Hope this helps.
For Reference:
http://econym.org.uk/gmap/kml.htm
http://code.google.com/apis/kml/documentation/kmlelementsinmaps.html