Gmap 3-如何使用Ajax Json Request for Markers +有点击事件?

时间:2013-11-08 20:10:31

标签: jquery json google-maps jquery-gmap3

我想知道如何才能解决这个问题

   $(function(){

        $('#test1').gmap3({
          map:{
            options:{
              center:[46.578498,2.457275],
              zoom: 5
            }
          },
          marker:{
            values:[
              {latLng:[48.8620722, 2.352047], data:"Paris !"},
              {address:"86000 Poitiers, France", data:"Poitiers : great city !"},
              {address:"66000 Perpignan, France", data:"Perpignan ! <br> GO USAP !", options:{icon: "http://maps.google.com/mapfiles/marker_green.png"}}
            ],
            options:{
              draggable: false
            },
            events:{
              mouseover: function(marker, event, context){
                var map = $(this).gmap3("get"),
                  infowindow = $(this).gmap3({get:{name:"infowindow"}});
                if (infowindow){
                  infowindow.open(map, marker);
                  infowindow.setContent(context.data);
                } else {
                  $(this).gmap3({
                    infowindow:{
                      anchor:marker, 
                      options:{content: context.data}
                    }
                  });
                }
              },
              mouseout: function(){
                var infowindow = $(this).gmap3({get:{name:"infowindow"}});
                if (infowindow){
                  infowindow.close();
                }
              }
            }
          }
        });
      });

通过ajax加载标记的东西?我还需要事件保持为数据(更多的是“伟大的城市”),我需要拉大,需要需求

我在服务器端猜测我需要像

这样的东西
 public class Marker
    {
        public string Title { get; set; }
        public double Lat { get; set; }
        public double Lng { get; set; }
    }

1 个答案:

答案 0 :(得分:1)

一个天真但但(我认为)完全可用的解决方案是将地图初始化逻辑抽象为一个函数,我们称之为initMap,它将array个标记作为参数:

function initMap(markers) {
    $('#test1').gmap3({
      map:{
        options:{
          center:[46.578498,2.457275],
          zoom: 5
        }
      },
      marker:{
        values: markers || [], // Pass it an empty array if no markers are specified
        options:{
          draggable: false
        }

     ..............
}

现在,您可以在文档就绪(使用默认标记数据或无)上以及AJAX调用的成功处理程序中初始化地图:

$('button').on('click', function() {
    $.ajax({
        url: 'marker.json'
    }).done(function(data) {
        // Re-initialise the map with loaded marker data
        initMap(data);
    });
});

您希望服务器吐出JSON。类似下面的静态示例(您可以愉快地使用它来测试,直到您进行后端设置):

[
    { 
        "latLng":[48.8620722, 2.352047], 
        "data":"Paris !" },
    { 
        "address":"86000 Poitiers, France", 
        "data":"Poitiers : great city !" 
    },
    { 
        "address":"66000 Perpignan, France", 
        "data":"Perpignan ! <br> GO USAP !", 
        "options": {
            "icon": "http://maps.google.com/mapfiles/marker_green.png"
        }
    }
]

你可以考虑更原子地更新标记,因为我确信插件可以在初始化之后添加/删除标记,但是我所概述的解决方案可能对你的目的来说已经足够了。