将自定义符号添加到Google地图

时间:2014-03-10 04:43:06

标签: javascript jquery google-maps

我正在做一个基于谷歌地图的项目。我需要模拟主体走过的路径。知道怎么做吗?

仅供参考我的应用程序功能与此Flightradar24.com

类似

1 个答案:

答案 0 :(得分:0)

在Javascript中创建google.maps.Marker对象时,您可以指定要使用的特定图像来代替具有Icon属性的图钉。要模拟路径,您可以擦除并重绘引脚。我建议将所有引脚保存到一个数组中,然后稍后可以引用该数组进行更新并重新绘制引脚。

https://developers.google.com/maps/documentation/javascript/reference#MarkerOptions

EX:

var marker = new google.maps.Marker({
            position: location,
            map: map,
            icon: pinType
        });