Thanks Simon.
I have spent some time on the Region tag.
I was able to have a point appear only when you zoom close enough.
Here is the code I wrote :
Code:
<?xml version="1.0" encoding="UTF-8"?>
<kml xmlns="http://earth.google.com/kml/2.1">
<Document>
<Placemark>
<name>A little boat</name>
<Region>
<LatLonAltBox>
<north>47</north><south>46</south><east>6.9</east><west>5.9</west>
</LatLonAltBox>
<Lod>
<minLodPixels>512</minLodPixels>
<maxLodPixels>-1</maxLodPixels>
</Lod></Region>
<Point><coordinates>6.448056,46.468694,1252</coordinates></Point>
</Placemark>
</Document>
</kml>