如何显示多个地标和路径?

时间:2011-05-19 09:20:57

标签: python google-maps metaprogramming kml

我正在使用PyKml模块在我的Python脚本中形成kml。我想显示由坐标数组组成的路径,并将所有点显示为地标。目前,我正在尝试(没有成功)按照

的方式去做
 doc = K.kml(
        K.Document(
            K.Placemark(
                 K.Point(
                     K.name("pl1"),
                    K.coordinates("52.4858, 25.9218, 1051.05105105")
                ) 
            ),
            K.Placemark(
                K.name("path1"),
                K.LineStyle(
                    K.color(0x7f00ffff),
                    K.width(10)
                ),
                K.LineString(
                    K.coordinates(
                        coord_str
                    )
                )
            )
        )
    )

路径看起来不错,但是当我开始添加地标时,Google地图只显示第一个。我应该使用什么来显示路径上的所有地标? 我是否需要某种元编程(即自动在对象定义中添加地标)?或许别的什么?

1 个答案:

答案 0 :(得分:1)

这应该允许您遍历对象并将每个点与它终止的行相关联:

from pykml.factory import KML_ElementMaker as K
from lxml import etree

#line_points here comes from a geojson object
data = json.loads(open('tib.json').read())
line_points = data['features'][0]['geometry']['coordinates']

_doc = K.kml()

doc = etree.SubElement(_doc, 'Document')

for i, item in enumerate(line_points):
    doc.append(K.Placemark(
        K.name('pl'+str(i+1)),
        K.Point(
            K.coordinates(
                str(item).strip('[]').replace(' ', '')
                )
        )
    )
)

doc.append(K.Placemark(
    K.name('path'),
    K.LineStyle(
        K.color('#00FFFF'),
        K.width(10)
    ),
    K.LineString(
        K.coordinates(
            ' '.join([str(item).strip('[]').replace(' ', '') for item in line_points])
        )
    )
))

s = etree.tostring(_doc)

print s

其中line_points是这样的列表列表,坐标为:

[[-134.15611799999999, 34.783318000000001, 0],
 [-134.713527, 34.435267000000003, 0],
 [-133.726201, 36.646867, 0],
 [-132.383655, 35.598272999999999, 0],
 [-132.48034200000001, 36.876308999999999, 0],
 [-131.489846, 36.565426000000002, 0],...

Here (http://sfgeo.org/data/contrib/tiburon.html)是输出的示例,jsfiddle在这里:http://jsfiddle.net/bvmou/aTkpN/7/但是公开查看api密钥时出现问题,请尝试使用本地计算机。