3

我需要将自定义 kml 文件加载到谷歌地图中,​​代码与相应的资源几乎没有变化:

function initialize() {
var myLatlng = new google.maps.LatLng(39.397, -100.644);
  var myOptions = {
    zoom: 5,
    center: myLatlng,
    mapTypeId: google.maps.MapTypeId.ROADMAP
  };
  var map = new google.maps.Map(document.getElementById('map_canvas'), myOptions);

  var geoXml = new geoXML3.parser({map: map, processStyles: true});
  geoXml.parse('test.kml');
};

.kml 直接来自谷歌地图,有一堆标记,都带有自定义图标,例如:

<Style id="sn_1">
    <IconStyle>
        <scale>1.1</scale>
        <Icon>
            <href>http://maps.google.com/mapfiles/kml/paddle/Z.png</href>
        </Icon>
        <hotSpot x="32" y="1" xunits="pixels" yunits="pixels"/>
    </IconStyle>
    <ListStyle>
        <ItemIcon>
            <href>http://maps.google.com/mapfiles/kml/paddle/Z-lv.png</href>
        </ItemIcon>
    </ListStyle>
</Style>

其他图标被定义为(现有的)本地路径,例如:

<Icon>
<href>img/marker/5.png</href>
</Icon>

然而,虽然地图显示得很好,但没有加载任何图标,相反,我只获得了默认的谷歌地图图标。对此的任何帮助将不胜感激,因为我的 JavaScript 知识非常有限,而且我觉得我正处于这样一个时刻,更多的抓挠不会让我到任何地方......

干杯:)

4

2 回答 2

2

grigno提供的答案对我来说效果很好,但是 KML 文件中的所有标记都必须具有这样的样式,或者在传递给函数之前检查placemark.style.icon是否未定义:

<Document>
<name>myKml.kml</name>
<Style id="My_Style">
    <IconStyle> 
        <Icon> 
            <href>office-building.png</href>
        </Icon>
    </IconStyle>
</Style>

在地标部分:

<Placemark>
   <name><![CDATA[iMEX0011]]></name>
   <description><![CDATA[MARKER TITLE]]></description>
   <styleUrl>#My_Style</styleUrl> 
   <Point>
       <coordinates>-99.2232472,25.4413972,0</coordinates>
   </Point>
</Placemark>
于 2014-04-13T09:06:47.880 回答
1

我用 tis 代码解决了:

var marker = new google.maps.Marker({position:point,icon: placemark.style.icon});

这是完整的初始化:

        //Construct a geoXML3 parser
        var myParser = new geoXML3.parser({
                map: map, 
                singleInfoWindow:true,
                processStyles: true,
                createMarker:function(placemark){
                    //Constructing marker for each Placemark node, and then add it to the markclustere
                    var point = new google.maps.LatLng(placemark.point.lat, placemark.point.lng);
                    var marker = new google.maps.Marker({position:point,icon: placemark.style.icon});

                    google.maps.event.addListener(marker, "click", function(){
                        //console.log(placemark.name);
                        infoWindow.content = placemark.description;
                        infoWindow.open(map, marker);
                    });

                    markerclusterer.addMarker(marker);
                }
        });
于 2013-04-03T09:10:01.963 回答