需要谷歌地图API 3帮助

时间:2012-06-08 14:18:53

标签: javascript google-maps google-maps-api-3

我正在为我的应用程序使用谷歌地图API 3。

所以接下来我要做的是。 当页面加载时,我将以这种格式获得一系列位置:

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]
];

我想在每个positins中添加标记

var marker, i;

    for (i = 0; i < locations.length; i++) {  
      marker = new google.maps.Marker({
        position: new google.maps.LatLng(locations[i][1], locations[i][2]),
        map: map
      });

标记上的图片:

var image = new google.maps.MarkerImage("images/truck3.png",
        new google.maps.Size(32.0, 37.0),
        new google.maps.Point(0, 0),
        new google.maps.Point(16.0, 18.0)
    );
  var shadow = new google.maps.MarkerImage("images/shadow-truck3.png",
        new google.maps.Size(51.0, 37.0),
        new google.maps.Point(0, 0),
        new google.maps.Point(16.0, 18.0)
    );

  var marker = new google.maps.Marker({
    position: map.getCenter(),
    map: map,
    icon: image,
    shadow: shadow,
    title: 'Click to zoom'
  });

这应该缩放在屏幕中心初始化的所有标记,但是在中心后面只开始一次,因为用户可能会在地图上查找其他内容。

我希望标记一直在移动所以我可能需要添加一些事件处理程序来一直获取新位置?

然后当你点击标记时,你得到了缩放,标记仍在移动(获得新位置),但现在我需要使用我将在php数组中发送的ID,这样我就可以调用一些php函数用那个参数。

之后,当用户点击我希望能够在我的请求开始时来到的一侧的按钮时,这意味着在屏幕中央加载了标记。

部分点击:

 google.maps.event.addListener(marker, 'click', function() {
    map.setZoom(13);
    map.setCenter(marker.getPosition());
    google.maps.event.addListener(map, 'center_changed', function() {
    // 1 seconds after the center of the map has changed, pan back to the
    // marker.
    window.setTimeout(function() {
      map.panTo(marker.getPosition());
    }, 1000);
  });
  });
}

所以基本上我告诉了你想要达到的一切我相信很多你做了同样的事情。这些是来自许多来源的代码的一部分,我需要使它们协同工作并添加一些较小的新功能,如上所述。

谢谢

2 个答案:

答案 0 :(得分:2)

所以听起来你正在检索locations变量,每隔几秒就会重复一次数据库查询。在本演示中,我使用JSON检索数据,并更新位置或创建标记(如果它尚未存在)。

http://freezoo.alwaysdata.net/truck2.html

    function updateTrucks() {
      $.ajax({
        url: "gettruck.php",
        cache: false,
        dataType: 'json',
        data: {},
        error: function(jqxhr, textStatus, errorThrown) {
          alert("Error: " + textStatus + " " + errorThrown);
        },
        success: function(data) {
        for(var i = 0; i < data.results.length; i++) {
          if(trucks.hasOwnProperty(data.results[i].id)) {
            // update position
            trucks[data.results[i].id].setPosition(new google.maps.LatLng(
              parseFloat(data.results[i].lat),
              parseFloat(data.results[i].lng)));
            trucks[data.results[i].id].speed = data.results[i].speed;
          }
          else {
            // create new marker
            trucks[data.results[i].id] = new google.maps.Marker({
              map: map,
              position: new google.maps.LatLng(
                parseFloat(data.results[i].lat),
                parseFloat(data.results[i].lng)),
              title: data.results[i].name,
              id: data.results[i].id
            });

在您的应用程序中,数据库将通过某种方式进行更新,此处,数据库是静态的,并且使用PHP rand人工创建移动(用于演示),因此标记每隔几秒就出现在不同的位置。

header("Content-type: application/json");
echo '{ "results" : [ ';

$gettruck_result = $dbh->query("SELECT * FROM `truck`");
$result_array = array();

foreach($gettruck_result as $row) {
  $newlat = $row['lat'] + (0.0025 * rand(-3,3));
  $newlng = $row['lng'] + (0.0025 * rand(-3,3));

  $speed = $row['speed'] + rand(1,8);

  $row_object = '{';
  $row_object .= '"id": "' . $row['id'] . '", ';
  $row_object .= '"speed": "' . $speed . '", ';
  $row_object .= '"name": "' . $row['name'] . '", ';
  $row_object .= '"lat": "' . $newlat . '", ';
  $row_object .= '"lng": "' . $newlng . '"';
  $row_object .= '}';    
  $result_array[] = $row_object;
}

$result_str = implode(", ", $result_array);
echo $result_str;
echo " ] }";

使用两个侦听器跟踪标记:

        google.maps.event.addListener(trucks[data.results[i].id], 'position_changed', function() {
          if(typeof tracked !== "undefined") {
            if(this.id == tracked.id) {
              map.panTo(this.getPosition());
              $("#speed").val(this.speed);
            } 
          } 
        });         

        google.maps.event.addListener(trucks[data.results[i].id], 'click', function() {
          $("#trackedId").val(this.id);
          map.setZoom(13);
          map.setCenter(this.getPosition());
          tracked = this;
        });

答案 1 :(得分:0)

此文件Geocoder.htm包含实现您要执行的操作所需的所有代码(附带ID和操作的可点击图标列表等)。

只需取消注释第449-460行,您就可以看到它是如何工作的。

欢迎您使用源代码并按照您认为合适的方式使用它,它是开源的。