KmlLayer自定义图标

发布于 2024-10-02 20:37:42 字数 180 浏览 5 评论 0原文

我有一个网站,我的社区的用户可以导入他的 KML 文件(从 Google 地图地球导出)并显示地图(例如他在芝加哥最喜欢的餐馆)。这部分很简单,但现在我要自定义地图上的图标,我不明白如何使用 KML 文件...

对此还有其他解决方案,也许导出/导入不同的文件而不是 kml? 谷歌地图是否允许以 json/xml 格式导出结果?

I have a website where a user of my community can import his KML file (exported from Earth of Google Maps) and display a map (ex his favorite restaurants in Chicago). this part was ok and easy but now I would customize the icons on the map, and i dont see how is it possible using KML files...

there is any othe solution to this, maybe exporting/importing a different file instead of kml?
does google maps allow to export the results in json/xml?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

心如荒岛 2024-10-09 20:37:42

如果您只是尝试更改地标标记图标,则只需将地标的样式设置为包含图标节点的样式即可。

    <Style id="icon">
        <IconStyle>
            <Icon>
                <href>http://path/to/your/icon.png</href>
            </Icon>
        </IconStyle>
    </Style>
    <Placemark>
        <name>Name</name>
        <description>
        hi
        </description>
        <styleUrl>#icon</styleUrl>
        <Point>
            <coordinates>...</coordinates>
        </Point>
    </Placemark>

这将显示该标记路径中包含的图标而不是默认图标。

If you're trying to just change the placemark marker icons, you can just set the style of the placemark to a style that contains the icon node.

    <Style id="icon">
        <IconStyle>
            <Icon>
                <href>http://path/to/your/icon.png</href>
            </Icon>
        </IconStyle>
    </Style>
    <Placemark>
        <name>Name</name>
        <description>
        hi
        </description>
        <styleUrl>#icon</styleUrl>
        <Point>
            <coordinates>...</coordinates>
        </Point>
    </Placemark>

This will show the icon contained at that path for the marker instead of the default.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文