3

我正在使用谷歌地图 API V3 并在折线上创建了一些图标动画。

我的代码

var line;

function initialize() {
    var mapOptions = {
        center: new google.maps.LatLng(2.881766, 101.626877),
        zoom: 12,
        mapTypeId: google.maps.MapTypeId.ROADMAP
    };

    var map = new google.maps.Map(document.getElementById('map-canvas'),
        mapOptions);

    var lineCoordinates = [
        new google.maps.LatLng(2.86085, 101.6437),
        new google.maps.LatLng(2.87165, 101.6362),
        new google.maps.LatLng(2.880783, 101.6273),

        new google.maps.LatLng(2.891517, 101.6201),
        new google.maps.LatLng(2.8991, 101.6162), new google.maps.LatLng(2.915067, 101.6079)
    ];
    map.setCenter(lineCoordinates[0]);

    var lineSymbol = {
        path: google.maps.SymbolPath.CIRCLE,
        scale: 6,
        strokeColor: '#393'
    };

    line = new google.maps.Polyline({
        path: lineCoordinates,
        strokeColor: '#FF0000',
        strokeOpacity: 1.0,
        strokeWeight: 2,
        icons: [{
            icon: lineSymbol,
            offset: '100%'
        }],

        map: map
    });

    for (var i = 0; i < line.getPath().getLength(); i++) {
        var marker = new google.maps.Marker({
            icon: {
                url: "https://maps.gstatic.com/intl/en_us/mapfiles/markers2/measle_blue.png",
                size: new google.maps.Size(7, 7),
                anchor: new google.maps.Point(4, 4)
            },
            position: line.getPath().getAt(i),
            title: line.getPath().getAt(i).toUrlValue(6),
            map: map
        });
    }

    animateCircle();
}


var id;

function animateCircle() {
    var count = 0;
    id = window.setInterval(function () {
        count = (count + 1) % 200;
        var icons = line.get('icons');
        icons[0].offset = (count / 2) + '%';
        line.set('icons', icons);
        if (line.get('icons')[0].offset == "99.5%") {
            icons[0].offset = '100%';
            line.set('icons', icons);
            window.clearInterval(id);
        }

    }, 20);
}

google.maps.event.addDomListener(window, 'load', initialize);

小提琴链接在这里

我在折线上有 6 个点。一旦动画标记到达该点,我想在每个点创建一个标记。

任何人都可以在这种情况下帮助我。

谢谢你。

4

2 回答 2

3

这是使用google.maps.geometry.spherical namespace方法的一种可能的解决方案computeDistanceBetween(from:LatLng, to:LatLng, radius?:number)。你必须包括geometry图书馆:

<script src="https://maps.googleapis.com/maps/api/js?v=3.exp&sensor=false&libraries=geometry"></script>

computeDistanceBetween()用于计算点之间的距离并将它们转换为整个距离的百分比:

// point distances from beginning in %
var sphericalLib = google.maps.geometry.spherical;

pointDistances = [];
var pointZero = lineCoordinates[0];
var wholeDist = sphericalLib.computeDistanceBetween(
                    pointZero,
                    lineCoordinates[lineCoordinates.length - 1]);

for (var i = 0; i < lineCoordinates.length; i++) {
    pointDistances[i] = 100 * sphericalLib.computeDistanceBetween(
                                    lineCoordinates[i], pointZero) / wholeDist;
    console.log('pointDistances[' + i + ']: ' + pointDistances[i]);
}

更改功能animateCircle()以便在偏移量大于特定点的偏移量时创建标记:

var id;
function animateCircle() {
    var count = 0;
    var offset;
    var sentiel = -1;

    id = window.setInterval(function () {
        count = (count + 1) % 200;
        offset = count /2;

        for (var i = pointDistances.length - 1; i > sentiel; i--) {
            if (offset > pointDistances[i]) {
                console.log('create marker');
                var marker = new google.maps.Marker({
                    icon: {
                        url:"https://maps.gstatic.com/intl/en_us/mapfiles/markers2/measle_blue.png",
                        size: new google.maps.Size(7,7),
                        anchor: new google.maps.Point(4,4)
                    },
                    position: line.getPath().getAt(i),
                    title: line.getPath().getAt(i).toUrlValue(6),
                    map: map
                });

                sentiel++;
                break;
            }
        }
...

请参阅jsbin 中的示例

注意:这个例子几乎使用了直线。如果你有不同的例子,那么最好计算点到点的距离并得到所有它们的总和。因此,偏移量计算应该略有不同:参见jsbin 中的示例。

于 2014-02-14T10:43:55.583 回答
0

我发现@Anto Jurković 的回答非常有用,但他的解决方案的唯一问题是它只适用于相当直线(正如他自己在回答末尾所说的那样)。我想分享我的改进,使其适用于任何类型的生产线。

var lineSymbol = {
    path: google.maps.SymbolPath.CIRCLE,
    scale: 8,
    strokeColor: '#393'
};

// point distances from beginning in %
var sphericalLib = google.maps.geometry.spherical;

pointDistances = [];
var wholeDist = 0; 
// calculating the wholeDistance from point to point
for (var i = 0; i < lineCoordinates.length-1; i++) {
    wholeDist +=  sphericalLib.computeDistanceBetween(
        lineCoordinates[i+1], lineCoordinates[i]);
}

var currentDist = 0;

// <optional> to create a marker in the start point position
pointDistances[0] = 0;
// </optional>

for (var i = 0; i < lineCoordinates.length-1; i++) {
    // calculating the currentDistance from point to point
    currentDist +=  sphericalLib.computeDistanceBetween(
              lineCoordinates[i+1], lineCoordinates[i])

    // calculating the pointDistance as a percentage to compare it later with the offset
    pointDistances[i+1] = 100 * currentDist / wholeDist;
    console.log('pointDistances[' + i + ']: ' + pointDistances[i]);
}  

var myPolyline = new google.maps.Polyline({
    path: lineCoordinates,
    icons: [{
        icon: lineSymbol,
        offset: '100%'
    }],
    map: map,
    visible: true
});

var count = 0;
var offset;
var sentiel = -1;
var id;

id = window.setInterval(function() {
    count = (count + 1) % 200;
    offset = count /2;

    for (var i = pointDistances.length - 1; i > sentiel; i--) {
        if (offset > pointDistances[i]) {
            console.log('create marker');
            var marker = new google.maps.Marker({
                position: myPolyline.getPath().getAt(i),
                title: myPolyline.getPath().getAt(i).toUrlValue(6),
                map: map
            });

            sentiel++;
            break;
        }
    }

    // <optional> to create a marker in the last point position
    // Note: 99.5 is the last calculated offset, when the counter is 199
    if(offset == 99.5){
        var lastLinePoint = myPolyline.getPath().length - 1;
            var marker = new google.maps.Marker({
                position: myPolyline.getPath().getAt(lastLinePoint),
                title: myPolyline.getPath().getAt(lastLinePoint).toUrlValue(6),
                map: map
            });
        // to reset the sentinel if you want to repeat the iteration at its end 
        sentiel = -1;
    }
    // </optional>

    var icons = myPolyline.get('icons');
    icons[0].offset = (count / 2) + '%';
    myPolyline.set('icons', icons);
}, 150);

在 jsbin编辑的示例

于 2020-03-06T21:04:32.167 回答