Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
275 views
in Technique[技术] by (71.8m points)

How Would I Add A Second Google Map Marker Using This Script?

This is the code below. I can't figure out how to add a second marker, I've been toying with it for awhile but I'm terrible with javascript and I really can't figure it out!

    $(document).ready(function() {
initializeGoogleMap();

});

// Call this function when the page has been loaded
function initializeGoogleMap() {
var myLatlng = new google.maps.LatLng(45.93986,-85.65181);
var myOptions = {
    zoom: 12,
    center: myLatlng,
    mapTypeId: google.maps.MapTypeId.ROADMAP
};

var map = new google.maps.Map(document.getElementById("google-map-location"), myOptions);

var marker = new google.maps.Marker({
    position: myLatlng,
    map: map
});

}    
See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
var myLatlng2 = new google.maps.LatLng(45.9,-85.6);

var marker2 = new google.maps.Marker({
    position: myLatlng2,
    map: map
});

or

var marker2 = new google.maps.Marker({
    position: new google.maps.LatLng(45.9,-85.6),
    map: map
});

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...