从html图像元素显示Google地图标记的图标

时间:2013-06-05 10:58:57

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

我想从html图片元素中显示google标记的图像,而不是从URL。

我该怎么做?

以下代码未在Google地图上显示任何图片。  带有outssment URL的代码确实会在Google地图上显示图片。

var image = document.createElement('img');
            image.src = "data:image/png;base64," + base64Data;
            image.height = "40px";
            image.width = "40px";

            var icon = image; // Instead of  "../Content/images/Root.jpeg";
            var markerOptions = {
                position: bound,
                map: map,
                icon: icon 
            };

            var marker = new google.maps.Marker(markerOptions);

0 个答案:

没有答案