kml

What is the best way to generate KML files in C#?

What is the best way to generate KML files using C#? Is there a class library that I can use? I have looked and struggled to find anything interesting. libkml doesn't have a C# implementation or wrapper. Any help would be great. ...

Can google host my kml file (all my site)?

i want to save all user's (who visite my site) map , but i think google can hosting those kml file , yes ?? http://code.google.com/intl/zh-CN/apis/maps/documentation/mapsdata/developers_guide_javascript.html thanks ...

can we save kml info on google ,and then load them on my site ..

DUPE: http://stackoverflow.com/questions/2512874/can-google-host-my-kml-file-all-my-site i want to hosting on google, and show it on my site , can we ?? thanks ...

has any way to load a map Features(user saved) not using create a kml file..

i want to load user's map-Features not using create a kml file. how to do it.. thanks ...

how to make a "atom feed" insteadof 'kml file' to loaded by GGeoXml..(i use django)

you can load geo-info via two way below: var g = new GGeoXml("http://zjm1126.3322.org/mymedia/b.kml"); map.addOverlay(g); or var g = new GGeoXml("http://tagzania.com/rss/user/blogwatcher/7wonders%2Bnew/"); map.addOverlay(g); if i want to saving the features(user made on google map,line and point) ,i have to make a kml or make a ...

how to load google map geo-location not using kml..

like this site : http://www.housingmaps.com/ thanks ...

how to save and load (many)users's kml data on google-maps

i want a way to do this. thanks ...

working python xml

hello all, my question is the following, which is the best way of working XML (kml) with python?, especially script serializable. thanks for your attention and answers ...

Retrieving the list of markers loaded from a ggeoxml

I need to get the list of markers after I load them on the map from a kml file with map.addOverlay(geoxml); I tried this geoxml = new GGeoXml("http://www.mydomain.com/mykmlfile.kml"); GEvent.addListener( geoxml, "load", function( ) { if ( geoxml.loadedCorrectly( )) { var markers = geoxml.overlayman.markers ...

Google maps API - info window height and panning

I'm using the Google maps API (v2) to display a country overlay over a world map. The data comes from a KML file, which contains coords for the polygons along with a HTML description for each country. This description is displayed in the 'info window' speech bubble when that country is clicked on. I had some trouble initially as the inf...

any tools of create kml string for google-maps-v3.

i want to generate some kml string to stroe into database .. and has any simply way to generate this string ? thanks ...

how to set the center of map in kml file .

in http://code.google.com/intl/en/apis/kml/documentation/kml_tut.html i want to create a kml file , but i can't find how to set a center of map using google-maps-v3 so how to set . thanks ...

Library that supports KML?

I'm looking for a library that can be used to develop an application that supports KML. Basically I'm looking for what Google Earth does for 3D visualizations using KML. Is there such a library? ...

KML Label placement

How can I specify label placement in a kml file to make the label centered on the feature (not offset to the top right as in default)? ...

Draw line in Google Earth that takes account of the globe's curvature

I want to draw some lines that would follow either the longitude or latitude, but it doesn't take the globe's curvature in account. How would I go about doing that? I'm using KML. ...

Google Earth KML

How do you links cities with a curve (line) in kml for Google Earth? ...

iPhone Google Maps KML Search

I'm using Google maps with KML Query. But my query string is "Japanese" string "マクドナルド" I'm using http://maps.google.co.jp. When requesting data, I'm getting "0" bytes. But the same query when I put in browser, its download a KML file. My code is as follows: query = [NSString stringWithFormat:@"http://maps.google.co.jp/maps?&near=%f...

String of KML needs to be converted to java objects

I have a string of kml coming in on a request object. I have used xjc to create the kml java objects. I am looking for an easy way to create the kml nested java objects from this string. I could parse the string and create each object in the tree by hand but wouldn't it be cool if there was a library or something that would create the...

OpenLayers, Bing and a KML

Hi! I'm trying to lay an KML over VirtualEarth Map in OpenLayers, but it doesn-t work. I guess it has to be something with the projection. Map: var options = { controls: [ new OpenLayers.Control.KeyboardDefaults(), new OpenLayers.Control.MouseDefaults(), new OpenLayers.Control.PanZoomBar(), ...

How to get the line number an xml element is on via the Java w3c dom api

Is there a way to lookup the line number that a given element is at in an xml file via the w3c dom api? My use case for this is that we have 30,000+ maps in kml/xml format. I wrote a unit test that iterates over each file found on the hard drive (about 17GB worth) and tests that it is parseable by our application. When it fails I thro...