2017-08-01 76 views
0

我一直在寻找类似的东西,但找不到任何帮助。我已经搜索了Google Maps API for Javscript的任何帮助,但我无法解决。旋转自定义标记谷歌地图API

我正在寻找简单地旋转标记+5度每次点击,但似乎无法弄清楚。我期待通过更改fillColor来做同样的事情,但是我确定我可以弄清楚,如果轮换不是太不同的话。

JAVASCRIPT:

function addMarkerUpstream() { 

     var upstreamIcon = { 
      path: 'M28.6,17.5L16.1,4.9l0,0 c-0.1-0.1-0.2-0.2-0.3-0.2c0,0-0.1,0-0.1-0.1c-0.1,0-0.1-0.1-0.2-0.1c-0.1,0-0.1,0-0.2-0.1c0,0-0.1,0-0.1,0c-0.1,0-0.2,0-0.3,0 c0,0,0,0,0,0l0,0c-0.1,0-0.2,0-0.3,0c-0.1,0-0.1,0-0.1,0c-0.1,0-0.1,0-0.2,0.1c-0.1,0-0.1,0.1-0.2,0.1c0,0-0.1,0-0.1,0.1 c-0.1,0.1-0.2,0.1-0.3,0.2c0,0,0,0,0,0l0,0c0,0,0,0,0,0L1,17.5l0,0c-0.7,0.7-0.7,1.8,0,2.5s1.8,0.7,2.5,0l9.6-9.6 c0,6.7,0,34.2,0,34.2c0,1,0.8,1.7,1.7,1.7s1.7-0.8,1.7-1.7V10.4l9.6,9.6c0.7,0.7,1.8,0.7,2.5,0S29.3,18.2,28.6,17.5z', 
      fillColor: '#fbb040', 
      fillOpacity: 1, 
      scale: 1.5, 
      strokeColor: '#000', 
      strokeWeight: 0.5, 
      origin: new google.maps.Point(0, 0), 
      anchor: new google.maps.Point(15, 50), 
      rotation: 0, 
     } 

     var marker = new google.maps.Marker({ 
      position: map.center, 
      map: map, 
      title: 'Upstream', 
      draggable: true, 
      icon: upstreamIcon 
     }); 

     latLang = marker.getPosition(); 

     marker.setMap(map); 

     //ROTATION 
     $("#rotate").click(function() { 
      upstreamIcon.setProperty({rotation:+5}); 
     }); 

     //FILL COLOR 
     $("#fill_red").click(function() { 
      upstreamIcon = { fillColor: 'red'} 
     }); 

    }; 

编辑:

HERE是在我的项目的所有代码的jsfiddle。

回答

1

试试这个:

$("#rotate").click(function() { 
    var icon = marker.getIcon(); 
    var rotation = icon.rotation; 

    rotation += 5; 

    icon.rotation = rotation; 

    marker.setIcon(icon); 
}); 
+0

我有一个问题。我有多个我想单独旋转的“上游”图标。我将如何去做一组作为活动图标,并只调整该活动图标? – Jesse

0

尝试这样,

function addMarkerUpstream() { 
     var rotate = 0; 
     var upstreamIcon = { 
      path: 'M28.6,17.5L16.1,4.9l0,0 c-0.1-0.1-0.2-0.2-0.3-0.2c0,0-0.1,0-0.1-0.1c-0.1,0-0.1-0.1-0.2-0.1c-0.1,0-0.1,0-0.2-0.1c0,0-0.1,0-0.1,0c-0.1,0-0.2,0-0.3,0 c0,0,0,0,0,0l0,0c-0.1,0-0.2,0-0.3,0c-0.1,0-0.1,0-0.1,0c-0.1,0-0.1,0-0.2,0.1c-0.1,0-0.1,0.1-0.2,0.1c0,0-0.1,0-0.1,0.1 c-0.1,0.1-0.2,0.1-0.3,0.2c0,0,0,0,0,0l0,0c0,0,0,0,0,0L1,17.5l0,0c-0.7,0.7-0.7,1.8,0,2.5s1.8,0.7,2.5,0l9.6-9.6 c0,6.7,0,34.2,0,34.2c0,1,0.8,1.7,1.7,1.7s1.7-0.8,1.7-1.7V10.4l9.6,9.6c0.7,0.7,1.8,0.7,2.5,0S29.3,18.2,28.6,17.5z', 
      fillColor: '#fbb040', 
      fillOpacity: 1, 
      scale: 1.5, 
      strokeColor: '#000', 
      strokeWeight: 0.5, 
      origin: new google.maps.Point(0, 0), 
      anchor: new google.maps.Point(15, 50), 
      rotation: rotate, 
     } 

     var marker = new google.maps.Marker({ 
      position: map.center, 
      map: map, 
      title: 'Upstream', 
      draggable: true, 
      icon: upstreamIcon 
     }); 

     latLang = marker.getPosition(); 

     marker.setMap(map); 

     //ROTATION 
     $("#rotate").click(function() { 
     rotate = rotate + 5; 
     upstreamIcon.{ rotation: rotate }; // Try like this 
     }); 

     //FILL COLOR 
     $("#fill_red").click(function() { 
      upstreamIcon = { fillColor: 'red'} 
     }); 
+0

它未似乎工作 – Jesse

+0

我的控制台说“的setProperty”不是一个函数:/ – Jesse

+0

你可以做的拨弄你的代码 –