在Googlemap Store Locator插件中自定义面板

时间:2012-10-08 03:12:00

标签: google-maps google-maps-api-3 google-maps-styled

在另一个主题上,我正在寻找Google开发人员商店定位器插件中面板的一些自定义帮助

How to customize the sidepanel of Store Locator plugin from google developer

我需要进一步定制,例如: 1.我想为要订购的商店列表制作无序列表。 2.想在列表中添加更多信息和详细信息。 3.想要从搜索位置获取每个商店的距离。

你能否建议我如何前进?

1 个答案:

答案 0 :(得分:0)

我想我已经得到了它: 在我正在使用的DS上:

store.getInfoPanelItem = function()
    {

      if (!store) {
        return ;
      }
      var details = store.getDetails();

      var html = ['<li class="store"><div class="store"><div class="title">', details.title,
      '</div><div class="address">', details.address, '</div>',
      '<div class="email">', details.email, '</div></div></li>'].join('');

      return $(html)[0];
    }

但现在当我点击地图点时,列表项目没有被选中!!