로컬 디스크 또는 네트워크 드라이브의 이미지를 사용하여 맞춤 KML 장소 표시 아이콘을 표시하는 방법을 아는 사람이 있습니까? 로컬 디스크 또는 네트워크 드라이브의 이미지를 사용하여 맞춤 KML 장소 표시 아이콘을 표시하는 방법
나는이 시도하고 그것은 작동하지 않습니다 :<?xml version="1.0" encoding="UTF-8"?>
<kml xmlns="http://www.opengis.net/kml/2.2">
<Style id="icon">
<IconStyle>
<Icon>
<href>c:\etnasss.jpg</href>
</Icon>
</IconStyle>
</Style>
<Placemark>
<name>Simple placemark</name>
<description>Attached to the ground. Intelligently places itself
at the height of the underlying terrain.</description>
<styleUrl>#icon</styleUrl>
<Point>
<coordinates>-122.0822035425683,37.42228990140251,0</coordinates>
</Point>
</Placemark>
</kml>
감사
답장을 보내 주셔서 감사합니다. 네트워크상의 다른 컴퓨터에서 아이콘 파일을 사용할 수 있습니까? href는 \\ ComputerNameOrIpAddress \ ShareName \ pic.jpg와 같을 수 있습니까? –
\\ Computername은 URL이 아닌 Windows 식별자입니다. 다른 컴퓨터에 웹 서버가있는 경우 URL http : // machine/....을 사용할 수 있습니다. – JasonM1