Does Google Maps support KML regions like Google Earth does?
Google gives a nice description/tutorial of regions here:
https://developers.google.com/kml/documentation/regions
which mentions Google Earth specifically, but not Google Maps.
According to https://developers.google.com/kml/documentation/kmlelementsinmaps Google Maps DOES support KML regions, but https://developers.google.com/kml/documentation/mapsSupport doesn't mention them explicitly.
Zoom levels in kml files on google maps is also ambigious on the issue.
I created my own test KML file (stolen almost verbatim from google):
<?xml version="1.0" encoding="UTF-8"?>
<kml xmlns="http://www.opengis.net/kml/2.2">
<Document>
<name>Flat Region</name>
<Region>
<LatLonAltBox>
<north>37.430419921875</north>
<south>37.41943359375</south>
<east>-122.080078125</east>
<west>-122.091064453125</west>
</LatLonAltBox>
<Lod>
<minLodPixels>128</minLodPixels>
</Lod>
</Region>
<GroundOverlay>
<name>Mountain View DOQQ</name>
<Icon>
<href>http://data.bcinfo3.barrycarter.info/graphpaper.gif</href>
</Icon>
<LatLonBox>
<north>37.430419921875</north>
<south>37.41943359375</south>
<east>-122.080078125</east>
<west>-122.091064453125</west>
</LatLonBox>
</GroundOverlay>
</Document>
</kml>
You can see it here:
As you zoom out, the image remains visible (albeit as a white square) even when it's only a few pixels on each side.
Does the "minLodPixels" setting of 128 in the KML file mean it should stop being visible once it takes up fewer than 128 pixels?
If so, would this prove Google Maps does NOT support KML regions?
Or am I misunderstanding something?