スポンサードリンク

ルート検索結果のルートポリライン(Polylines)を地図から削除して消す方法/ルート検索API(Direction API)

◆Google Maps API V3  ルートポリライン(Polylines)を地図から削除して消す方法

前回、ルート検索(Direction API)で表示される緑色のマーカー(アイコン)を削除しましたが、今度はルート検索結果のルートポリライン(Polylines)を地図から削除してみます。

使い道があるのかはさておき、リファレンスのgoogle.maps.DirectionsRendererのOptions objectを参照方。


下記サンプルを見て下さい。

ルート検索結果のルートポリラインが表示されなくなりました。

◆Script

var rendererOptions =
{
draggable: true,
preserveViewport:false
};
var directionsDisplay = new google.maps.DirectionsRenderer(rendererOptions);
directionsDisplay.setOptions(
{
suppressPolylines: true
});
var directionsService = new google.maps.DirectionsService();

◆Google Maps JavaScript API V3 サンプル

◆参照先

◆Google Maps JavaScript API V3

スポンサードリンク

Related Posts

Leave a Comment


NOTE - You can use these HTML tags and attributes:
<a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <s> <strike> <strong> <img localsrc="" alt="">