10

それらがv2からv3までのいくつかの問題であることを私は知っています、それを修正するためにここで何ができますか?
GIconはv3でサポートされていませんか?

// Google-Map icon object
var gMapIcon = new GIcon(G_DEFAULT_ICON); //change to new google.maps.MarkerImage();???
// does icon exist
if ( mapElements[lMapElementIndex]['icon'].toString().length > 0) {
    gMapIcon.image = html_entity_decode(mapElements[lMapElementIndex]['icon']);
    gMapIcon.shadow = "";
    iconHeight = mapElements[lMapElementIndex]['iconheight'];
    iconWidth = mapElements[lMapElementIndex]['iconwidth'];
    gMapIcon.iconSize = new GSize(iconWidth,iconHeight);
    gMapIcon.iconAnchor = new GPoint(0,0);
    gMapIcon.infoWindowAnchor = new GPoint(15,10);
}
    var markerOptions = { 
        icon: gMapIcon //change to image? 
     };
    var marker = new google.maps.Marker(point,markerOptions);

ここから見つかりましたhttps://developers.google.com/maps/documentation/javascript/overlays?hl=de-DE#SimpleIcons

ヘルプやヒントをありがとう!

4

1 に答える 1

15

GIconバージョン 3 ではサポートされておらず、リンク先のドキュメントにも表示されません。

  var image = 'beachflag.png';
  var myLatLng = new google.maps.LatLng(-33.890542, 151.274856);
  var beachMarker = new google.maps.Marker({
      position: myLatLng,
      map: map,
      icon: image
  });

使用するイメージを直接指定できます。バージョン 2 のようなヘルパー オブジェクトは必要ありGIconません。ただし、非標準サイズなどが必要な場合は、https://developers.google.com/maps/documentation/javascript/overlays?hl=de- DE#ComplexIconsMarkerImageのドキュメントで説明されているように、オブジェクトを使用する必要があります。

(バージョン 2には、バージョン 3GIconのオプションとして同等のものがあります)MarkerImage

于 2012-06-04T22:03:53.050 に答える