Hi, I have had a website running for a while in good condition and it seems to have broken without changes being made. It is a website that gets displayed as a sign with no user interaction and displays an image over top of the map via kml. The problem seems to be that the lookat element in my kml is no longer taking effect. I am using code version 2.136d because I needed code features that were recent when i created this page but I didn't want to use 2.x version for stability reasons. Am I doing something wrong with my lookat values or has something changed on google's side of things that lookats are no longer working?
Thanks, Matt code snippet: map.addOverlay( routeTraceGeoXml ); map.setCenter( routeTraceGeoXml.getDefaultCenter() ); map.setZoom( map.getBoundsZoomLevel(routeTraceGeoXml.getDefaultBounds ()) ); KML: <?xml version="1.0" encoding="UTF-8"?> <kml xmlns="http://www.opengis.net/kml/2.2" xmlns:gx="http:// www.google.com/kml/ext/2.2" xmlns:kml="http://www.opengis.net/kml/2.2" xmlns:atom="http://www.w3.org/2005/Atom"> <LookAt> <longitude>-80.087539</longitude> <latitude>42.1288</latitude> <altitude>2000</altitude> <heading>0</heading> <tilt>0</tilt> <range>1000</range> <altitudeMode>relativeToGround</altitudeMode> </LookAt> <GroundOverlay> <name>Untitled Image Overlay</name> <color>a3ffffff</color> <Icon> <href>http://emta.availtec.com/InfoPoint/images/ bayliner_final_v2.png</href> <viewBoundScale>0.75</viewBoundScale> </Icon> <LatLonBox> <north>42.13851513596505</north> <south>42.11898430831377</south> <east>-80.07920289669947</east> <west>-80.09590685668451</west> <rotation>0.07344022166838694</rotation> </LatLonBox> </GroundOverlay> </kml>
-- You received this message because you are subscribed to the Google Groups "Google Maps API" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-maps-api?hl=en.
