Hi,
I have a controller (address /Home/Test see below) which definately responds to get request with this:
<?xml version="1.0" encoding="utf-8"?><kml xmlns="http://www.opengis.net/kml/2.2"><Placemark><name>Simple placemark</name><description>Attached to the ground. Intelligently places itself
at the height of the underlying terrain.</description><Point><coordinates>-122.0822035425683,37.42228990140251,0</coordinates></Point></Placemark></kml>
It is like a feed which responds with data (application/vnd.google-earth.kml+xml) to a get request.
I am using this javascript:
<script type="text/javascript" src="http://maps.google.com/maps/api/js?sensor=false&region=GB"></script>
<script type="text/javascript" src="/Scripts/jquery-1.4.1.js"></script>
<script type="text/javascript">
$(document).ready(function() {
var latlng = new google.maps.LatLng(37.42228990140251, -122.0822035425683);
var options = {
zoom: 17,
center: latlng,
mapTypeId: google.maps.MapTypeId.HYBRID
};
var map = new google.maps.Map(document.getElementById('map_canvas'), options);
//alert(georssLayer);
var georssLayer = new google.maps.KmlLayer('/Home/Test');
georssLayer.setMap(map);
});
</script>
The map is shown but nothing at -122.0822035425683,37.42228990140251.
Any ideas?
Maybe I missunderstand what KmlLayer does? I presume it performs a get request and then overlays the map ...
Christian