I have the following kml file that I upload on a Google map and it places the pointer correctly, but it always increased at the maximum level.
Using google APIs, I can set my own zoom level, but I'm trying to do this using the built-in map in iFrame (provided by Google).
Is there a way to set the zoom level in kml itself? I looked at the LookAt and Camera attributes, but the document said they were not supported on Google Map.
Thanks!
<?xml version="1.0" encoding="UTF-8"?>
<kml xmlns="http://earth.google.com/kml/2.1">
<Placemark>
<Point>
<coordinates>144.897426,-37.8045</coordinates>
</Point>
</Placemark>
</kml>
source
share