gpt4 book ai didi

google-maps-api-3 - 谷歌地图 api v3 : add point on polyline between two existing points on click polyline event

转载 作者:行者123 更新时间:2023-12-04 07:51:02 25 4
gpt4 key购买 nike

如何在单击折线事件的两个现有点之间的折线上添加点?
谢谢!

最佳答案

如果您只是在谈论 Polyline只有 2 个点,您可以使用 LatLngBounds 的中心包含 Polyline . Google maps api v3 未实现 Polyline.getBounds()功能,虽然。所以你可以扩展Polyline包含 getBounds 的类功能:

google.maps.Polyline.prototype.getBounds = function() {
var bounds = new google.maps.LatLngBounds();
this.getPath().forEach(function(e) {
bounds.extend(e);
});
return bounds;
};
Polyline.getBounds()在只有 2 个点的线上将包含包含该线的区域。这个边界的中心应该是你的线的确切中心。如果 Polyline包括超过 2 个点,中心不会落在单击的线的中心,而是落在包括所有点的边界的中心。如果您想在此函数中使用多段折线,则需要更多的数学计算来计算单击了哪个段。

这是一个使用 2 点 Polyline 的小示例:
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8"/>
<title>Right in Two</title>

<style type="text/css">
#map-canvas {
height: 500px;
}
</style>

<script type="text/javascript"
src="http://www.google.com/jsapi?autoload={'modules':[{name:'maps',version:3,other_params:'sensor=false'}]}"></script>
<script type="text/javascript">

function init() {
var mapDiv = document.getElementById('map-canvas');
var map = new google.maps.Map(mapDiv, {
center: new google.maps.LatLng(37.790234970864, -122.39031314844),
zoom: 5,
mapTypeId: google.maps.MapTypeId.ROADMAP
});

var points = [
new google.maps.LatLng(40.785533,-124.16748),
new google.maps.LatLng(32.700413,-115.469971)
];

var line = new google.maps.Polyline({
map: map,
path: points,
strokeColor: "#FF0000",
strokeWeight: 2,
strokeOpacity: 1.0
});

google.maps.Polyline.prototype.getBounds = function() {
var bounds = new google.maps.LatLngBounds();
this.getPath().forEach(function(e) {
bounds.extend(e);
});
return bounds;
};

google.maps.event.addListener(line, 'click', function(e){
var marker = new google.maps.Marker({
map: map,
position: line.getBounds().getCenter()
});
});

};

google.maps.event.addDomListener(window, 'load', init);
</script>
</head>
<body>
<div id="map-canvas"></div>
</body>
</html>

关于google-maps-api-3 - 谷歌地图 api v3 : add point on polyline between two existing points on click polyline event,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3529902/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com