Hola dflor, sin ver un extracto de tu trabajo no puedo hacerme una idea al 100% de lo que buscas. Pero imagino que lo que quieres es modificar el tamaño de los textos que acompañan a las entidades gáficas.
Si es así supongo que debes trastear en la etiqueta "label style" de los estilos del documento consulta esto: code.google.com/ ...labelstyle
Espero que te sirva, pues hoy marcho de vacaciones y no creo que me vuelva a conectar hasta Septiembre.
// store the object loaded for the given fichero... initially none of the objects
// are loaded, so initialize these to null
var currentKmlObjects = {
'1': null,
'2': null,
'3': null
};
google.load("earth", "1");
function init() {
google.earth.createInstance('map3d', initCallback, failureCallback);
addSampleUIHtml(
'<h2>Como cargar varios kml en Google Earth y visualizarlos a modo de capas independientes</h2>' +
'<input type="checkbox" id="kml-1-check" onclick="toggleKml(\'1\');"/><label for="kml-1-check">Distrito Federal</label><br/>' +
'<input type="checkbox" id="kml-2-check" onclick="toggleKml(\'2\');"/><label for="kml-2-check">Suspensiones</label><br/>' +
'<input type="checkbox" id="kml-3-check" onclick="toggleKml(\'3\');"/><label for="kml-3-check">Medidores</label><br/>'
);
}
function initCallback(instance) {
ge = instance;
ge.getWindow().setVisibility(true);
// se añade control de navegación
ge.getNavigationControl().setVisibility(ge.VISIBILITY_AUTO);
...fichero... initially none of the objects
// are loaded, so initialize these to null
var currentKmlObjects = {
'red': null,
'yellow': null,
'green': null
};
google.load("earth", "1");
function init() {
google.earth.createInstance('map3d', initCallback, failureCallback);
addSampleUIHtml(
'<h2>Como cargar varios ficheros kml en Google Earth y visualizarlos a modo de capas independientes</h2>' +
'<input type="checkbox" id="kml-red-check" checked onclick="toggleKml(\'red\');"/><label for="kml-red-check">Recorrido del descenso</label><br/>' +
'<input type="checkbox" id="kml-yellow-check" checked onclick="toggleKml(\'yellow\');"/><label for="kml-yellow-check">Situación</label><br/>' +
'<input type="checkbox" id="kml-green-check" checked onclick="toggleKml(\'green\');"/><label for="kml-green-check">Acceso y retorno</label><br/>'
);
}
function initCallback(instance) {
ge = instance;
ge.getWindow().setVisibility(true);