2
私はこのようなmkmapkitでポリラインを示していたアプリケーションを持っていた -mkmapkitのポリライン上に矢印を追加しますか?
self.routeLine = [MKPolyline polylineWithCoordinates:coordinateArray count:4];
//[self.mapView setVisibleMapRect:[self.routeLine boundingMapRect]]; //If you want the route to be visible
[self.mapView addOverlay:self.routeLine];
-(MKPolylineRenderer *)mapView:(MKMapView *)mapView viewForOverlay:(id<MKOverlay>)overlay
{
if(overlay == self.routeLine)
{
if(nil == self.routeLineView)
{
self.routeLineView = [[MKPolylineRenderer alloc] initWithPolyline:self.routeLine];
self.routeLineView.fillColor = [UIColor redColor];
self.routeLineView.strokeColor = [UIColor redColor];
self.routeLineView.lineWidth = 2;
}
return self.routeLineView;
}
return nil;
}
今私はポリラインはこの
のような方向を示すようにすることを矢印の上に追加しますHow to draw an arrow on every polyline segment on Google Maps V3
。私は同じ運運ではないが、これまでには運がなかった。誰かがこれを達成する方法を教えてくれますか?私は実際に私は、この例ではそうであるように、MKOverlayPathRendererを自分で矢印の描画を示唆している
は、Googleマップのポリラインのアイコンのようなことが可能ですか? – hacker
あなたは何を達成したいのか分かりませんが、MKOverlayPathRendererのポイントはCGPathを描画することだけです。あなたがそれを描くことができれば、それを地図上に表示することができます。 – matt
私はこのようにしたいと思うhttp://stackoverflow.com/questions/31305497/how-to-draw-an-arrow-on-every-polyline-segment-on-google-maps-v3 – hacker