Tagged Questions

Keyhole Markup Language (KML) is an XML schema used for expressing geographic annotation and visualisations. The KML file format used to display geographic data in various applications.

learn more… | top users | synonyms

18
votes
3answers
24k views

How to draw a path on a map using kml file?

Can I parse kml file in order to display paths or points in Android? Please could you help me with that? This is kml sample code which I would like to display in android google map: <?xml ...
13
votes
6answers
2k views

How to display a moving boat in Google Earth?

I am new to the KML format and try to figure out how to display a boat (a png), moving from a place to another along a path (a simple line drawn composed of several lines). I can see how to display ...
6
votes
2answers
370 views

Catching Remember-Me Authentication Events in Spring Security

I'm developing an application in which I need to catch and respond to Authentication events to take appropriate action. Currently, I'm catching just fine the AuthenticationSuccessEvent Spring throws ...
6
votes
1answer
167 views

use KML , address lookup, directions and 'share map' on the same map

I want to use my kml (or xml) file with places, but at the same time be able to search for places, use directions or 'share map' functionality. At the moment when I try to do that in Google or Bing, ...
6
votes
5answers
3k views

unzip strings in javascript

anyone knows a simple JS library implementing the UNZIP algorithm? No disk-file access, only zip and unzip a string of values. there are ActiveX, using WinZIP and other client dependent software for ...
5
votes
3answers
8k views

Loading a local .kml file using google maps?

I created a hello world program to load a local kml file (borrowed from google's docs): var ctaLayer = new google.maps.KmlLayer("http://localhost:8080/kml/cta.kml"); This does not work (nothing ...
5
votes
5answers
3k views

How to simplify (reduce number of points) in KML?

I have a similar problem to this post. I need to display up to 1000 polygons on an embedded Google map. The polygons are in a SQL database, and I can render each one as a single KML file on the fly ...
5
votes
5answers
4k views

Linq to XML for KML?

I'm a LINQ to XML newbie, and a KML newbie as well; so bear with me. My goal is to extract individual Placemarks from a KML file. My KML begins thusly: <?xml version="1.0" encoding="utf-8"?> ...
4
votes
1answer
2k views

Google Maps API and KML File LocalHost Development Options

The Google Maps JavaScript version 3 API library documentation clearly explains: The Google Maps API supports the KML and GeoRSS data formats for displaying geographic information. These data ...
4
votes
1answer
490 views

Efficient KML Rendering as a MapKit overlay on the iPhone

Howdy all. I'm working on a project that will (ideally) require the rendering of large, complex KML files as an overlay/overlays on a MapKit MKMapView. I've tried the KML parser that Apple's sample ...
4
votes
1answer
213 views

Specifying accuracy in GPX or KML

I am developing an Android application and would like to play a recorded track in DDMS tool. Besides latitude and longitude, my recorded data has horizontal accuracy which I'd like to pass to Android ...
4
votes
2answers
325 views

Extra <to_s/> when using builder to generate KML

I'm trying to generate KML using Builder. I know their are some options out there to help with this but I will be doing some 2.2 specific things that aren't supported by the KML gems I've looked at ...
4
votes
3answers
10k views

Android: how to load KML

could some one please tell me if there is a way to load kml file into the google map in android. thanks
4
votes
5answers
867 views

programmatically converting kml to image

Are there any open source libraries (preferably python) that will convert a kml file to an image file? I have an open source web-based application that allows users to draw shapes on a Google Earth ...
4
votes
1answer
930 views

Which is the best Java library to generate KML? [closed]

I am looking for a Java library to produce data in KML format. Is JAK the best option ?
4
votes
3answers
2k views

How to prepare KML file for Android Emulator Control?

I am trying to test my application with location information. You know the Emulator Control has an ability to load from KML file. (Eclipse -> DDMS -> Emulator Control -> Location Controls -> KML -> ...
4
votes
2answers
2k views

CLLocationManager Simulator to simulate car moves?

I'm looking since quite a long time something like a CLLocationManager simulator that would enable me to simulate GPS positions (CLLocation instances that could be retrieved through the ...
4
votes
3answers
6k views

Read and parse KML in java

Hi Is there any library available to parse KML ?
4
votes
2answers
6k views

SOLVED: How to output a simple C#/ASP.NET-generated KML file

I wanted to generate (Using C#/ASP.NET2.0 on IIS) and return a KML document directly to the browser... without writing a temporary file to the server or relying on a 3rd party library or class. ...
4
votes
4answers
10k views

How does CSS formatting in a Google Maps bubble work?

I'm using KML and the GGeoXml object to overlay some shapes on an embedded Google map. The placemarks in the KML file have some custom descriptive information that shows up in the balloons. ...
3
votes
1answer
35 views

Unable to parse file with jQuery in IE 8 and below because it's not XML (even though it sort of is XML)

I'm using AJAX to load in a KML file (which is basically an XML file). I'm able to parse everything fine in IE9, FF, etc., but in IE8 it doesn't work. I get the data back but I'm not able to parse ...
3
votes
3answers
127 views

Creating a kml file from a mysql database with php

I hope there is a php genius here somewhere who can help me with this. I have a database table called baeir, it has the following fields: b_id (primary key) b_name hrepparid (does not need to be ...
3
votes
1answer
108 views

How to link to native Google Maps iOS app from mobile Safari browser

I read somewhere (I've forgotten where) that it is now possible to link to the native Google Maps iOS app from the mobile Safari browser by using the maps:// protocol and that the app will now allow ...
3
votes
3answers
2k views

Best way to overlay an ESRI shapefile on google maps?

What is the best way to overlay a shapefile in Google Maps? After some reading suggests that, converting shapefile into KML and overlaying KML in Google map is an option. If that is the case, how do ...
3
votes
1answer
277 views

Route thru points

How i can get kml file from Google Maps that contains route thru several points. Now i use this link ...
3
votes
3answers
491 views

Which data source is preferable for Google Maps, KML or JSON?

I totally see the benefits of JSON, pull over a lightweight array of data to stuff into my Google Maps (and template through to show a list of the points as well). I've heard a lot of talk about KML. ...
3
votes
1answer
162 views

How do I combine GPS track data with another time-coded dataset?

I have GPS track data from a logging device, in GPX format (or any other format, easily done with gpsbabel). I also have non-GPS data from another measurement device over the same time period. ...
3
votes
4answers
1k views

Android: Getting an invalid KML file from google maps

I'm trying to get and display a live .kml file from maps.google.com using ...
3
votes
2answers
2k views

Open local KML File in Google Maps on Android

I have loaded a KML file onto an Android device. What's the easiest mechanism for loading an overlay of that KML file into Google Maps? I do not want to upload the KML file to the web but would rather ...
3
votes
1answer
1k views

How do I convert this XML to KML?

I am a little new to this, but I need to convert the below XML to KML format so I can feed it into Google maps. Can anyone help with this? <messageList> <totalCount>1</totalCount> − ...
3
votes
1answer
634 views

KML Layers Cursor CSS - Google Maps API v3

I've run into a small problem with the semi-new KML Overlay functionality with Google Maps API v3, wherein while I am able to use "suppressInfoWindows: true;", the cursor still appears as though the ...
3
votes
2answers
2k views

Google Maps HTTP API for driving and walking directions

Do you know how I can get walking directions from Google by giving two specific coordinates? How can I send simple HTTP GET requests and have the result in a KML file? I don't want to geocode, but ...
3
votes
3answers
1k views

What KML fields are supported in the native Google Maps application on the iPhone?

I have been doing some research on using maps in iPhone applications and it looks like most of my needs can be met passing KML data into the built-in google maps application, but I cannot seem to set ...
3
votes
4answers
5k views

Access KML placemarks in a Google Maps overlay via Javascript?

I have a KML file overlay on an embedded Google Map using the GGeoXml object. I'd like to be able to access specific placemarks in the KML file from Javascript (for example to highlight a selected ...
2
votes
1answer
31 views

Render kml files on google maps locally?

I'm using GeoXML js. for v3 google maps to parse kml files locally. I do not wish to use KmlLayer() as it requires the kml to be on a publicly accessible server. ...
2
votes
1answer
44 views

Access to KML tree

I have some rutes in KML format and I can't modify them. I want to draw them on a map but I also want to get the fist and last points to check for near cities and interesting places. The problem that ...
2
votes
1answer
26 views

Learning KML, but finding inconsistencies in specs

I need to dive into KML, so I'm looking at specs and examples on the web, but I get some inconsistent information. For instance, some sites say you write things like ...
2
votes
2answers
50 views

Horseshoe shaped polygon

I have the following kml polygon: <Polygon><outerBoundaryIs><LinearRing><coordinates>20.002,80.002 20,80.002 20,80.004 20.006,80.004 20.006,80.001 20.002,80.001 20.002,80.002 ...
2
votes
1answer
169 views

Google Maps zoom gets over riden, when using a kml file

How do I specify zoom level for google maps in a kml file or why is it that my zoom level gets over ridden when I load this file. My question is actually how do I control zoom of a map for the ...
2
votes
0answers
140 views

How to add custom street names on Google Maps?

So you want to add custom street names or other labels on your Google Map? For example on this location. After learning current (3.6) google map js API you have these possible options: KmlLayer (not ...
2
votes
1answer
123 views

Parsing a foursquare KML venue feed with simpleXML

I am trying to parse a KML venue feed from foursqare with simpleXML but I cannot get the nested-in-desctription venue url. It looks like simpleXML strips it. In detail: The foursqare kml feed ...
2
votes
2answers
127 views

Creating x and y distance coordinates for R from a .kml file

I would like to use a .kml track file to make a set of x, y coordinates for use in R. What I have right now is a GoogleEarth track, which I believe is a LineString. I have heard that the rgdal ...
2
votes
2answers
146 views

How to create a KML file using R

I have written a R script to get some map point data (Latitude and Longitude values). I am able to plot them in R and visualize them. But now I want to generate a KML file from this data and view ...
2
votes
1answer
331 views

Java API for KML (JAK) embedding images in kmz files

Is there a way to just add an image file into a kmz file using Java API for KML (JAK)? I can create a kml file with no problem, but I'm trying to just embed a resources (such as an images folder with ...
2
votes
1answer
173 views

How do I get a servlet container to read JSESSIONID from the query string rather than from the URL

I need to be able to maintain a session by having the JSESSIONID specified as a parameter of the query string of the url rather than part of the URL itself. I other words I need to maintain a session ...
2
votes
3answers
198 views

Split KML into subfiles with XSLT, nearly there but can't get it to work

I have a KML file with country borders <Document> ... <Folder> <name>Countries</name> <Style> <ListStyle> ...
2
votes
1answer
89 views

Large object marshalling using JAXB loses characters

I'm using the JavaAPIForKml to generate large KML objects and marshal them to a file. When the output reaches a certain size I end up losing an angle bracket (<). It seems like there's a buffer ...
2
votes
1answer
290 views

How to display polygon with apple's KML viewer sample code

I'm creating an app which shows multiple overlays on a map, and you can enable or disable each 'layer'. I'm using Apple's KMLParser class as demoed in WWDC 2010 session 127. Up till now, I've been ...
2
votes
2answers
151 views

KMLViewer Apple's example not working

I've been searching for quite sometime an answer to my problem with no success. So here it goes... KMLViewer, Apple's example is not working in some cases. After executing the README steps, i've ...
2
votes
2answers
209 views

How to get this postgis data into a format I can use with Google Maps/KML

If I run the following query in postgis select postcode, st_astext(geom) from testshp where postcode = 'L9 2DA'; I get the following: "L9 2DA";"SRID=4277;MULTIPOLYGON(((336540.345408958 ...

1 2 3 4 5 10