只是想知道是否可以通过外部/链接的.css
文件而不是内联样式设置弹出气球的样式?
答案 0 :(得分:3)
我通常做的是为我的地标气球创建一个BalloonStyle,它包含一个包含div
的包装earth-balloon
,然后可以直接从包含的页面中设置样式。
例如,KML看起来像:
<?xml version="1.0" encoding="UTF-8"?>
<kml xmlns="http://www.opengis.net/kml/2.2">
<Document>
<Style id="foo">
<BalloonStyle>
<text><![CDATA[
<div class="earth-balloon">
$[description]
</div>
]]></text>
</BalloonStyle>
</Style>
<Placemark>
<styleUrl>#foo</styleUrl>
<name>Bar</name>
<description><![CDATA[
Some <em>HTML</em> here.
]]></description>
<Point>
<coordinates>-122,37</coordinates>
</Point>
</Placemark>
</Document>
</kml>
包含页面本身可能如下所示:
<html>
<head>
<link rel="stylesheet" type="text/css" href="styles.css"/>
<!-- Earth API stuff goes here -->
</head>
<body>
<div id="map3d"></div>
</body>
</html>
然后您的styles.css
可以通过以下规则为styleUrl = #foo
的地标设置气球样式:
.earth-balloon {
font-family: Georgia, serif;
}
.earth-balloon em {
color: red;
}
希望有所帮助!
答案 1 :(得分:0)
是的,我过去做过这个,这可能很棘手。你需要使用firebug来找出你需要的选择器,并且在你的CSS中你必须非常具体地覆盖它们,在你可能甚至必须使用的occaision上!重要的是规则。
娜塔莉