javascript - 使用 JavaScript 覆盖 Google map API 中标记弹出窗口上的默认文本?

标签 javascript google-maps google-maps-api-3 google-maps-markers marker

我正在使用以下代码在网页上使用其 API 来购买 Google map 上某些标记之间的路线图。您可以在FIDDLE查看也是。

<style type="text/css">
html,body,#dvMap {
    height:100%;
    width:100%;
}
</style>
<div id="info"></div>
<div id="dvMap"></div>
<script type="text/javascript" src="https://maps.googleapis.com/maps/api/js?sensor=false&libraries=geometry,places&ext=.js"></script>
<script type="text/javascript">
var directionsDisplay = [];
var directionsService = [];
var map = null;

function calcRoute() {

    var msg = "25.001807, 67.123459:25.007006, 67.076991:24.957115, 67.076278:24.945176, 67.084069:24.940619, 67.080735:24.936648, 67.076211:24.927262, 67.064335:24.918269, 67.053686:24.909177, 67.049781:24.900226, 67.044931:24.892076, 67.043592:24.880923, 67.039432:24.872733, 67.035963:24.859631, 67.015729:24.854257, 67.006481:24.848813, 66.996748:24.825830, 66.979450:24.818366, 66.975126";
    var input_msg = msg.split(":");
    var locations = new Array();

    var bounds = new google.maps.LatLngBounds();
    for (var i = 0; i < input_msg.length; i++) {
        var tmp_lat_lng = input_msg[i].split(",");
        locations.push(new google.maps.LatLng(tmp_lat_lng[0], tmp_lat_lng[1]));
        bounds.extend(locations[locations.length-1]);
    }

    var mapOptions = {
        // center: locations[0],
        zoom: 12,
        mapTypeId: google.maps.MapTypeId.ROADMAP
    };
    map = new google.maps.Map(document.getElementById('dvMap'), mapOptions);
    map.fitBounds(bounds);

    var i = locations.length;
    var index = 0;

    while (i != 0) {

        if (i < 3) {
            var tmp_locations = new Array();
            for (var j = index; j < locations.length; j++) {
                tmp_locations.push(locations[index]);
            }
            drawRouteMap(tmp_locations);
            i = 0;
            index = locations.length;
        }

        if (i >= 3 && i <= 10) {
            console.log("before :fun < 10: i value " + i + " index value" + index);
            var tmp_locations = new Array();
            for (var j = index; j < locations.length; j++) {
                tmp_locations.push(locations[j]);
            }
            drawRouteMap(tmp_locations);
            i = 0;
            index = locations.length;
            console.log("after fun < 10: i value " + i + " index value" + index);
        }

        if (i >= 10) {
            console.log("before :fun > 10: i value " + i + " index value" + index);
            var tmp_locations = new Array();
            for (var j = index; j < index + 10; j++) {
                tmp_locations.push(locations[j]);
            }
            drawRouteMap(tmp_locations);
            i = i - 9;
            index = index + 9;
            console.log("after fun > 10: i value " + i + " index value" + index);
        }
    }
}


function drawRouteMap(locations) {

    var start, end;
    var waypts = [];

    for (var k = 0; k < locations.length; k++) {
        if (k >= 1 && k <= locations.length - 2) {
            waypts.push({
                location: locations[k],
                stopover: true
            });
        }
        if (k == 0) start = locations[k];

        if (k == locations.length - 1) end = locations[k];

    }
    var request = {
        origin: start,
        destination: end,
        waypoints: waypts,
        optimizeWaypoints: true,
        travelMode: google.maps.TravelMode.DRIVING
    };
    console.log(request);

    directionsService.push(new google.maps.DirectionsService());
    var instance = directionsService.length - 1;
    directionsDisplay.push(new google.maps.DirectionsRenderer({
        preserveViewport: true
    }));
    directionsDisplay[instance].setMap(map);
    directionsService[instance].route(request, function (response, status) {
        if (status == google.maps.DirectionsStatus.OK) {
            console.log(status);
            directionsDisplay[instance].setDirections(response);
        }
    });
}

google.maps.event.addDomListener(window, 'load', calcRoute);
</script>

现在我的问题是,我想在每个标记标签上显示我自己想要的文本,其中当前 Google 显示默认地址,如下图所示。

Default Label On Marker

我尝试了很多方法并用谷歌搜索,但无法在我的代码中添加此功能。那么可以在那里写我自己的文本吗......???

按照经纬度显示的演示文本:

var locations = [
    ['Ahsanabad Chowrangi', 25.001807, 67.123459, 1],
    ['Allah Wali Chowrangi', 25.007006, 67.076991, 2],
    ['Shafique Mor', 24.957115, 67.076278, 3],
    ['Sohrab Goth Flyover', 24.945176, 67.084069, 4],
    ['Ancholi', 24.940619, 67.080735, 5],
    ['Water Pump Chowrangi', 24.936648, 67.076211, 6],
    ['Ayesha Manzil Chowrangi', 24.927262, 67.064335, 7],
    ['Karimabad Chowrangi', 24.918269, 67.053686, 8],
    ['Liaquatabad 10 Number Chowrangi', 24.909177, 67.049781, 9],
    ['Lalo Kheet Daak Khana Chowrangi', 24.900226, 67.044931, 10],
    ['Teen Hatti Bridge', 24.892076, 67.043592, 11],
    ['Gurumandar', 24.880923, 67.039432, 12],
    ['Numaish Chowrangi', 24.872733, 67.035963, 13],
    ['Jama Cloth Market', 24.859631, 67.015729, 14],
    ['City Court', 24.854257, 67.006481, 15],
    ['Tower', 24.848813, 66.996748, 16],
    ['Nagina Center', 24.825830, 66.979450, 17],
    ['Kemari No. 1', 24.818366, 66.975126, 18]
  ];

最佳答案

要更改为每个标记显示的文本,请在调用路线渲染器之前修改路线响应中该路段的 start_address 属性。要获取最后一个点,还要将 end_address 属性设置为下一段的结束标记的值。

  for (var leg = 0; leg < response.routes[0].legs.length; leg++) {
    response.routes[0].legs[leg].start_address = markerText[instance * 9 + leg][0] + "<br>instance=" + instance;
  }

(上面的代码假设有一个数组markerText,其中包含您希望为每个标记显示的文本)。

proof of concept fiddle using your array of locations

enter image description here

代码片段:

var directionsDisplay = [];
var directionsService = [];
var markerText = [
  ['Ahsanabad Chowrangi', 25.001807, 67.123459, 1],
  ['Allah Wali Chowrangi', 25.007006, 67.076991, 2],
  ['Shafique Mor', 24.957115, 67.076278, 3],
  ['Sohrab Goth Flyover', 24.945176, 67.084069, 4],
  ['Ancholi', 24.940619, 67.080735, 5],
  ['Water Pump Chowrangi', 24.936648, 67.076211, 6],
  ['Ayesha Manzil Chowrangi', 24.927262, 67.064335, 7],
  ['Karimabad Chowrangi', 24.918269, 67.053686, 8],
  ['Liaquatabad 10 Number Chowrangi', 24.909177, 67.049781, 9],
  ['Lalo Kheet Daak Khana Chowrangi', 24.900226, 67.044931, 10],
  ['Teen Hatti Bridge', 24.892076, 67.043592, 11],
  ['Gurumandar', 24.880923, 67.039432, 12],
  ['Numaish Chowrangi', 24.872733, 67.035963, 13],
  ['Jama Cloth Market', 24.859631, 67.015729, 14],
  ['City Court', 24.854257, 67.006481, 15],
  ['Tower', 24.848813, 66.996748, 16],
  ['Nagina Center', 24.825830, 66.979450, 17],
  ['Kemari No. 1', 24.818366, 66.975126, 18]
];
var map = null;

function calcRoute() {
  var msg = "25.001807, 67.123459:25.007006, 67.076991:24.957115, 67.076278:24.945176, 67.084069:24.940619, 67.080735:24.936648, 67.076211:24.927262, 67.064335:24.918269, 67.053686:24.909177, 67.049781:24.900226, 67.044931:24.892076, 67.043592:24.880923, 67.039432:24.872733, 67.035963:24.859631, 67.015729:24.854257, 67.006481:24.848813, 66.996748:24.825830, 66.979450:24.818366, 66.975126";
  var input_msg = msg.split(":");
  var locations = new Array();

  var bounds = new google.maps.LatLngBounds();
  for (var i = 0; i < input_msg.length; i++) {
    var tmp_lat_lng = input_msg[i].split(",");
    locations.push(new google.maps.LatLng(tmp_lat_lng[0], tmp_lat_lng[1]));
    bounds.extend(locations[locations.length - 1]);
  }

  var mapOptions = {
    // center: locations[0],
    zoom: 12,
    mapTypeId: google.maps.MapTypeId.ROADMAP
  };
  map = new google.maps.Map(document.getElementById('dvMap'), mapOptions);
  map.fitBounds(bounds);

  var i = locations.length;
  var index = 0;

  while (i != 0) {

    if (i < 3) {
      var tmp_locations = new Array();
      for (var j = index; j < locations.length; j++) {
        tmp_locations.push(locations[index]);
      }
      drawRouteMap(tmp_locations);
      i = 0;
      index = locations.length;
    }

    if (i >= 3 && i <= 10) {
      console.log("before :fun < 10: i value " + i + " index value" + index);
      var tmp_locations = new Array();
      for (var j = index; j < locations.length; j++) {
        tmp_locations.push(locations[j]);
      }
      drawRouteMap(tmp_locations);
      i = 0;
      index = locations.length;
      console.log("after fun < 10: i value " + i + " index value" + index);
    }

    if (i >= 10) {
      console.log("before :fun > 10: i value " + i + " index value" + index);
      var tmp_locations = new Array();
      for (var j = index; j < index + 10; j++) {
        tmp_locations.push(locations[j]);
      }
      drawRouteMap(tmp_locations);
      i = i - 9;
      index = index + 9;
      console.log("after fun > 10: i value " + i + " index value" + index);
    }
  }
}


function drawRouteMap(locations) {

  var start, end;
  var waypts = [];

  for (var k = 0; k < locations.length; k++) {
    if (k >= 1 && k <= locations.length - 2) {
      waypts.push({
        location: locations[k],
        stopover: true
      });
    }
    if (k == 0) start = locations[k];

    if (k == locations.length - 1) end = locations[k];

  }
  var request = {
    origin: start,
    destination: end,
    waypoints: waypts,
    optimizeWaypoints: true,
    travelMode: google.maps.TravelMode.DRIVING
  };
  console.log(request);

  directionsService.push(new google.maps.DirectionsService());
  var instance = directionsService.length - 1;
  directionsDisplay.push(new google.maps.DirectionsRenderer({
    preserveViewport: true
  }));
  directionsDisplay[instance].setMap(map);
  directionsService[instance].route(request, function(response, status) {
    if (status == google.maps.DirectionsStatus.OK) {
      console.log(status);
      for (var leg = 0; leg < response.routes[0].legs.length; leg++) {
        response.routes[0].legs[leg].start_address = markerText[instance * 9 + leg][0] + "<br>instance=" + instance;
        response.routes[0].legs[leg].end_address = markerText[instance * 9 + leg + 1][0] + "<br>instance=" + instance;
      }
      directionsDisplay[instance].setDirections(response);
    }
  });
}

google.maps.event.addDomListener(window, 'load', calcRoute);
html,
body,
#dvMap {
  height: 100%;
  width: 100%;
  margin: 0px;
  padding: 0px;
}
<script src="https://maps.googleapis.com/maps/api/js"></script>
<div id="info"></div>
<div id="dvMap"></div>

使用相同输入列表进行所有处理的代码片段:

var directionsDisplay = [];
var directionsService = [];
var locations = [
  ['Ahsanabad Chowrangi', 25.001807, 67.123459, 1],
  ['Allah Wali Chowrangi', 25.007006, 67.076991, 2],
  ['Shafique Mor', 24.957115, 67.076278, 3],
  ['Sohrab Goth Flyover', 24.945176, 67.084069, 4],
  ['Ancholi', 24.940619, 67.080735, 5],
  ['Water Pump Chowrangi', 24.936648, 67.076211, 6],
  ['Ayesha Manzil Chowrangi', 24.927262, 67.064335, 7],
  ['Karimabad Chowrangi', 24.918269, 67.053686, 8],
  ['Liaquatabad 10 Number Chowrangi', 24.909177, 67.049781, 9],
  ['Lalo Kheet Daak Khana Chowrangi', 24.900226, 67.044931, 10],
  ['Teen Hatti Bridge', 24.892076, 67.043592, 11],
  ['Gurumandar', 24.880923, 67.039432, 12],
  ['Numaish Chowrangi', 24.872733, 67.035963, 13],
  ['Jama Cloth Market', 24.859631, 67.015729, 14],
  ['City Court', 24.854257, 67.006481, 15],
  ['Tower', 24.848813, 66.996748, 16],
  ['Nagina Center', 24.825830, 66.979450, 17],
  ['Kemari No. 1', 24.818366, 66.975126, 18]
];
var map = null;

function calcRoute() {
  var bounds = new google.maps.LatLngBounds();
  for (var i = 0; i < locations.length; i++) {
    var pt = new google.maps.LatLng(locations[i][1], locations[i][2]);
    bounds.extend(pt);
  }

  var mapOptions = {
    // center: locations[0],
    zoom: 12,
    mapTypeId: google.maps.MapTypeId.ROADMAP
  };
  map = new google.maps.Map(document.getElementById('dvMap'), mapOptions);
  map.fitBounds(bounds);

  var i = locations.length;
  var index = 0;

  while (i != 0) {

    if (i < 3) {
      var tmp_locations = new Array();
      for (var j = index; j < locations.length; j++) {
        tmp_locations.push(new google.maps.LatLng(locations[j][1], locations[j][2]));
      }
      drawRouteMap(tmp_locations);
      i = 0;
      index = locations.length;
    }

    if (i >= 3 && i <= 10) {
      console.log("before :fun < 10: i value " + i + " index value " + index);
      var tmp_locations = new Array();
      for (var j = index; j < locations.length; j++) {
        tmp_locations.push(new google.maps.LatLng(locations[j][1], locations[j][2]));
      }
      drawRouteMap(tmp_locations);
      i = 0;
      index = locations.length;
      console.log("after fun < 10: i value " + i + " index value " + index);
    }

    if (i >= 10) {
      console.log("before :fun > 10: i value " + i + " index value " + index);
      var tmp_locations = new Array();
      for (var j = index; j < index + 10; j++) {
        tmp_locations.push(new google.maps.LatLng(locations[j][1], locations[j][2]));
      }
      drawRouteMap(tmp_locations);
      i = i - 9;
      index = index + 9;
      console.log("after fun > 10: i value " + i + " index value " + index);
    }
  }
}


function drawRouteMap(routelocations) {

  var start, end;
  var waypts = [];

  for (var k = 0; k < routelocations.length; k++) {
    if (k >= 1 && k <= routelocations.length - 2) {
      waypts.push({
        location: routelocations[k],
        stopover: true
      });
    }
    if (k == 0) start = routelocations[k];

    if (k == routelocations.length - 1) end = routelocations[k];

  }
  var request = {
    origin: start,
    destination: end,
    waypoints: waypts,
    optimizeWaypoints: true,
    travelMode: google.maps.TravelMode.DRIVING
  };
  console.log(request);

  directionsService.push(new google.maps.DirectionsService());
  var instance = directionsService.length - 1;
  directionsDisplay.push(new google.maps.DirectionsRenderer({
    preserveViewport: true
  }));
  directionsDisplay[instance].setMap(map);
  directionsService[instance].route(request, function(response, status) {
    if (status == google.maps.DirectionsStatus.OK) {
      console.log(status);
      for (var leg = 0; leg < response.routes[0].legs.length; leg++) {
        response.routes[0].legs[leg].start_address = locations[instance * 9 + leg][0] + "<br>instance=" + instance;
        response.routes[0].legs[leg].end_address = locations[instance * 9 + leg + 1][0] + "<br>instance=" + instance;
      }
      directionsDisplay[instance].setDirections(response);
    }
  });
}

google.maps.event.addDomListener(window, 'load', calcRoute);
html,
body,
#dvMap {
  height: 100%;
  width: 100%;
  margin: 0px;
  padding: 0px;
}
<script src="https://maps.googleapis.com/maps/api/js"></script>
<div id="info"></div>
<div id="dvMap"></div>

( fiddle )

关于javascript - 使用 JavaScript 覆盖 Google map API 中标记弹出窗口上的默认文本?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52023481/

相关文章:

javascript - 谷歌地图地理编码 : unknow property premise

javascript - 如何将我的谷歌地图脚本与 div 居中?

javascript - https.request 在 NodeJS 回调下不起作用

javascript - 为什么我的 webpack bundle.js 和 vendor.bundle.js 这么大?

javascript - 对象数组 - 如何按属性对项目进行分组并将每个分组项目的数据压缩为 1

javascript - 当半径变化时,谷歌地图附近的地点搜索不显示一些结果

ios - 我如何使用谷歌地图构建跟踪其他 gps 用户功能?

javascript - 使用 Salesforce apex 代码的纪元时间

javascript - 如何在博客 (blogspot.com) 帖子中包含 GoogleMap?

javascript - 使用谷歌地图 api 3 的 MapTypeId.TERRAIN 的单独按钮