到目前为止,我一直在关注地图上的official documentation on how to add markers
尽管如此,我最多只能看到一个标记。如果我尝试添加另一个,那么它不起作用(我甚至看不到第一个)。 我的流程如下:
我初始化gmaps api:
jQuery(window).ready(function(){
//If we click on Find me Lakes
jQuery("#btnInit").click(initiate_geolocation);
});
function initiate_geolocation() {
if (navigator.geolocation)
{
var script = document.createElement("script");
script.type = "text/javascript";
script.src = "https://maps.googleapis.com/maps/api/js?key=AIzaSyBbfJJVh0jL1X9b7XFDcPuV7nHD1HlfsKs&sensor=true&callback=initialize";
document.body.appendChild(script);
navigator.geolocation.getCurrentPosition(handle_geolocation_query, handle_errors);
}
else
{
yqlgeo.get('visitor', normalize_yql_response);
}
}
然后,我在适当的div上显示它。但是当谈到进行AJAX调用时,为了获得我想要显示的不同标记的位置,它只是无法正常工作。这是显示简单地图的代码(因为到目前为止,这是唯一对我有用的东西)。
function handle_geolocation_query(position){
var mapOptions = {
zoom: 14,
center: new google.maps.LatLng(position.coords.latitude, position.coords.longitude),
mapTypeId: google.maps.MapTypeId.SATELLITE
}
alert('Lat: ' + position.coords.latitude + ' ' +
'Lon: ' + position.coords.longitude);
$('#map-canvas').slideToggle('slow', function(){
var map = new google.maps.Map(document.getElementById("map-canvas"), mapOptions);
});
$.when( getLakes(position.coords.latitude, position.coords.longitude)).done(function(results) {
// InitializeGoogleMaps(results);
if(results)
var data = results.map(function (lake) {
//Check if the lake has any open swims, if not, the button will not be clickable and an alert will pop up
if (lake.available>0)
clickable=true;
else
clickable=false;
return {
name: lake.name,
fishs: lake.fisheryType,
swims: lake.swims,
dist: lake.distance,
lat: lake.latitude,
long: lake.longitude,
id: lake.id,
avail: lake.available,
clickable: clickable,
route: Routing.generate('lake_display', { id: lake.id, lat: position.coords.latitude, lng: position.coords.longitude})
}
});
var template = Handlebars.compile( $('#template').html() );
$('#list').append( template(data) );
} );
};
所以我想在AJAX调用之后添加标记。我已经设置了一个我应该在when()
中调用的函数function InitializeGoogleMaps(results) {
};
在foreach循环中显示标记但是nope,无法使其工作。它看起来像这样:
CentralPark = new google.maps.LatLng(37.7699298, -122.4469157);
marker = new google.maps.Marker({
position: location,
map: map
});
任何帮助都会很棒!
谢谢
答案 0 :(得分:2)
主要问题是map
变量仅在slideToggle的匿名回调范围内声明。首先在顶级函数范围声明。
function handle_geolocation_query(position){
var map,
mapOptions = {
zoom: 14,
center: new google.maps.LatLng(position.coords.latitude, position.coords.longitude),
mapTypeId: google.maps.MapTypeId.SATELLITE
}
...
然后更改slideToggle回调以初始化变量而不是重新声明:
$('#map-canvas').slideToggle('slow', function(){
map = new google.maps.Map(document.getElementById("map-canvas"), mapOptions);
});
然后,您应将map
作为第二个参数传递到InitializeGoogleMaps
函数,并使用InitializeGoogleMaps(results, map)
进行调用。看看这会给你带来什么,并回答任何问题。