谷歌地图api v3,infowindow可编辑〜

时间:2011-02-14 13:29:45

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

我想制作一个谷歌地图infowindow。 某些事件被触发时,infowindow应该是可编辑的。

关于google map infowindow editable有一个问题和答案,

How do I make the info window editable in the Google Maps API?

但是,这是关于版本2.

任何想法如何信息化可编辑?

refrence〜 这是我的addMarket函数

 this.addMarker = function(location) {
        var iconImg = 'signpost.png';
        var marker = new google.maps.Marker({
          position: location, 
          map: this.mMap,
          icon: iconImg,
        });

        var infowindow = new google.maps.InfoWindow(
        { 
            maxWidth: '50px',
            content: "some text"
        });
        google.maps.event.addListener(marker, 'click', function() {
            infowindow.open(this.mMap, marker);
        });
        infowindow.open(this.mMap, marker);
        this.mMarkerArray.push(marker);
    }

1 个答案:

答案 0 :(得分:3)

好吧,您可以将任何HTML传递到InfoWindow的{​​{1}}媒体资源中。因此,您提到的Google地图v2的solution也适用于此处:

content