angular アプリケーションで ng-map を使用しています。私の地図では道順を使用していますが、A 点と B 点は必要ありません。これらのマーカーを非表示にするのを手伝ってください。私は1つの解決策を得 ましたが、ng-mapでは役に立ちません。これが私がそれをどのように適用したかです。
<ng-map zoom="14"
center="1135 Karamea-Kohaihai Rd, Kahurangi National Park, Tasman"
style="height:90%" >
<directions
draggable="true"
panel="p2"
travel-mode="DRIVING"
origin="1135 Karamea-Kohaihai Rd, Kahurangi National Park, Tasman"
destination="Pier St, Jackson Bay, West Coast, New Zeland" suppressMarkers='true'>
</directions>
<custom-marker id="start"
position="1135 Karamea-Kohaihai Rd, Kahurangi National Park, Tasman">
<div> Start point </div>
</custom-marker>
<custom-marker id="end"
position="Pier St, Jackson Bay, West Coast, New Zeland">
<div> Ends point </div>
</custom-marker>
</ng-map>
または多分私はそれを正しく使用していません。このプランカーをチェックしてください。ヘルプ