2

最近、fusiontablelayer を使用して地図上にルートを表示する例を見つけました。通常のポリラインに次のような影を付けるにはどうすればよいでしょうか: http://gmaps-samples-v3.googlecode.com/svn/trunk/fusiontables/ cycletrails.htmlそれらは本当に、本当に素晴らしく見えますが、私のポリラインでそれを行うための解決策を見つけることができません。(影のないポリラインの例: https://google-developers.appspot.com/maps/documentation/javascript/examples/polyline-simple )

事前にt​​hnx!

4

2 に答える 2

5

次のようなことができます。

http://www.geocodezip.com/v3_GoogleEx_polyline-simple_shadow.html

(あなたの下に太い透明なポリラインを入れてください。私が見ているように見えます)

ネイティブの Google Maps API v3 ポリラインではなく、KmlLayer または FusionTablesLayer を使用して、同じ方法で同じ効果を得ることができます。

コード:

function initialize() {
  var myLatLng = new google.maps.LatLng(0, -180);
  var mapOptions = {
    zoom: 3,
    center: myLatLng,
    mapTypeId: google.maps.MapTypeId.TERRAIN
  };

  var map = new google.maps.Map(document.getElementById('map_canvas'), mapOptions);

  var flightPlanCoordinates = [
      new google.maps.LatLng(37.772323, -122.214897),
      new google.maps.LatLng(21.291982, -157.821856),
      new google.maps.LatLng(-18.142599, 178.431),
      new google.maps.LatLng(-27.46758, 153.027892)
  ];
  var flightPathShadow = new google.maps.Polyline({
    path: flightPlanCoordinates,
    strokeColor: 'black',
    strokeOpacity: 0.1,
    strokeWeight: 10
  });

  flightPathShadow.setMap(map);

  var flightPath = new google.maps.Polyline({
    path: flightPlanCoordinates,
    strokeColor: '#FF0000',
    strokeOpacity: 1.0,
    strokeWeight: 2
  });

  flightPath.setMap(map);
}
于 2012-09-27T19:36:11.187 に答える