34

我需要在嵌入地图上放置几个由坐标指定的标记。我知道如何为一个标记做,但不知道如何做多个。

<iframe width="100%" height="100%" frameborder="0" scrolling="no" marginheight="0" marginwidth="0"
        src="https://www.google.com/maps/ms?msid=204293175747830583907.0005022420ef3bca6a816&msa=0&ie=UTF8&t=m&ll=40.79042,-73.945541&spn=0.462677,1.056747&output=embed"></iframe>
4

1 回答 1

60

您无法使用嵌入的谷歌地图 iframe 执行此操作。

您要么需要使用 Google Maps Map Maker ( http://www.google.com/maps/mm ),要么需要使用 Google Maps API ( https://developers.google.com/maps/ )。

Google Maps Map Maker 的缺点是您需要在任何时候手动返回并重新创建您的地图进行更改。

我建议使用 Google Maps API。

这是一个很棒的小教程,它向您展示了一个使用 Google Maps API 的带有多个标记的简单地图 - http://wrightshq.com/playground/placing-multiple-markers-on-a-google-map-using-api-3 /

于 2015-01-08T12:53:40.633 回答