Google Map API(JS)-在Google地图中显示多个位置,但一个接一个

时间:2018-07-09 09:37:08

标签: javascript jquery google-maps

我正在使用以下代码使用Google MAP JS API在地图上显示多个位置。

Code

但是我想在到达第一个位置后显示第二个标记,并在到达第二个位置后显示第三个标记,依此类推。并非一次所有标记。 根据代码,如果我到达邦迪海滩,等等,我想在地图上显示“ Coogee Beach”标记。一次一个标记。

var locations = [
  ['Bondi Beach', -33.890542, 151.274856, 4],
  ['Coogee Beach', -33.923036, 151.259052, 5],
  ['Cronulla Beach', -34.028249, 151.157507, 3],
  ['Manly Beach', -33.80010128657071, 151.28747820854187, 2],
  ['Maroubra Beach', -33.950198, 151.259302, 1]
];

1 个答案:

答案 0 :(得分:0)

没有简单的方法知道您是否到达某个位置,这里您可以做的是使用distanceMatrixService获取原点和位置之间的距离,将其称为distanceA以及原点和位置之间的距离让我们将其称为distanceB,该算法将类似于:

if(distanceA>distanceB){
     addMarker(locations[i+1]);
     distanceB=distance between the origin and the next location;
     i++;
}

这里是distanceMatrixService的链接 https://developers.google.com/maps/documentation/javascript/reference/3.exp/distance-matrix