gpt4 book ai didi

javascript - KML 图标大小谷歌地图 API?

转载 作者:行者123 更新时间:2023-11-30 17:39:23 24 4
gpt4 key购买 nike

我正在使用 KML 自定义图标,如下所示:

        <Style id='icon-1073'>
<IconStyle>
<scale>1.1</scale>
<Icon>
<href>http://www.gstatic.com/mapspro/images/stock/1073-biz-real-estate.png</href>
</Icon>
</IconStyle>
</Style>

但我似乎无法使用大图标...如果我使用 100px x 100px,它仍然会缩小。

最佳答案

根据 KML reference ,Google map 或 Google map Javascript API 不支持比例标签。

<scale> no

选项:

通过上面的链接加载的 KML:

<?xml version="1.0" encoding="UTF-8" ?>
<kml xmlns="http://www.opengis.net/kml/2.2">
<Document>
<Style id='icon-1073'>
<IconStyle>
<scale>2.0</scale>
<Icon>
<href>http://www.gstatic.com/mapspro/images/stock/1073-biz-real-estate.png</href>
</Icon>
</IconStyle>
</Style>
<Placemark>
<name><![CDATA[]]></name>
<description><![CDATA[]]></description>
<styleUrl>#icon-1073</styleUrl>
<Point>
<extrude>1</extrude>
<altitudeMode>relativeToGround</altitudeMode>
<coordinates>71.3232421875,21.596150576461437,0</coordinates>
</Point>
</Placemark>
</Document>
</kml>

关于javascript - KML 图标大小谷歌地图 API?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21393101/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com